Mercurial > repos > romaingred > pirna_pipeline
diff piPipe.xml @ 0:198009598544 draft
Uploaded
author | romaingred |
---|---|
date | Wed, 11 Oct 2017 09:57:58 -0400 |
parents | |
children | 02c0b9b2cc02 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/piPipe.xml Wed Oct 11 09:57:58 2017 -0400 @@ -0,0 +1,227 @@ +<tool id="piPipe" name="piPipe" version="0.0.1"> + <description>Full studies of sRNA</description> + <command interpreter="perl"> + + ./bin/piPipe.pl + + --fastq ${first_input} + --fastq_n ${first_input.name} + #for $input_file in $input_files: + --fastq ${input_file.additional_input} + --fastq_n ${input_file.additional_input.name} + #end for + + #if $Genome.refGenomeSource == "history": + --ref "${Genome.ownFile}" + --build_index + #else: + --ref "${Genome.indices.fields.path}" + #end if + + #if $tRNAs.refGenomeSource == "history": + --tRNAs "${tRNAs.ownFile}" + --build_tRNAs + #else: + --tRNAs "${tRNAs.indices.fields.path}" + #end if + + #if $snRNAs.refGenomeSource == "history": + --snRNAs "${snRNAs.ownFile}" + --build_snRNAs + #else: + --snRNAs "${snRNAs.indices.fields.path}" + #end if + + #if $miRNAs.refGenomeSource == "history": + --miRNAs "${miRNAs.ownFile}" + --build_miRNAs + #else: + --miRNAs "${miRNAs.indices.fields.path}" + #end if + + #if $exons.refGenomeSource == "history": + --exons "${exons.ownFile}" + --build_exons + #else: + --exons "${exons.indices.fields.path}" + #end if + + #if $TE.refGenomeSource == "history": + --TE "${TE.ownFile}" + --build_TE + #else: + --TE "${TE.indices.fields.path}" + #end if + + #if $rRNAs.refGenomeSource == "history": + --rRNAs "${rRNAs.ownFile}" + --build_rRNAs + #else: + --rRNAs "${rRNAs.indices.fields.path}" + #end if + + --si_min $si_min + --si_max $si_max + --pi_min $pi_min + --pi_max $pi_max + --min $min + --max $max + + --mis $mis + --misTE $misTE + --dir $html_out.files_path + --html $html_out + --PPPon $PPPon + </command> + + <requirements> + <requirement type="package" version="3.4.0">R</requirement> + <requirement type="package" version="0.7.15-r1140">bwa</requirement> + <requirement type="package" version="2.26.0">bedTools</requirement> + <requirement type="package" version="1.5">samtools</requirement> + </requirements> + + <inputs> + <param format="fastqsanger" name="first_input" type="data" label="fastq produced by fasteris" help=""/> + <repeat name="input_files" title="Additional Fastq Files"> + <param format="fastqsanger" name="additional_input" type="data" label="fastq produced by fasteris" help=""/> + </repeat> + <conditional name="Genome"> + <param name="refGenomeSource" type="select" label="Will you select a reference genome from your history or use a built-in index?"> + <option value="indexed">Use a built-in index</option> + <option value="history">Use one from the history</option> + </param> + <when value="indexed"> + <param name="indices" type="select" label="Select a reference genome"> + <options from_data_table="bwa_indexes"> + <filter type="sort_by" column="2" /> + <validator type="no_options" message="No indexes are available" /> + </options> + </param> + </when> + <when value="history"> + <param name="ownFile" type="data" format="fasta" metadata_name="dbkey" label="Select a reference from history" /> + </when> + </conditional> + <conditional name="TE"> + <param name="refGenomeSource" type="select" label="Will you select TE database from your history or use a built-in index?"> + <option value="indexed">Use a built-in index</option> + <option value="history">Use one from the history</option> + </param> + <when value="indexed"> + <param name="indices" type="select" label="Select a TE reference"> + <options from_data_table="bwa_indexes"> + <filter type="sort_by" column="2" /> + <validator type="no_options" message="No indexes are available" /> + </options> + </param> + </when> + <when value="history"> + <param name="ownFile" type="data" format="fasta" metadata_name="dbkey" label="Select a reference from history" /> + </when> + </conditional> + <conditional name="miRNAs"> + <param name="refGenomeSource" type="select" label="Will you select miRNA database from your history or use a built-in index?"> + <option value="indexed">Use a built-in index</option> + <option value="history">Use one from the history</option> + </param> + <when value="indexed"> + <param name="indices" type="select" label="Select a miRNA reference"> + <options from_data_table="bwa_indexes"> + <filter type="sort_by" column="2" /> + <validator type="no_options" message="No indexes are available" /> + </options> + </param> + </when> + <when value="history"> + <param name="ownFile" type="data" format="fasta" metadata_name="dbkey" label="Select a reference from history" /> + </when> + </conditional> + <conditional name="snRNAs"> + <param name="refGenomeSource" type="select" label="Will you select snRNA database from your history or use a built-in index?"> + <option value="indexed">Use a built-in index</option> + <option value="history">Use one from the history</option> + </param> + <when value="indexed"> + <param name="indices" type="select" label="Select a snRNAs reference"> + <options from_data_table="bwa_indexes"> + <filter type="sort_by" column="2" /> + <validator type="no_options" message="No indexes are available" /> + </options> + </param> + </when> + <when value="history"> + <param name="ownFile" type="data" format="fasta" metadata_name="dbkey" label="Select a reference from history" /> + </when> + </conditional> + <conditional name="rRNAs"> + <param name="refGenomeSource" type="select" label="Will you select rRNAs database from your history or use a built-in index?"> + <option value="indexed">Use a built-in index</option> + <option value="history">Use one from the history</option> + </param> + <when value="indexed"> + <param name="indices" type="select" label="Select a rRNAs reference"> + <options from_data_table="bwa_indexes"> + <filter type="sort_by" column="2" /> + <validator type="no_options" message="No indexes are available" /> + </options> + </param> + </when> + <when value="history"> + <param name="ownFile" type="data" format="fasta" metadata_name="dbkey" label="Select a reference from history" /> + </when> + </conditional> + <conditional name="tRNAs"> + <param name="refGenomeSource" type="select" label="Will you select tRNA database from your history or use a built-in index?"> + <option value="indexed">Use a built-in index</option> + <option value="history">Use one from the history</option> + </param> + <when value="indexed"> + <param name="indices" type="select" label="Select a tRNA reference"> + <options from_data_table="bwa_indexes"> + <filter type="sort_by" column="2" /> + <validator type="no_options" message="No indexes are available" /> + </options> + </param> + </when> + <when value="history"> + <param name="ownFile" type="data" format="fasta" metadata_name="dbkey" label="Select a reference from history" /> + </when> + </conditional> + <conditional name="exons"> + <param name="refGenomeSource" type="select" label="Will you select exons database from your history or use a built-in index?"> + <option value="indexed">Use a built-in index</option> + <option value="history">Use one from the history</option> + </param> + <when value="indexed"> + <param name="indices" type="select" label="Select a exons reference"> + <options from_data_table="bwa_indexes"> + <filter type="sort_by" column="2" /> + <validator type="no_options" message="No indexes are available" /> + </options> + </param> + </when> + <when value="history"> + <param name="ownFile" type="data" format="fasta" metadata_name="dbkey" label="Select a reference from history" /> + </when> + </conditional> + <param name="min" type="integer" value="18" label="minimum read size"/> + <param name="max" type="integer" value="29" label="maximum read size"/> + <param name="si_min" type="integer" value="21" label="lower bound of siRNA range"/> + <param name="si_max" type="integer" value="21" label="higher bound of siRNA range"/> + <param name="pi_min" type="integer" value="23" label="lower bound of piRNA range"/> + <param name="pi_max" type="integer" value="29" label="higher bound of piRNA range"/> + + <param name="mis" type="integer" value="0" label="genome mismatches"/> + <param name="misTE" type="integer" value="3" label="TE mismatches"/> + <param name="PPPon" type="boolean" checked="true" label="PPPartners"/> + </inputs> + <outputs> + <data format="html" name="html_out" label="${tool.name}_${first_input.name}_${on_string}"/> + + <collection type="list" label="${tool.name}_fastq_outputs" name="output1"> + <discover_datasets pattern="(?P<name>.*)" directory="fastq_dir" /> + </collection> + + </outputs> +</tool>