Mercurial > repos > iuc > colibread_mapsembler2
annotate mapsembler2.xml @ 6:e8a8cb93878a draft default tip
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 747394d19e88a569a5154615e366ea0401c820dd
| author | iuc |
|---|---|
| date | Sat, 05 Oct 2024 19:52:52 +0000 |
| parents | 71d60a931e2f |
| children |
| rev | line source |
|---|---|
|
6
e8a8cb93878a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 747394d19e88a569a5154615e366ea0401c820dd
iuc
parents:
5
diff
changeset
|
1 <tool id="mapsembler2" name="Mapsembler2" version="@TOOL_VERSION@+galaxy1" profile="@PROFILE@"> |
|
0
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
2 <description>is a targeted assembly software</description> |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
3 <macros> |
|
6
e8a8cb93878a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 747394d19e88a569a5154615e366ea0401c820dd
iuc
parents:
5
diff
changeset
|
4 <token name="@TOOL_VERSION@">2.2.4</token> |
|
0
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
5 <import>macros.xml</import> |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
6 </macros> |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
7 <requirements> |
|
6
e8a8cb93878a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 747394d19e88a569a5154615e366ea0401c820dd
iuc
parents:
5
diff
changeset
|
8 <requirement type="package" version="@TOOL_VERSION@">mapsembler2</requirement> |
|
0
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
9 </requirements> |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
10 <command><![CDATA[ |
|
5
71d60a931e2f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 8d37fef93da141323cc120b5fec737432e497dcf"
iuc
parents:
1
diff
changeset
|
11 #import re |
|
71d60a931e2f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 8d37fef93da141323cc120b5fec737432e497dcf"
iuc
parents:
1
diff
changeset
|
12 #set $starter_filename = re.sub('[^\w_]', '_', $s.element_identifier) + ".fasta" |
|
71d60a931e2f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 8d37fef93da141323cc120b5fec737432e497dcf"
iuc
parents:
1
diff
changeset
|
13 #if $s.ext.endswith('.gz'): |
|
71d60a931e2f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 8d37fef93da141323cc120b5fec737432e497dcf"
iuc
parents:
1
diff
changeset
|
14 gunzip -c '${s}' > '${starter_filename}' && |
|
71d60a931e2f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 8d37fef93da141323cc120b5fec737432e497dcf"
iuc
parents:
1
diff
changeset
|
15 #else: |
|
71d60a931e2f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 8d37fef93da141323cc120b5fec737432e497dcf"
iuc
parents:
1
diff
changeset
|
16 ln -sf '${s}' '${starter_filename}' && |
|
71d60a931e2f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 8d37fef93da141323cc120b5fec737432e497dcf"
iuc
parents:
1
diff
changeset
|
17 #end if |
|
0
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
18 #set $samples = [] |
|
5
71d60a931e2f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 8d37fef93da141323cc120b5fec737432e497dcf"
iuc
parents:
1
diff
changeset
|
19 #for $input in $r |
|
71d60a931e2f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 8d37fef93da141323cc120b5fec737432e497dcf"
iuc
parents:
1
diff
changeset
|
20 #set $base_filename = re.sub('[^\w_]', '_', $input.element_identifier) |
|
71d60a931e2f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 8d37fef93da141323cc120b5fec737432e497dcf"
iuc
parents:
1
diff
changeset
|
21 @single_reads@ |
|
0
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
22 #silent $samples.append($filename) |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
23 #end for |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
24 run_mapsembler2_pipeline.sh |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
25 -s '${starter_filename}' |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
26 -r "${ ' '.join(['%s' % read for read in $samples]) }" |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
27 -t ${t} |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
28 -k ${k} |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
29 -c ${c} |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
30 -d ${d} |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
31 -g ${g} |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
32 -f ${f} |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
33 -x ${x} |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
34 -y ${y} |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
35 ]]></command> |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
36 <inputs> |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
37 <!-- Input data files --> |
|
5
71d60a931e2f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 8d37fef93da141323cc120b5fec737432e497dcf"
iuc
parents:
1
diff
changeset
|
38 <param argument="-s" type="data" format="fasta,fasta.gz" label="Starters" help="Set of input sequences" /> |
|
71d60a931e2f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 8d37fef93da141323cc120b5fec737432e497dcf"
iuc
parents:
1
diff
changeset
|
39 <param argument="-r" type="data" multiple="true" format="fasta,fasta.gz,fastq,fastq.gz" label="List of reads" /> |
|
0
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
40 <param argument="-t" type="select" label="Select your output extension type"> |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
41 <option value="1">a strict sequence</option> |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
42 <option value="2">a consensus sequence</option> |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
43 </param> |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
44 <param argument="-k" type="integer" label="Size of kmers" value="31" help="Set the length of used kmers. Must fit the compiled value. Only uneven number" /> |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
45 <param argument="-c" type="integer" label="Minimal coverage" value="5" help="Set the minimal coverage: Used by Phaser (don't use kmers with lower coverage) "/> |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
46 <param argument="-d" type="integer" label="Number of authorized substitutions" value="1" help="Set the number of authorized substitutions used while mapping reads on finding SNPs"/> |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
47 <param argument="-g" type="integer" label="Estimated genome size" value="10000000" help="Used only to control memory usage. e.g.3 billion (3000000000) uses 4Gb of RAM." /> |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
48 <param argument="-f" type="select" label="Process of search" help="Set the process of search in the graph" > |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
49 <option value="1">Breadth</option> |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
50 <option value="2">Depth</option> |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
51 </param> |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
52 <param argument="-x" type="integer" label="Max length of nodes" value="40" help="Set the maximal length of nodes"/> |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
53 <param argument="-y" type="integer" label="Max depth of nodes" value="10000" help="Set the maximal depth of the graph"/> |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
54 </inputs> |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
55 <outputs> |
|
6
e8a8cb93878a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 747394d19e88a569a5154615e366ea0401c820dd
iuc
parents:
5
diff
changeset
|
56 <data name="fasta" from_work_dir="res_k_*.fasta" format="fasta" label="${tool.name} on ${on_string}: Assembly"/> |
|
e8a8cb93878a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 747394d19e88a569a5154615e366ea0401c820dd
iuc
parents:
5
diff
changeset
|
57 <data name="coherent" from_work_dir="res_coherent_*.fasta" format="fasta" label="${tool.name} on ${on_string}: Coherent" hidden="true"/> |
|
e8a8cb93878a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 747394d19e88a569a5154615e366ea0401c820dd
iuc
parents:
5
diff
changeset
|
58 <data name="uncoherent" from_work_dir="res_uncoherent_*.fasta" format="fasta" label="${tool.name} on ${on_string}: Uncoherent" hidden="true"/> |
|
e8a8cb93878a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 747394d19e88a569a5154615e366ea0401c820dd
iuc
parents:
5
diff
changeset
|
59 <data name="extremities" from_work_dir="starter_extremities.fa" format="fasta" label="${tool.name} on ${on_string}: Starter extremities" hidden="true"/> |
|
0
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
60 </outputs> |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
61 <tests> |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
62 <test> |
|
5
71d60a931e2f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 8d37fef93da141323cc120b5fec737432e497dcf"
iuc
parents:
1
diff
changeset
|
63 <param name="s" value="mapsembler2/starter.fa.gz" ftype="fasta.gz"/> |
|
71d60a931e2f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 8d37fef93da141323cc120b5fec737432e497dcf"
iuc
parents:
1
diff
changeset
|
64 <param name="r" value="mapsembler2/reads1.gz,mapsembler2/reads2.gz" ftype="fasta.gz"/> |
|
0
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
65 <param name="t" value="2"/> |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
66 <output name="fasta" file="mapsembler2/assembly.fa"/> |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
67 </test> |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
68 <test> |
|
5
71d60a931e2f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 8d37fef93da141323cc120b5fec737432e497dcf"
iuc
parents:
1
diff
changeset
|
69 <param name="s" value="mapsembler2/starter.fa.gz" ftype="fasta.gz"/> |
|
71d60a931e2f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit 8d37fef93da141323cc120b5fec737432e497dcf"
iuc
parents:
1
diff
changeset
|
70 <param name="r" value="mapsembler2/reads2.gz,mapsembler2/reads1.gz" ftype="fasta.gz"/> |
|
0
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
71 <param name="t" value="1"/> |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
72 <output name="fasta" file="mapsembler2/assembly_2.fa"/> |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
73 <output name="coherent" file="mapsembler2/coherent.fa"/> |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
74 <output name="extremities" file="mapsembler2/starter_extremities.fa"/> |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
75 </test> |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
76 </tests> |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
77 <help><![CDATA[ |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
78 |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
79 **Description** |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
80 |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
81 Mapsembler2 is a targeted assembly software. It takes as input a set of NGS raw reads (fasta or fastq, gzipped or not) and a set of input sequences (starters). It first determines if each starter is read-coherent, e.g. whether reads confirm the presence of each starter in the original sequence. Then for each read-coherent starter, Mapsembler2 outputs its sequence neighborhood as a linear sequence or as a graph, depending on the user choice. |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
82 Mapsembler2 may be used for (not limited to): |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
83 |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
84 · Validate an assembled sequence (input as starter), e.g. from a de Bruijn graph assembly where read-coherence was not enforced. |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
85 |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
86 · Checks if a gene (input as starter) has an homolog in a set of reads. |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
87 |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
88 · Checks if a known enzyme is present in a metagenomic NGS read set. |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
89 |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
90 · Enrich unmappable reads by extending them, possibly making them mappable. |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
91 |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
92 · Checks what happens at the extremities of a contig. |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
93 |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
94 · Remove contaminants or symbiont reads from a read set |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
95 |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
96 ------- |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
97 |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
98 **Web site** |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
99 |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
100 http://colibread.inria.fr/mapsembler2/ |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
101 |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
102 |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
103 ]]></help> |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
104 <expand macro="citations"> |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
105 <citation type="doi">10.1186/1471-2105-13-48</citation> |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
106 </expand> |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
107 |
|
c90f5219b67a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
108 </tool> |
