Skip to content

Commit

Permalink
modify export
Browse files Browse the repository at this point in the history
  • Loading branch information
bruno-ariano committed Oct 31, 2024
1 parent eaaa82f commit 7ce73f6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
5 changes: 2 additions & 3 deletions gwasstudio/cli/export.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@
import cloup
from gwasstudio import logger
from gwasstudio.methods.locus_breaker import locus_breaker
from gwasstudio.methods.extract_snp import extract_snp
from scipy import stats

print("starting export")
help_doc = """
Exports data from a TileDB dataset.
"""
Expand All @@ -13,7 +12,7 @@
@cloup.command("export", no_args_is_help=True, help=help_doc)
@cloup.option_group(
"TileDB mandatory options",
cloup.option("--uri", default="None", help="TileDB-VCF dataset URI"),
cloup.option("--uri", default="None", help="TileDB dataset URI"),
cloup.option("--chromosome", default="None", help="The chromosome used for the analysis"),
cloup.option("--trait_id_file", default="None", help="The chromosome used for the analysis"),
)
Expand Down
1 change: 0 additions & 1 deletion gwasstudio/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@

from gwasstudio.cli.export import export
from gwasstudio.cli.info import info

from gwasstudio.cli.ingest import ingest
from gwasstudio.cli.query import query
from gwasstudio.dask_client import DaskClient as Client
Expand Down

0 comments on commit 7ce73f6

Please sign in to comment.