def test_import_collection_tsv(self): # Load test data seed_data_util.create_tables(self.cursor) seed_data_util.import_seed_functional_roles_table( self.cursor, seed_roles_file) self.cursor.execute( 'SELECT uid FROM seed_functional_roles WHERE seed_role_id IS ?', ('9724', )) kegg_data_util.create_kegg_orthologs_table(self.cursor) kegg_data_util.import_kegg_orthologs_list( self.cursor, os.path.join(test_kegg_dir, 'kegg_ko_list.txt')) self.cursor.execute('SELECT COUNT(*) FROM kegg_orthologs') self.assertEqual(self.cursor.fetchone()[0], 1) # Prepare database db_utils.create_collections_table(self.cursor) db_utils.create_collection2function_table(self.cursor) # Import data data_analysis.import_collection_tsv(self.cursor, collection_file, 'nitrogen_test', 'test info', '0') # Check results self.cursor.execute('SELECT COUNT(*) FROM collections') self.assertEqual(self.cursor.fetchone()[0], 1) self.cursor.execute('SELECT COUNT(*) FROM collection2function') self.assertEqual(self.cursor.fetchone()[0], 4) self.cursor.execute( 'SELECT name FROM collection2function WHERE function_uid=?', (2, )) name = self.cursor.fetchone()[0] self.assertIsNotNone(name) self.assertEqual(name, 'Test_name2')
def test_create_collection2function_table(self): db_utils.create_collection2function_table(self.cursor) self.cursor.execute( 'select count(*) from sqlite_master where type = ? and name = ?', ('table', 'collection2function')) self.assertEqual(self.cursor.fetchone()[0], 1) self.cursor.execute('SELECT COUNT(*) FROM collection2function') self.assertEqual(self.cursor.fetchone()[0], 0)
def main(): args = get_args() # Open database conn = db_utils.connect_local_database(args.seed_db) c = conn.cursor() db_utils.attach_local_database(c, args.kegg_db, 'kegg_data') db_utils.create_collections_table(c) db_utils.create_collection2function_table(c) data_analysis.import_collection_tsv(c, args.infile, args.name, args.info, args.ver) conn.commit() conn.close() print('done.')
def setUp(self): self.conn = db_utils.connect_local_database(db_file) self.cursor = self.conn.cursor() uniref_data_util.create_uniref_proteins_table(self.cursor) uniref_data_util.import_uniref_fasta(self.cursor, uniref_fasta_file) uniref_data_util.create_uniref_proteins_indices(self.cursor) seed_data_util.create_tables(self.cursor) seed_data_util.import_seed_functional_roles_table( self.cursor, seed_roles_file) seed_data_util.import_seed_genomes(self.cursor, seed_genome_file) seed_data_util.import_seed_genes(self.cursor, seed_gene_dir) seed_data_util.import_seed_gene2roles_mapping(self.cursor, seed_gene2roles_dir, 'test') seed_data_util.create_seed2uniref_mappings_table(self.cursor) seed_data_util.load_diamond_search_results(self.cursor, seed_diamond_output, 95.0, 5) kegg_data_util.create_kegg_orthologs_table(self.cursor) kegg_data_util.import_kegg_orthologs_list( self.cursor, os.path.join(test_kegg_dir, 'kegg_ko_list.txt')) kegg_data_util.create_kegg_genomes_table(self.cursor) kegg_data_util.import_kegg_genomes_list( self.cursor, os.path.join(test_kegg_dir, 'kegg_genomes.txt')) kegg_data_util.create_kegg_genes_table(self.cursor) kegg_data_util.import_kegg_genes( self.cursor, os.path.join(test_kegg_dir, 'ko_proteins_nr.fasta')) kegg_data_util.create_kegg_genes2ko_table(self.cursor) kegg_data_util.import_genes2ko_mappings(self.cursor, test_kegg_dir) kegg_data_util.create_kegg2uniref_mappings_table(self.cursor) kegg_data_util.load_diamond_search_results(self.cursor, kegg_diamond_output, 95.0, 5) seed_data_util.create_seed2kegg_mappings_table(self.cursor) data_analysis.fill_seed2kegg_mappings_table(self.cursor, seed2kegg_diamond_output, 95.0, 5) db_utils.create_collections_table(self.cursor) db_utils.create_collection2function_table(self.cursor) data_analysis.import_collection_tsv(self.cursor, collection_file, 'nitrogen_test', 'test info', '0')