Skip to content

Commit

Permalink
Update src/cool_seq_tool/handlers/seqrepo_access.py
Browse files Browse the repository at this point in the history
Co-authored-by: Kori Kuzma <korikuzma@gmail.com>
  • Loading branch information
jsstevenson and korikuzma authored Jul 3, 2024
1 parent bb48746 commit 98c89c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cool_seq_tool/handlers/seqrepo_access.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ def chromosome_to_acs(self, chromosome: str) -> tuple[list[str] | None, str | No
:return: Accessions for chromosome (ordered by latest assembly)
"""
acs = []
for assembly in ["GRCh38", "GRCh37"]:
for assembly in Assembly.__members__:
tmp_acs, _ = self.translate_identifier(
f"{assembly}:{process_chromosome_input(chromosome)}",
target_namespaces="refseq",
Expand Down

0 comments on commit 98c89c9

Please sign in to comment.