annotate graphmap_owler.xml @ 1:815251b32ccc draft default tip

planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit ba787e88cb93e78516b2fced5b60285d5f033ca3
author bgruening
date Fri, 15 Mar 2024 13:12:39 +0000
parents d0a712cf0518
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
d0a712cf0518 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
1 <tool id="graphmap_overlap" name="Owler" version="@VERSION@">
d0a712cf0518 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
2 <description>fast, trimmed overlap pipeline without aligning</description>
d0a712cf0518 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
3 <macros>
d0a712cf0518 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
4 <import>macros.xml</import>
d0a712cf0518 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
5 </macros>
1
815251b32ccc planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit ba787e88cb93e78516b2fced5b60285d5f033ca3
bgruening
parents: 0
diff changeset
6 <expand macro="xrefs" />
0
d0a712cf0518 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
7 <expand macro="requirements" />
d0a712cf0518 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
8 <command detect_errors="exit_code">
d0a712cf0518 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
9 <![CDATA[
d0a712cf0518 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
10 ln -s '$r' ref.${r.ext} &&
d0a712cf0518 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
11 ln -s '$d' reads.${d.ext} &&
d0a712cf0518 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
12
d0a712cf0518 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
13 graphmap owler
d0a712cf0518 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
14 -r ref.${r.ext}
d0a712cf0518 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
15 -d reads.${d.ext}
d0a712cf0518 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
16 -o output.mhap
d0a712cf0518 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
17 #if $preset:
d0a712cf0518 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
18 -x $preset
d0a712cf0518 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
19 #end if
d0a712cf0518 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
20 -t \${GALAXY_SLOTS:-4}
d0a712cf0518 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
21 ]]></command>
d0a712cf0518 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
22 <inputs>
d0a712cf0518 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
23 <param argument="-r" type="data" format="fasta,fastq" label="reference sequence" />
d0a712cf0518 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
24 <param argument="-d" type="data" format="fasta,fastq" label="reads" />
d0a712cf0518 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
25 <param name="preset" type="select" optional="True" label="Pre-set parameters (-x)">
d0a712cf0518 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
26 <option value="no-filters">Disable filters</option>
d0a712cf0518 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
27 </param>
d0a712cf0518 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
28 <!--
d0a712cf0518 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
29 <param type="data" name="reference" format="fasta,fastq" label="Sequences"/>
d0a712cf0518 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
30 <param type="data" name="reads" format="fasta,fastq" label="Sequences"/>
d0a712cf0518 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
31 <param type="data" name="overlaps" format="sam,tabular" label="Overlaps"/>
d0a712cf0518 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
32 <param type="data" name="corrected_reads" format="fasta,fasta.gz,fastq,fastq.gz" label="Target sequences"/> -->
d0a712cf0518 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
33
d0a712cf0518 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
34 </inputs>
d0a712cf0518 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
35 <outputs>
d0a712cf0518 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
36 <data name="output" format="txt" from_work_dir="output.mhap" />
d0a712cf0518 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
37 </outputs>
d0a712cf0518 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
38 <tests>
d0a712cf0518 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
39 <test>
d0a712cf0518 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
40 <param name="r" value="Loman_E.coli_MAP006-1_2D_50x_first_500_reads.fasta"/>
d0a712cf0518 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
41 <param name="d" value="E.coli_contigs.fasta"/>
d0a712cf0518 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
42 <output name="output" ftype="txt" file="result1_owler.mhap"/>
d0a712cf0518 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
43 </test>
d0a712cf0518 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
44 <test>
d0a712cf0518 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
45 <param name="r" value="Loman_E.coli_MAP006-1_2D_50x_first_500_reads.fasta"/>
d0a712cf0518 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
46 <param name="d" value="E.coli_contigs.fasta"/>
d0a712cf0518 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
47 <param name="preset" value="no-filters"/>
d0a712cf0518 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
48 <output name="output" ftype="txt" file="result2_owler.mhap"/>
d0a712cf0518 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
49 </test></tests>
d0a712cf0518 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
50 <help><![CDATA[
d0a712cf0518 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
51 GraphMap - A very accurate and sensitive long-read, high error-rate sequence mapper
d0a712cf0518 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
52 GraphMap (c) by Ivan Sovic, Mile Sikic and Niranjan Nagarajan
d0a712cf0518 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
53 GraphMap is licensed under The MIT License.
d0a712cf0518 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
54 ]]></help>
d0a712cf0518 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit a1461f1e83079de821b269125c49eca2460e7693
bgruening
parents:
diff changeset
55 <expand macro="citations" />
1
815251b32ccc planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/graphmap commit ba787e88cb93e78516b2fced5b60285d5f033ca3
bgruening
parents: 0
diff changeset
56 </tool>