Skip to content

Commit

Permalink
seq_intake.py initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
kbessonov1984 committed Apr 23, 2024
1 parent 37151cf commit 08113c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_seq_intake.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def test_read_fasta_file():
assert seq_intake_object.status == True
assert seq_intake_object.translation_table == 11
assert seq_intake_object.valid_types == ['genbank', 'gff', 'gtf', 'fasta']
assert len(seq_intake_object.seq_data) == 4653
assert len(seq_intake_object.seq_data) == 4655
assert sum([contig['aa_len'] for contig in seq_intake_object.seq_data]) == 2996811
assert all([True if 'NC_003198.1' in contig['parent_id'] else False for contig in seq_intake_object.seq_data]) == True
assert all([True if 'NC_003198.1' in contig['locus_name'] else False for contig in seq_intake_object.seq_data]) == True
Expand Down

0 comments on commit 08113c9

Please sign in to comment.