Skip to content

Commit

Permalink
Hide feature not implemented
Browse files Browse the repository at this point in the history
  • Loading branch information
fplazaonate committed Apr 2, 2024
1 parent cb68fe7 commit 3af856c
Showing 1 changed file with 27 additions and 25 deletions.
52 changes: 27 additions & 25 deletions meteor/meteor.py
Original file line number Diff line number Diff line change
Expand Up @@ -460,36 +460,36 @@ def get_arguments() -> Namespace: # pragma: no cover
help="Remove samples with no detected species (MSPs) "
"(default: %(default)s).",
)
merging_parser.add_argument(
"-m",
dest="output_mpa",
action="store_true",
help="Save the merged species abundance table in the style of MetaPhlan "
"(default: %(default)s).",
)
#merging_parser.add_argument(
# "-m",
# dest="output_mpa",
# action="store_true",
# help="Save the merged species abundance table in the style of MetaPhlan "
# "(default: %(default)s).",
#)
merging_parser.add_argument(
"-b",
dest="output_biom",
action="store_true",
help="Save the merged species abundance table in biom format "
"(default: %(default)s).",
)
merging_parser.add_argument(
"--tax_lev",
dest="taxonomic_level",
default=Merging.DEFAULT_MPA_TAXONOMIC_LEVEL,
choices=Merging.MPA_TAXONOMIC_LEVELS,
help="""The taxonomic level for mpa output (default: %(default)s):
'a' : all taxonomic levels
'k' : kingdoms
'p' : phyla only
'c' : classes only
'o' : orders only
'f' : families only
'g' : genera only
's' : species only
't' : MSPs only""",
)
#merging_parser.add_argument(
# "--tax_lev",
# dest="taxonomic_level",
# default=Merging.DEFAULT_MPA_TAXONOMIC_LEVEL,
# choices=Merging.MPA_TAXONOMIC_LEVELS,
# help="""The taxonomic level for mpa output (default: %(default)s):
# 'a' : all taxonomic levels
# 'k' : kingdoms
# 'p' : phyla only
# 'c' : classes only
# 'o' : orders only
# 'f' : families only
# 'g' : genera only
# 's' : species only
# 't' : MSPs only""",
#)
merging_parser.add_argument(
"-o",
dest="merging_dir",
Expand Down Expand Up @@ -782,8 +782,10 @@ def main() -> None: # pragma: no cover
args.min_msp_abundance,
args.min_msp_occurrence,
args.remove_sample_with_no_msp,
args.output_mpa,
args.taxonomic_level,
None,
None,
#args.output_mpa,
#args.taxonomic_level,
args.output_biom,
args.output_gene_matrix,
)
Expand Down

0 comments on commit 3af856c

Please sign in to comment.