annotate graphmap_align.xml @ 0:808422916b78 draft default tip

planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
author bgruening
date Thu, 27 Sep 2018 15:25:00 -0400
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
808422916b78 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
1 <tool id="graphmap_align" name="Mapper" version="@VERSION@">
808422916b78 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
2 <description>for long, error-prone reads, like Nanopore ONT and PacBio</description>
808422916b78 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
3 <macros>
808422916b78 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
4 <import>macros.xml</import>
808422916b78 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
5 </macros>
808422916b78 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
6 <expand macro="requirements" />
808422916b78 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
7 <command detect_errors="exit_code">
808422916b78 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
8 <![CDATA[
808422916b78 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
9 ln -s '$r' ref.${r.ext} &&
808422916b78 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
10 ln -s '$d' reads.${d.ext} &&
808422916b78 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
11
808422916b78 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
12 graphmap align
808422916b78 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
13 -r ref.${r.ext}
808422916b78 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
14 -d reads.${d.ext}
808422916b78 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
15 #if $preset:
808422916b78 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
16 -x $preset
808422916b78 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
17 #end if
808422916b78 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
18 -t \${GALAXY_SLOTS:-4} |
808422916b78 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
19 samtools view -b -u | samtools sort -@ "\${GALAXY_SLOTS:-4}" -T tmp -O bam -o output.bam -
808422916b78 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
20 ]]></command>
808422916b78 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
21 <inputs>
808422916b78 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
22 <param argument="-r" type="data" format="fasta,fastq" label="reference sequence" />
808422916b78 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
23 <param argument="-d" type="data" format="fasta,fastq" label="reads" />
808422916b78 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
24 <param name="preset" type="select" optional="True" label="Pre-set parameters to increase sensitivity for different sequencing technologies. (-x)">
808422916b78 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
25 <option value="illumina">illumina preset</option>
808422916b78 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
26 <option value="overlap">overlap preset</option>
808422916b78 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
27 <option value="sensitive">sensitive preset</option>
808422916b78 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
28 </param>
808422916b78 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
29 <!--
808422916b78 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
30 <param type="data" name="reference" format="fasta,fastq" label="Sequences"/>
808422916b78 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
31 <param type="data" name="reads" format="fasta,fastq" label="Sequences"/>
808422916b78 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
32 <param type="data" name="overlaps" format="sam,tabular" label="Overlaps"/>
808422916b78 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
33 <param type="data" name="corrected_reads" format="fasta,fasta.gz,fastq,fastq.gz" label="Target sequences"/> -->
808422916b78 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
34
808422916b78 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
35 </inputs>
808422916b78 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
36 <outputs>
808422916b78 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
37 <data name="output" format="bam" from_work_dir="output.bam" />
808422916b78 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
38 </outputs>
808422916b78 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
39 <tests>
808422916b78 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
40 <test>
808422916b78 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
41 <param name="r" value="Loman_E.coli_MAP006-1_2D_50x_first_500_reads.fasta"/>
808422916b78 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
42 <param name="d" value="E.coli_contigs.fasta"/>
808422916b78 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
43 <output name="output" ftype="bam" file="result1_map.bam"/>
808422916b78 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
44 </test>
808422916b78 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
45 <test>
808422916b78 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
46 <param name="r" value="Loman_E.coli_MAP006-1_2D_50x_first_500_reads.fasta"/>
808422916b78 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
47 <param name="d" value="E.coli_contigs.fasta"/>
808422916b78 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
48 <param name="preset" value="illumina"/>
808422916b78 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
49 <output name="output" ftype="bam" file="result2_map.bam"/>
808422916b78 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
50 </test>
808422916b78 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
51 <test>
808422916b78 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
52 <param name="r" value="Loman_E.coli_MAP006-1_2D_50x_first_500_reads.fasta"/>
808422916b78 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
53 <param name="d" value="E.coli_contigs.fasta"/>
808422916b78 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
54 <param name="preset" value="sensitive"/>
808422916b78 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
55 <output name="output" ftype="bam" file="result3_map.bam"/>
808422916b78 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
56 </test></tests>
808422916b78 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
57 <help><![CDATA[
808422916b78 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
58 GraphMap - A very accurate and sensitive long-read, high error-rate sequence mapper
808422916b78 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
59 GraphMap (c) by Ivan Sovic, Mile Sikic and Niranjan Nagarajan
808422916b78 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
60 GraphMap is licensed under The MIT License.
808422916b78 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
61 ]]></help>
808422916b78 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
62 <expand macro="citations" />
808422916b78 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
63 </tool>