annotate takeabreak.xml @ 6:22a263a450d0 draft default tip

"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 8d37fef93da141323cc120b5fec737432e497dcf"
author iuc
date Thu, 06 May 2021 12:46:24 +0000
parents b0e311ac462c
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
6
22a263a450d0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 8d37fef93da141323cc120b5fec737432e497dcf"
iuc
parents: 2
diff changeset
1 <tool id="takeabreak" name="TakeABreak" version="1.1.2+galaxy0" profile="@PROFILE@">
0
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
2 <description>is a tool that can detect inversion breakpoints directly from raw NGS reads</description>
2
b0e311ac462c planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 43935edeb0abb95b08b191b379e160ec25cb33c0
iuc
parents: 1
diff changeset
3 <macros>
b0e311ac462c planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 43935edeb0abb95b08b191b379e160ec25cb33c0
iuc
parents: 1
diff changeset
4 <import>macros.xml</import>
b0e311ac462c planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 43935edeb0abb95b08b191b379e160ec25cb33c0
iuc
parents: 1
diff changeset
5 </macros>
0
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 <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
8 </requirements>
6
22a263a450d0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 8d37fef93da141323cc120b5fec737432e497dcf"
iuc
parents: 2
diff changeset
9 <command detect_errors="exit_code"><![CDATA[
22a263a450d0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 8d37fef93da141323cc120b5fec737432e497dcf"
iuc
parents: 2
diff changeset
10 #if str($input_type_option.input_type) == "simple"
0
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
11 #for $input in $input_type_option.reads
6
22a263a450d0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 8d37fef93da141323cc120b5fec737432e497dcf"
iuc
parents: 2
diff changeset
12 @single_reads@
22a263a450d0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 8d37fef93da141323cc120b5fec737432e497dcf"
iuc
parents: 2
diff changeset
13 echo "${filename}" >> input.fof &&
0
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
14 #end for
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
15 #else
6
22a263a450d0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 8d37fef93da141323cc120b5fec737432e497dcf"
iuc
parents: 2
diff changeset
16 #for $i, $list in enumerate($input_type_option.reads_lists)
22a263a450d0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 8d37fef93da141323cc120b5fec737432e497dcf"
iuc
parents: 2
diff changeset
17 #for $input in $list.list_reads
22a263a450d0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 8d37fef93da141323cc120b5fec737432e497dcf"
iuc
parents: 2
diff changeset
18 @single_reads@
0
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
19 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
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 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
22 #end for
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
23 #end if
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
24 TakeABreak
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
25 -in input.fof
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
26 -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
27 -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
28 -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
29 -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
30 -lct ${lct}
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
31 -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
32 -repeat ${repeat}
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
33 ]]></command>
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
34 <inputs>
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
35 <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
36 <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
37 <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
38 <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
39 </param>
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
40 <when value="simple">
6
22a263a450d0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 8d37fef93da141323cc120b5fec737432e497dcf"
iuc
parents: 2
diff changeset
41 <param name='reads' argument="-in" format="fasta,fasta.gz,fastq,fastq.gz" type="data" multiple="true" label="Single read files" optional="True" />
0
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
42 </when>
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
43 <when value="list">
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
44 <repeat name="reads_lists" title="Individual" min="1">
6
22a263a450d0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 8d37fef93da141323cc120b5fec737432e497dcf"
iuc
parents: 2
diff changeset
45 <param name='list_reads' argument="-in" format="fasta,fasta.gz,fastqfastq.gz" type="data_collection" collection_type="list" multiple="true" label="Individual read files list"/>
0
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
46 </repeat>
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
47 </when>
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
48 </conditional>
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
49 <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
50 <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
51 <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
52 <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
53 <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
54 <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
55 <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
56 </param>
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
57 <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
58 <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
59 <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
60 </inputs>
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
61 <outputs>
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
62 <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
63 </outputs>
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
64 <tests>
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
65 <test>
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
66 <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
67 <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
68 <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
69 <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
70 <collection type="list">
6
22a263a450d0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 8d37fef93da141323cc120b5fec737432e497dcf"
iuc
parents: 2
diff changeset
71 <element name="example_reads" value="takeabreak/toy_example_reads.fasta.gz" ftype="fasta.gz"/>
22a263a450d0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 8d37fef93da141323cc120b5fec737432e497dcf"
iuc
parents: 2
diff changeset
72 <element name="example_reads_with_inv" value="takeabreak/toy_example_with_inv_reads.fasta.gz" ftype="fasta.gz"/>
0
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
73 </collection>
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
74 </param>
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
75 </repeat>
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
76 </conditional>
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
77 <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
78 </test>
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
79 <test>
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
80 <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
81 <param name="input_type" value="simple" />
6
22a263a450d0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 8d37fef93da141323cc120b5fec737432e497dcf"
iuc
parents: 2
diff changeset
82 <param name="reads" value="takeabreak/toy_example_reads.fasta.gz,takeabreak/toy_example_with_inv_reads.fasta.gz" />
0
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
83 </conditional>
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
84 <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
85 </test>
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
86 </tests>
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
87 <help><![CDATA[
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
88
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
89 **Description**
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
90
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
91 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
92
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
93 -------
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
94
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
95 **Web site**
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
96
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
97 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
98
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
99
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
100 ]]></help>
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
101 <expand macro="citations">
e1fdaacdabc3 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
102 <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
103 </expand>
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 </tool>