Mercurial > repos > mvdbeek > bam_readtagger
comparison findcluster.xml @ 20:44bbb5c4553f draft
planemo upload for repository https://github.com/bardin-lab/readtagger/tree/master/galaxy commit e3effe4ab3ded37fb610f53deb4d0082daf7fdac
| author | mvdbeek |
|---|---|
| date | Wed, 05 Apr 2017 17:34:41 -0400 |
| parents | 8d201345f6dc |
| children | 4dd759a1372c |
comparison
equal
deleted
inserted
replaced
| 19:8d201345f6dc | 20:44bbb5c4553f |
|---|---|
| 1 <tool id="findcluster" name="Find clusters of reads" version="0.3.12"> | 1 <tool id="findcluster" name="Find clusters of reads" version="0.3.13"> |
| 2 <description>in bam files</description> | 2 <description>in bam files</description> |
| 3 <requirements> | 3 <requirements> |
| 4 <requirement type="package" version="0.3.12">readtagger</requirement> | 4 <requirement type="package" version="0.3.13">readtagger</requirement> |
| 5 </requirements> | 5 </requirements> |
| 6 <version_command>findcluster --version</version_command> | 6 <version_command>findcluster --version</version_command> |
| 7 <command detect_errors="aggressive"><![CDATA[ | 7 <command detect_errors="aggressive"><![CDATA[ |
| 8 ln -f -s $input input.bam && | |
| 9 ln -f -s $input.metadata.bam_index input.bam.bai && | |
| 8 findcluster | 10 findcluster |
| 9 --input_path '$input' | 11 --input_path input.bam |
| 10 #if $reference_fasta: | 12 #if $reference_fasta: |
| 11 --reference_fasta '$reference_fasta' | 13 --reference_fasta '$reference_fasta' |
| 12 #end if | 14 #end if |
| 13 --output_bam '$output_bam' | 15 --output_bam '$output_bam' |
| 14 --output_gff '$output_gff' | 16 --output_gff '$output_gff' |
| 17 --output_fasta '$output_fasta' | |
| 15 --sample_name '$input.element_identifier' | 18 --sample_name '$input.element_identifier' |
| 16 --threads "\${GALAXY_SLOTS:-2}" | 19 --threads "\${GALAXY_SLOTS:-2}" |
| 17 ]]></command> | 20 ]]></command> |
| 18 <inputs> | 21 <inputs> |
| 19 <param name="input" argument="--input_path" type="data" format="bam"/> | 22 <param name="input" argument="--input_path" type="data" format="bam"/> |
| 20 <param argument="--reference_fasta" label="Reference Fasta" help="Reconstructed contigs at clusters will be blasted against this sequence." type="data" format="fasta" optional="True"/> | 23 <param argument="--reference_fasta" label="Reference Fasta" help="Reconstructed contigs at clusters will be blasted against this sequence." type="data" format="fasta" optional="True"/> |
| 21 </inputs> | 24 </inputs> |
| 22 <outputs> | 25 <outputs> |
| 23 <data name="output_bam" format="bam" label="findcluster BAM on $on_string"/> | 26 <data name="output_bam" format="bam" label="findcluster BAM on $on_string"/> |
| 27 <data name="output_fasta" format="fasta" label="findcluster contigs on $on_string"/> | |
| 24 <data name="output_gff" format="gff3" label="findcluster GFF on $on_string"/> | 28 <data name="output_gff" format="gff3" label="findcluster GFF on $on_string"/> |
| 25 </outputs> | 29 </outputs> |
| 26 <tests> | 30 <tests> |
| 27 <test> | 31 <test> |
| 28 <param name="input" value="extended_and_annotated_roi.bam" ftype="bam"/> | 32 <param name="input" value="extended_and_annotated_roi.bam" ftype="bam"/> |
