Skip to content

Commit

Permalink
chore: order in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
sgalkina committed Oct 26, 2023
1 parent 98b313c commit 1236af3
Showing 1 changed file with 13 additions and 12 deletions.
25 changes: 13 additions & 12 deletions vamb/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2221,17 +2221,6 @@ def main():
TAXVAMB = "taxvamb"
AVAMB = "avamb"
RECLUSTER = "recluster"
predict_parser = subparsers.add_parser(
TAXOMETER,
help="""
refines taxonomic classification of any metagenome binner.
See the paper "Taxometer: deep learning improves taxonomic classification of contigs using binning features and a hierarchical loss"
(link)
""",
)
add_input_output_arguments(predict_parser)
add_taxonomy_arguments(predict_parser, taxonomy_only=True)
add_predictor_arguments(predict_parser)

vaevae_parserbin_parser = subparsers.add_parser(
BIN,
Expand Down Expand Up @@ -2274,14 +2263,26 @@ def main():
ensemble model of an adversarial autoencoder and a variational autoencoder.
See the paper "Adversarial and variational autoencoders improve metagenomic binning"
(https://www.nature.com/articles/s42003-023-05452-3).
WARNING: recommended use is through a Snakemake pipeline
WARNING: recommended use is through the Snakemake pipeline
""",
)
add_input_output_arguments(vaeaae_parser)
add_vae_arguments(vaeaae_parser)
add_aae_arguments(vaeaae_parser)
add_clustering_arguments(vaeaae_parser)

predict_parser = subparsers.add_parser(
TAXOMETER,
help="""
refines taxonomic annotations of any metagenome classifier.
See the paper "Taxometer: deep learning improves taxonomic classification of contigs using binning features and a hierarchical loss"
(link)
""",
)
add_input_output_arguments(predict_parser)
add_taxonomy_arguments(predict_parser, taxonomy_only=True)
add_predictor_arguments(predict_parser)

recluster_parser = subparsers.add_parser(
RECLUSTER,
help="""
Expand Down

0 comments on commit 1236af3

Please sign in to comment.