From 3cdf5762f8619b1363017810da5066f5a630a70e Mon Sep 17 00:00:00 2001 From: VinzentRisch Date: Wed, 28 Feb 2024 14:33:43 +0100 Subject: [PATCH] changes to plugin setup descriptions --- q2_amr/plugin_setup.py | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/q2_amr/plugin_setup.py b/q2_amr/plugin_setup.py index a71fbad..6afdc10 100644 --- a/q2_amr/plugin_setup.py +++ b/q2_amr/plugin_setup.py @@ -236,12 +236,11 @@ input_descriptions={"annotations": "The annotations to partition."}, parameter_descriptions={ "num_partitions": "The number of partitions to split the annotations" - " into. Defaults to partitioning into individual" - " annotations." + " into. Defaults to partitioning into individual annotations." }, output_descriptions={"partitioned_annotations": "partitioned annotations"}, name="Partition annotations", - description="Partition collections of amr annotations of MAGs into individual " + description="Partition amr annotations of MAGs into a collections of individual " "artifacts or the number of partitions specified.", ) @@ -253,13 +252,12 @@ input_descriptions={"annotations": "The annotations to partition."}, parameter_descriptions={ "num_partitions": "The number of partitions to split the annotations" - " into. Defaults to partitioning into individual" - " annotations." + " into. Defaults to partitioning into individual annotations." }, output_descriptions={"partitioned_annotations": "partitioned annotations"}, name="Partition annotations", - description="Partition collections of amr annotations of reads at allele level into" - " individual artifacts or the number of partitions specified.", + description="Partition amr annotations of reads at allele level into a collections " + "of individual artifacts or the number of partitions specified.", ) plugin.methods.register_function( @@ -270,12 +268,11 @@ input_descriptions={"annotations": "The annotations to partition."}, parameter_descriptions={ "num_partitions": "The number of partitions to split the annotations" - " into. Defaults to partitioning into individual" - " annotations." + " into. Defaults to partitioning into individual annotations." }, output_descriptions={"partitioned_annotations": "partitioned annotations"}, name="Partition annotations", - description="Partition collections of amr annotations of reads at gene level into" + description="Partition amr annotations of reads at gene level into a collection of" " individual artifacts or the number of partitions specified.", )