Skip to content

Commit

Permalink
added support for mtDNA from NCBI
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewkern committed Apr 9, 2021
1 parent 6aa4ddf commit e641617
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion maintenance/ncbi.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def get_genome_data(uid):
if line and line[0] != "#":
tokens = line.strip().split("\t")
if (
tokens[2] == "Chromosome"
(tokens[2] == "Chromosome" or tokens[2] == "Mitochondrion")
and tokens[3] == "all"
and tokens[4] == "total-length"
):
Expand Down

0 comments on commit e641617

Please sign in to comment.