annotate takeabreak.xml @ 1:a018b8f663ea draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
author iuc
date Fri, 24 Nov 2017 12:49:52 -0500
parents e1fdaacdabc3
children b0e311ac462c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
1 <?xml version='1.0' encoding='utf-8'?>
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
2 <tool profile="16.0" id="takeabreak" name="TakeABreak" version="1.1.2">
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
3 <description>is a tool that can detect inversion breakpoints directly from raw NGS reads</description>
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
4 <requirements>
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
5 <requirement type="package" version="1.1.2">takeabreak</requirement>
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
6 </requirements>
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
7 <macros>
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
8 <import>macros.xml</import>
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
9 </macros>
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
10 <command><![CDATA[
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
11
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
12 ## if single reads
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
13 #if str( $input_type_option.input_type ) == "simple"
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
14 #for $input in $input_type_option.reads
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
15 #if $input
1
a018b8f663ea planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents: 0
diff changeset
16 #set $filename = os.path.basename(str($input)) + "." + $input.ext
0
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
17 ln -sf '${input}' '${filename}' &&
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
18 echo "${filename}" >> input.fof &&
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
19 #end if
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
20 #end for
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
21 #else
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
22 ## if paired reads in a list
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
23 #for $i, $list in enumerate( $input_type_option.reads_lists )
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
24 #for $read in $list.list_reads
1
a018b8f663ea planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 7e976e65d4630ce8b485efd1d50a168ba98276e6
iuc
parents: 0
diff changeset
25 #set $filename = os.path.basename(str($read)) + "." + $read.ext
0
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
26 ln -sf '${read}' '${filename}' &&
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
27 echo "${filename}" >> "indiv_${i}.fof" &&
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
28 #end for
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
29 echo "indiv_${i}.fof" >> input.fof &&
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
30 #end for
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
31 #end if
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
32
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
33 TakeABreak
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
34
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
35 -in input.fof
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
36 -kmer-size ${kmer_size}
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
37 -abundance-min '${abundance_min}'
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
38 -abundance-max ${abundance_max}
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
39 -solidity-kind ${solidity_kind}
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
40 -lct ${lct}
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
41 -max-sim ${max_sim}
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
42 -repeat ${repeat}
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
43
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
44 ]]></command>
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
45
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
46 <inputs>
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
47 <!-- Input data files -->
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
48 <conditional name="input_type_option">
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
49 <param name="input_type" type="select" label="Input option">
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
50 <option value="simple">one individual = one read </option>
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
51 <option value="list">one individual = several reads</option>
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
52 </param>
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
53 <when value="simple">
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
54 <param name='reads' argument="-in" format="fasta,fastq" type="data" multiple="true" label="Single read files" optional="True" />
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
55 </when>
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
56 <when value="list">
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
57 <repeat name="reads_lists" title="Individual" min="1">
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
58 <param name='list_reads' argument="-in" format="fasta,fastq" type="data_collection" collection_type="list" multiple="true" label="Individual read files list"/>
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
59 </repeat>
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
60 </when>
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
61 </conditional>
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
62 <param name="kmer_size" argument="-kmer-size" type="integer" label="Length of the k-mers" value="31" help="Set the length of used kmers" />
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
63 <param name="abundance_min" argument="-abundance-min" type="text" label="Minimal abundance threshold" value="auto" />
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
64 <param name="abundance_max" argument="-abundance-max" type="integer" label="Maximal abundance threshold" value="2147483647" />
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
65
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
66 <param name="solidity_kind" argument="-solidity-kind" type="select" label="Way to consider a solid kmer with several input datasets" >
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
67 <option value="one">One</option>
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
68 <option value="sum">Sum</option>
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
69 <option value="all">All</option>
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
70 </param>
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
71
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
72 <param argument="-lct" type="integer" label="local complexity threshold" value="100" help="Local complexity threshold" />
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
73 <param name="max_sim" argument="-max-sim" type="integer" label="max similarity percentage" value="80" help="Inversions with a and b' (or u and v') whose longest common subsequence size is bigger than k*(this value)/100 are discarded" />
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
74 <param argument="-repeat" type="integer" label="maximal repeat size" value="8" help="Maximal repeat size at the breakpoint. Longest common suffix between a and b" />
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
75 </inputs>
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
76
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
77 <outputs>
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
78 <data format="fasta" name="inversion" from_work_dir="TakeABreak_*.fasta" label="Inversions with ${tool.name} on ${on_string}"/>
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
79 </outputs>
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
80 <tests>
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
81 <test>
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
82 <conditional name="input_type_option">
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
83 <param name="input_type" value="list" />
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
84 <repeat name="reads_lists">
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
85 <param name="list_reads">
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
86 <collection type="list">
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
87 <element name="example_reads" value="takeabreak/toy_example_reads.fasta" ftype="fasta"/>
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
88 <element name="example_reads_with_inv" value="takeabreak/toy_example_with_inv_reads.fasta" ftype="fasta"/>
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
89 </collection>
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
90 </param>
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
91 </repeat>
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
92 </conditional>
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
93 <output name="inversion" file="takeabreak/inversion_list.fasta"/>
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
94 </test>
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
95 <test>
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
96 <conditional name="input_type_option">
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
97 <param name="input_type" value="simple" />
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
98 <param name="reads" value="takeabreak/toy_example_reads.fasta,takeabreak/toy_example_with_inv_reads.fasta" />
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
99 </conditional>
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
100 <output name="inversion" file="takeabreak/inversion.fasta"/>
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
101 </test>
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
102 </tests>
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
103 <help><![CDATA[
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
104
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
105 **Description**
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
106
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
107 TakeABreak is a tool that can detect inversion breakpoints directly from raw NGS reads, without the need of any reference genome and without de novo assembling the genomes. Its implementation has a very limited memory impact allowing its usage on common desktop computers and acceptable runtime (Illumina reads simulated at 2x40x coverage from human chromosome 22 can be treated in less than two hours, with less than 1GB of memory).
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
108
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
109 -------
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
110
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
111 **Web site**
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
112
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
113 http://colibread.inria.fr/takeabreak/
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
114
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
115
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
116 ]]></help>
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
117 <expand macro="citations">
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
118 <citation type="doi">10.1007/978-3-319-07953-0_10</citation>
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
119 </expand>
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
120
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
121 </tool>