Mercurial > repos > dfornika > kraken2
diff kraken2.xml @ 0:a77e88d426d9 draft
planemo upload for repository https://github.com/dfornika/galaxytools/blob/master/tools/kraken2 commit f05f93ee024df8b38efa1c92db9785d52c726f85-dirty
author | dfornika |
---|---|
date | Fri, 01 Mar 2019 12:43:26 -0500 |
parents | |
children | 7932d09da19b |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/kraken2.xml Fri Mar 01 12:43:26 2019 -0500 @@ -0,0 +1,88 @@ +<tool id="kraken2" name="kraken2" version="@TOOL_VERSION@+galaxy0"> + <description></description> + <macros> + <import>macros.xml</import> + </macros> + <requirements> + <requirement type="package" version="@TOOL_VERSION@">kraken2</requirement> + </requirements> + <version_command>kraken2 --version</version_command> + <command detect_errors="exit_code"> + <![CDATA[ + @SET_DATABASE_PATH@ && + + kraken2 + --threads \${GALAXY_SLOTS:-1} + @INPUT_DATABASE@ + + #if $single_paired.single_paired_selector == 'yes' + #if $forward_input.is_of_type( 'fastq' ): + --fastq-input + #else: + --fasta-input + #end if + '${single_paired.forward_input}' '${single_paired.reverse_input}' + ${single_paired.check_names} + #elif $single_paired.single_paired_selector == "collection": + #if $single_paired.input_pair.forward.is_of_type( 'fastq' ): + --fastq-input + #else: + --fasta-input + #end if + '${single_paired.input_pair.forward}' '${single_paired.input_pair.reverse}' + ${single_paired.check_names} + #else: + #if $single_paired.input_sequences.is_of_type('fastq') + --fastq-input + #else: + --fasta-input + #end if + '${single_paired.input_sequences}' + #end if + --db '$database' + > '$output' + ]]> + </command> + <inputs> + <conditional name="single_paired"> + <param name="single_paired_selector" type="select" label="Single or paired reads" help="--paired"> + <option value="collection">Collection</option> + <option value="yes">Paired</option> + <option selected="True" value="no">Single</option> + </param> + <when value="collection"> + <param format="fasta,fastq" name="input_pair" type="data_collection" collection_type="paired" label="Collection of paired reads" help="FASTA or FASTQ datasets" /> + <param name="check_names" argument="--check-names" type="boolean" checked="False" truevalue="--paired --check-names" falsevalue="--paired" label="Verify read names match"/> + </when> + <when value="yes"> + <param format="fasta,fastq" name="forward_input" type="data" label="Forward strand" help="FASTA or FASTQ dataset"/> + <param format="fasta,fastq" name="reverse_input" type="data" label="Reverse strand" help="FASTA or FASTQ dataset"/> + <param name="check_names" type="boolean" checked="False" truevalue="--paired --check-names" falsevalue="--paired" label="Verify read names match" help="--check-names" /> + </when> + <when value="no"> + <param format="fasta,fastq" label="Input sequences" name="input_sequences" type="data" help="FASTA or FASTQ datasets"/> + </when> + </conditional> + <param name="" type="" format="" /> + </inputs> + <outputs> + <data name="output" format="" /> + </outputs> + <tests> + <test> + <param name="single_paired_selector" value="no"/> + <param name="input_sequences" value="kraken_test1.fa" ftype="fasta"/> + <param name="split_reads" value="false"/> + <param name="quick" value="no"/> + <param name="only-classified-output" value="false"/> + <param name="kraken_database" value="new_style_test_entry"/> + <output name="output" file="kraken_test1_output.tab" ftype="tabular"/> + </test> + </tests> + <help> + <![CDATA[ +Kraken is a taxonomic classification system using exact k-mer matches to achieve high accuracy and fast classification speeds. This classifier matches each k-mer within a query sequence to the lowest common ancestor (LCA) of all genomes containing the given k-mer. The k-mer assignments inform the classification algorithm. + ]]> + </help> + <expand macro="citations" /> +</tool>