Skip to content

Commit

Permalink
Merge pull request #28 from geneontology/fix_goref
Browse files Browse the repository at this point in the history
updating makefile commands
  • Loading branch information
sierra-moxon authored Feb 13, 2024
2 parents c555506 + 7bc611a commit 7018e9e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ convert_human:
poetry run convert_annotations --namespaces 'HUMAN','UniProtKB' --target_taxon "NCBITaxon:10090" --source_taxon "NCBITaxon:9606" --ortho_reference "GO_REF:0000119"

convert_rat:
poetry run convert_annotations
poetry run convert_annotations --ortho_reference "GO_REF:0000096" --target_taxon "NCBITaxon:10090" --source_taxon "NCBITaxon:10116" --namespaces 'RGD'

compare_human:
poetry run compare -file1 Lori_human.tsv -file2 mgi-human-ortho.gaf -o compare_human
Expand Down
2 changes: 1 addition & 1 deletion src/gopreprocess/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def cli():
help="Source taxon in curie format using NCBITaxon prefix, e.g. NCBITaxon:10116",
)
@click.option(
"--ortho_reference", default="GO_REF:0000096", help="Ortho reference in curie format, e.g. GO_REF:0000096"
"--ortho_reference", help="Ortho reference in curie format, e.g. GO_REF:0000096"
)
def convert_annotations(namespaces, target_taxon, source_taxon, ortho_reference):
"""Converts annotations from one taxon to another using orthology."""
Expand Down

0 comments on commit 7018e9e

Please sign in to comment.