diff qiime2-2020.8/qiime_taxa_filter-seqs.xml @ 20:d93d8888f0b0 draft

Uploaded
author florianbegusch
date Fri, 04 Sep 2020 12:44:24 +0000
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/qiime2-2020.8/qiime_taxa_filter-seqs.xml	Fri Sep 04 12:44:24 2020 +0000
@@ -0,0 +1,107 @@
+<?xml version="1.0" ?>
+<tool id="qiime_taxa_filter-seqs" name="qiime taxa filter-seqs"
+      version="2020.8">
+  <description>Taxonomy-based feature sequence filter.</description>
+  <requirements>
+    <requirement type="package" version="2020.8">qiime2</requirement>
+  </requirements>
+  <command><![CDATA[
+qiime taxa filter-seqs
+
+--i-sequences=$isequences
+
+--i-taxonomy=$itaxonomy
+
+#if str($pinclude):
+  --p-include=$pinclude
+#end if
+#if str($pexclude):
+  --p-exclude=$pexclude
+#end if
+#if str($pquerydelimiter):
+  --p-query-delimiter=$pquerydelimiter
+#end if
+#if str($pmode) != 'None':
+--p-mode=$pmode
+#end if
+
+--o-filtered-sequences=ofilteredsequences
+
+#if str($examples) != 'None':
+--examples=$examples
+#end if
+
+;
+cp ofilteredsequences.qza $ofilteredsequences
+
+  ]]></command>
+  <inputs>
+    <param format="qza,no_unzip.zip" label="--i-sequences: ARTIFACT FeatureData[Sequence] Feature sequences to be filtered.         [required]" name="isequences" optional="False" type="data" />
+    <param format="qza,no_unzip.zip" label="--i-taxonomy: ARTIFACT FeatureData[Taxonomy] Taxonomic annotations for features in the provided feature sequences. All features in the feature sequences must have a corresponding taxonomic annotation. Taxonomic annotations for features that are not present in the feature sequences will be ignored.                                  [required]" name="itaxonomy" optional="False" type="data" />
+    <param label="--p-include: TEXT        One or more search terms that indicate which taxa should be included in the resulting sequences. If providing more than one term, terms should be delimited by the query-delimiter character. By default, all taxa will be included.       [optional]" name="pinclude" optional="False" type="text" />
+    <param label="--p-exclude: TEXT        One or more search terms that indicate which taxa should be excluded from the resulting sequences. If providing more than one term, terms should be delimited by the query-delimiter character. By default, no taxa will be excluded.        [optional]" name="pexclude" optional="False" type="text" />
+    <param label="--p-query-delimiter: TEXT The string used to delimit multiple search terms provided to include or exclude. This parameter should only need to be modified if the default delimiter (a comma) is used in the provided taxonomic annotations.                [default: \',\']" name="pquerydelimiter" optional="False" type="text" value="\',\'" />
+    <param label="--p-mode: " name="pmode" optional="True" type="select">
+      <option selected="True" value="None">Selection is Optional</option>
+      <option value="exact">exact</option>
+      <option value="contains">contains</option>
+    </param>
+    <param label="--examples: Show usage examples and exit." name="examples" optional="False" type="data" />
+    
+  </inputs>
+
+  <outputs>
+    <data format="qza" label="${tool.name} on ${on_string}: filteredsequences.qza" name="ofilteredsequences" />
+    
+  </outputs>
+
+  <help><![CDATA[
+Taxonomy-based feature sequence filter.
+###############################################################
+
+This method filters sequences based on their taxonomic annotations.
+Features can be retained in the result by specifying one or more include
+search terms, and can be filtered out of the result by specifying one or
+more exclude search terms. If both include and exclude are provided, the
+inclusion critera will be applied before the exclusion critera. Either
+include or exclude terms (or both) must be provided.
+
+Parameters
+----------
+sequences : FeatureData[Sequence]
+    Feature sequences to be filtered.
+taxonomy : FeatureData[Taxonomy]
+    Taxonomic annotations for features in the provided feature sequences.
+    All features in the feature sequences must have a corresponding
+    taxonomic annotation. Taxonomic annotations for features that are not
+    present in the feature sequences will be ignored.
+include : Str, optional
+    One or more search terms that indicate which taxa should be included in
+    the resulting sequences. If providing more than one term, terms should
+    be delimited by the query-delimiter character. By default, all taxa
+    will be included.
+exclude : Str, optional
+    One or more search terms that indicate which taxa should be excluded
+    from the resulting sequences. If providing more than one term, terms
+    should be delimited by the query-delimiter character. By default, no
+    taxa will be excluded.
+query_delimiter : Str, optional
+    The string used to delimit multiple search terms provided to include or
+    exclude. This parameter should only need to be modified if the default
+    delimiter (a comma) is used in the provided taxonomic annotations.
+mode : Str % Choices('exact', 'contains'), optional
+    Mode for determining if a search term matches a taxonomic annotation.
+    "contains" requires that the annotation has the term as a substring;
+    "exact" requires that the annotation is a perfect match to a search
+    term.
+
+Returns
+-------
+filtered_sequences : FeatureData[Sequence]
+    The taxonomy-filtered feature sequences.
+  ]]></help>
+  <macros>
+    <import>qiime_citation.xml</import>
+  </macros>
+  <expand macro="qiime_citation"/>
+</tool>
\ No newline at end of file