Mercurial > repos > artbio > sr_bowtie
annotate sRbowtie.xml @ 7:3d5bd42097d7 draft default tip
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit cf30b4fab90cf7910bb2900a05b85ca3344aae59
author | artbio |
---|---|
date | Tue, 15 Nov 2022 00:44:57 +0000 |
parents | e4a05086ea02 |
children |
rev | line source |
---|---|
7
3d5bd42097d7
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit cf30b4fab90cf7910bb2900a05b85ca3344aae59
artbio
parents:
6
diff
changeset
|
1 <tool id="bowtieForSmallRNA" name="sR_bowtie" version="2.3.0"> |
0
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
2 <description>for small RNA short reads</description> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
3 <requirements> |
6
e4a05086ea02
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 1b3431dcb7e220ab736de4598d0f769cb6c60015"
artbio
parents:
5
diff
changeset
|
4 <requirement type="package" version="1.3.1">bowtie</requirement> |
e4a05086ea02
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 1b3431dcb7e220ab736de4598d0f769cb6c60015"
artbio
parents:
5
diff
changeset
|
5 <requirement type="package" version="1.14">samtools</requirement> |
0
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
6 </requirements> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
7 <command detect_errors="exit_code"><![CDATA[ |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
8 #if $refGenomeSource.genomeSource == "history": |
7
3d5bd42097d7
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit cf30b4fab90cf7910bb2900a05b85ca3344aae59
artbio
parents:
6
diff
changeset
|
9 bowtie-build --threads \${GALAXY_SLOTS:-4} -f $refGenomeSource.ownFile genome 1>/dev/null && |
0
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
10 ln -s -f '$refGenomeSource.ownFile' genome.fa && |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
11 #set index_path = 'genome' |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
12 #else: |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
13 #set index_path = $refGenomeSource.index.fields.path |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
14 #end if |
3
61ab0d4bd187
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 7e91a34b0ebd7bc284823c71f32691170183e388
artbio
parents:
2
diff
changeset
|
15 #if $input.is_of_type('fasta'): |
0
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
16 #set format = "-f" |
3
61ab0d4bd187
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 7e91a34b0ebd7bc284823c71f32691170183e388
artbio
parents:
2
diff
changeset
|
17 #elif $input.is_of_type('fastq'): |
0
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
18 #set format = "-q" |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
19 #end if |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
20 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
21 ## set the method_prefix |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
22 #if $method == "RNA": |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
23 #set method_prefix = "-v %s -M 1 --best --strata --norc" % str($v_mismatches) |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
24 #elif $method == "unique": |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
25 #set method_prefix = "-v %s -m 1" % str($v_mismatches) |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
26 #elif $method == "multiple": |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
27 #set method_prefix = "-v %s -M 1 --best --strata" % str($v_mismatches) |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
28 #elif $method == "k_option": |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
29 #set method_prefix = "-v %s -k 1 --best" % str($v_mismatches) |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
30 #elif $method == "n_option": |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
31 #set method_prefix = "-n %s -M 1 --best" % str($v_mismatches) |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
32 #elif $method == "a_option": |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
33 #set method_prefix = "-v %s -a --best" % str($v_mismatches) |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
34 #end if |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
35 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
36 ## set the extra_output |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
37 #if $additional_fasta == "No": |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
38 #set extra_output = "" |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
39 #elif $additional_fasta == "al": |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
40 #set extra_output = " --al %s " % str($aligned) |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
41 #elif $additional_fasta == "unal": |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
42 #set extra_output = " --un %s " % str($unaligned) |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
43 #else: |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
44 #set extra_output = " --al %s --un %s " % (str($aligned), str($unaligned)) |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
45 #end if |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
46 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
47 #set $method_postfix = " %s %s " % ($method_prefix, $extra_output) |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
48 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
49 ## run the bowtie alignement |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
50 #if $output_format == "tabular": |
1
5f4fbba31b6a
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 2dac5b5f1ed589f4c8a3c6d64696b842ece8edd2
artbio
parents:
0
diff
changeset
|
51 bowtie -p \${GALAXY_SLOTS:-4} $method_postfix --suppress 6,7,8 $index_path $format '$input' 2>&1 > $output |
0
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
52 #elif $output_format == "sam": |
1
5f4fbba31b6a
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 2dac5b5f1ed589f4c8a3c6d64696b842ece8edd2
artbio
parents:
0
diff
changeset
|
53 bowtie -p \${GALAXY_SLOTS:-4} $method_postfix -S $index_path $format '$input' 2>&1 > '$output' |
0
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
54 #elif $output_format == "bam": |
1
5f4fbba31b6a
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 2dac5b5f1ed589f4c8a3c6d64696b842ece8edd2
artbio
parents:
0
diff
changeset
|
55 bowtie -p \${GALAXY_SLOTS:-4} $method_postfix -S $index_path $format '$input'| samtools view -u - | samtools sort -@ "\${GALAXY_SLOTS:-4}" -T tmp -O bam -o $output 2>&1 |
0
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
56 #end if |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
57 ##### | samtools view -uS |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
58 ]]></command> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
59 <inputs> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
60 <param format="fasta, fastq" help="Only with clipped, fasta or fastq read files" label="Input fasta or fastq file: reads clipped from their adapter" name="input" type="data" /> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
61 <param help="bowtie parameters adjusted to the type of matching. RNA option match to only one strand" label="What kind of matching do you want to do?" name="method" type="select"> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
62 <option value="RNA">Match on sense strand RNA reference index, multiple mappers randomly matched at a single position</option> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
63 <option value="unique">Match unique mappers on DNA reference index</option> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
64 <option selected="true" value="multiple">Match on DNA, multiple mappers randomly matched at a single position</option> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
65 <option value="k_option">Match on DNA as fast as possible, without taking care of mapping issues (for raw annotation of reads)</option> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
66 <option value="n_option">Match on DNA - RNAseq mode (-n bowtie option)</option> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
67 <option value="a_option">Match and report all valid alignments</option> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
68 </param> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
69 <param help="specify the -v bowtie option" label="Number of mismatches allowed" name="v_mismatches" type="select"> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
70 <option value="0">0</option> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
71 <option selected="true" value="1">1</option> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
72 <option value="2">2</option> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
73 <option value="3">3</option> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
74 </param> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
75 <conditional name="refGenomeSource"> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
76 <param help="Built-ins were indexed using default options" label="Will you select a reference genome from your history or use a built-in index?" name="genomeSource" type="select"> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
77 <option value="indexed">Use a built-in index</option> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
78 <option value="history">Use one from the history</option> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
79 </param> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
80 <when value="indexed"> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
81 <param help="if your genome of interest is not listed - contact instance administrator" label="Select a DNA reference index" name="index" type="select"> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
82 <options from_data_table="bowtie_indexes"> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
83 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
84 </options> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
85 </param> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
86 </when> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
87 <when value="history"> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
88 <param format="fasta" label="Select a fasta file, to serve as index reference" name="ownFile" type="data" /> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
89 </when> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
90 </conditional> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
91 <param help="Note that the BAM will be viewable in trackster only if you choose a full genome referenced for Trackster usage. see the doc below" label="Select output format" name="output_format" type="select"> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
92 <option selected="true" value="tabular">tabular</option> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
93 <option value="sam">sam</option> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
94 <option value="bam">bam</option> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
95 </param> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
96 <param help="to get aligned and unaligned reads in fasta format" label="additional fasta output" name="additional_fasta" type="select"> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
97 <option selected="true" value="No">No</option> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
98 <option value="al">aligned</option> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
99 <option value="unal">unaligned</option> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
100 <option value="al_and_unal">both aligned and unaligned</option> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
101 </param> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
102 </inputs> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
103 <outputs> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
104 <data format="tabular" label="Bowtie Output" name="output"> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
105 <change_format> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
106 <when format="sam" input="output_format" value="sam" /> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
107 <when format="bam" input="output_format" value="bam" /> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
108 </change_format> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
109 <actions> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
110 <conditional name="refGenomeSource.genomeSource"> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
111 <when value="indexed"> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
112 <action name="dbkey" type="metadata"> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
113 <option column="1" name="bowtie_indexes" offset="0" type="from_data_table"> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
114 <filter column="0" compare="startswith" keep="False" type="param_value" value="#" /> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
115 <filter column="0" ref="refGenomeSource.index" type="param_value" /> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
116 </option> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
117 </action> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
118 </when> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
119 <when value="history"> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
120 <action name="dbkey" type="metadata"> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
121 <option name="refGenomeSource.ownFile" param_attribute="dbkey" type="from_param" /> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
122 </action> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
123 </when> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
124 </conditional> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
125 </actions> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
126 </data> |
5
0281bb245635
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 9112ef4fcf1fdac850fcc58195d39ca3d0e34857
artbio
parents:
4
diff
changeset
|
127 <data format_source="input" label="Matched reads" name="aligned"> |
0
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
128 <filter>additional_fasta == "al" or additional_fasta == "al_and_unal"</filter> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
129 </data> |
5
0281bb245635
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 9112ef4fcf1fdac850fcc58195d39ca3d0e34857
artbio
parents:
4
diff
changeset
|
130 <data format_source="input" label="Unmatched reads" name="unaligned"> |
0
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
131 <filter>additional_fasta == "unal" or additional_fasta == "al_and_unal"</filter> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
132 </data> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
133 </outputs> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
134 <tests> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
135 <test> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
136 <param name="genomeSource" value="history" /> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
137 <param ftype="fasta" name="ownFile" value="297_reference.fa" /> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
138 <param name="method" value="unique" /> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
139 <param ftype="fasta" name="input" value="input.fa" /> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
140 <param name="v_mismatches" value="1" /> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
141 <param name="output_format" value="bam" /> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
142 <output file="output.bam" ftype="bam" compare="sim_size" delta="1000" name="output" /> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
143 </test> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
144 <test> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
145 <param name="genomeSource" value="history" /> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
146 <param ftype="fasta" name="ownFile" value="297_reference.fa" /> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
147 <param name="method" value="unique" /> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
148 <param ftype="fastq" name="input" value="input.fastq" /> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
149 <param name="v_mismatches" value="1" /> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
150 <param name="output_format" value="bam" /> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
151 <output file="output2.bam" ftype="bam" compare="sim_size" delta="1000" name="output" /> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
152 </test> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
153 <test> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
154 <param name="genomeSource" value="history" /> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
155 <param ftype="fasta" name="ownFile" value="297_reference.fa" /> |
2
304adcfe3660
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 9700ca1c08ed2cfbca33630892569f3b8acec6fe
artbio
parents:
1
diff
changeset
|
156 <param name="method" value="unique" /> |
304adcfe3660
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 9700ca1c08ed2cfbca33630892569f3b8acec6fe
artbio
parents:
1
diff
changeset
|
157 <param ftype="fastqsanger" name="input" value="input.fastqsanger" /> |
304adcfe3660
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 9700ca1c08ed2cfbca33630892569f3b8acec6fe
artbio
parents:
1
diff
changeset
|
158 <param name="v_mismatches" value="1" /> |
5
0281bb245635
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 9112ef4fcf1fdac850fcc58195d39ca3d0e34857
artbio
parents:
4
diff
changeset
|
159 <param name="additional_fasta" value="al" /> |
2
304adcfe3660
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 9700ca1c08ed2cfbca33630892569f3b8acec6fe
artbio
parents:
1
diff
changeset
|
160 <param name="output_format" value="bam" /> |
304adcfe3660
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 9700ca1c08ed2cfbca33630892569f3b8acec6fe
artbio
parents:
1
diff
changeset
|
161 <output file="output2.bam" ftype="bam" compare="sim_size" delta="1000" name="output" /> |
5
0281bb245635
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 9112ef4fcf1fdac850fcc58195d39ca3d0e34857
artbio
parents:
4
diff
changeset
|
162 <output file="al.fastqsanger" ftype="fastqsanger" name="aligned" /> |
2
304adcfe3660
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 9700ca1c08ed2cfbca33630892569f3b8acec6fe
artbio
parents:
1
diff
changeset
|
163 </test> |
304adcfe3660
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 9700ca1c08ed2cfbca33630892569f3b8acec6fe
artbio
parents:
1
diff
changeset
|
164 <test> |
304adcfe3660
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 9700ca1c08ed2cfbca33630892569f3b8acec6fe
artbio
parents:
1
diff
changeset
|
165 <param name="genomeSource" value="history" /> |
304adcfe3660
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 9700ca1c08ed2cfbca33630892569f3b8acec6fe
artbio
parents:
1
diff
changeset
|
166 <param ftype="fasta" name="ownFile" value="297_reference.fa" /> |
0
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
167 <param name="method" value="multiple" /> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
168 <param ftype="fasta" name="input" value="input.fa" /> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
169 <param name="v_mismatches" value="1" /> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
170 <param name="output_format" value="tabular" /> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
171 <output file="output.tab" ftype="tabular" name="output" /> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
172 </test> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
173 <test> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
174 <param name="genomeSource" value="history" /> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
175 <param ftype="fasta" name="ownFile" value="297_reference.fa" /> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
176 <param name="method" value="multiple" /> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
177 <param ftype="fasta" name="input" value="input.fa" /> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
178 <param name="v_mismatches" value="1" /> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
179 <param name="additional_fasta" value="al" /> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
180 <param name="output_format" value="tabular" /> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
181 <output file="output.tab" ftype="tabular" name="output" /> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
182 <output file="al.fa" ftype="fasta" name="aligned" /> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
183 </test> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
184 </tests> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
185 <help> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
186 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
187 **What it does** |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
188 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
189 Bowtie_ is a short read aligner designed to be ultrafast and memory-efficient. It is developed by Ben Langmead and Cole Trapnell. Please cite: Langmead B, Trapnell C, Pop M, Salzberg SL. Ultrafast and memory-efficient alignment of short DNA sequences to the human genome. Genome Biology 10:R25. |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
190 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
191 .. _Bowtie: http://bowtie-bio.sourceforge.net/index.shtml |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
192 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
193 A generic "Map with Bowtie for Illumina" Galaxy tool is available in the main Galaxy distribution. |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
194 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
195 However, this Bowtie wrapper tool only takes FASTQ files as inputs. |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
196 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
197 The sRbowtie wrapper works with short (-v bowtie mode) reads inputs, in fasta or fastq format, and proposes a simplified set of configurations suited to small RNA analysis. |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
198 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
199 ------ |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
200 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
201 **OPTIONS** |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
202 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
203 .. class:: infomark |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
204 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
205 This script uses Bowtie to match reads on a reference index. |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
206 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
207 Depending on the type of matching, different bowtie options are used: |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
208 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
209 **Match on sense strand RNA reference index, multiple mappers randomly matched at a single position** |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
210 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
211 Align on RNA reference, SENSE strand, randomly attributing multiple mapper to target with least mismatches: |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
212 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
213 *-v [0,1,2,3] -M 1 --best --strata -p 12 --norc* |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
214 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
215 **Match unique mappers on DNA reference index** |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
216 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
217 Align ONLY unique mappers on DNA reference index |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
218 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
219 *-v [0,1,2,3] -m 1 -p 12* |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
220 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
221 Note that using this option with -v values other than 0 is questionnable... |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
222 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
223 **Match on DNA, multiple mappers randomly matched at a single position** |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
224 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
225 Align multiple mappers, randomly attributing multiple mapper to target with least mismatches, number of mismatch allowed specified by -v option: |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
226 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
227 *-v [0,1,2,3] -M 1 --best --strata -p 12* |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
228 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
229 **Match on DNA as fast as possible, without taking care of mapping issues (for raw annotation of reads)** |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
230 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
231 Align with highest speed, not guaranteeing best hit for speed gain: |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
232 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
233 *-v [0,1,2,3] -k 1 --best -p 12* |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
234 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
235 **Match on DNA - RNAseq mode (-n bowtie option)** |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
236 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
237 Align reads in as for RNAseq data alignment |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
238 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
239 *-n [0,1,2,3] -M 1 --best -p 12* |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
240 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
241 **Match and report all valid alignments** |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
242 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
243 Align reads and report all valid alignments |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
244 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
245 *-v [0,1,2,3] -a --best -p 12* |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
246 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
247 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
248 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
249 ----- |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
250 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
251 **Input formats** |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
252 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
253 .. class:: warningmark |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
254 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
255 *Lists of reads, in fasta or fastq format, clipped from their adapter sequence* |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
256 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
257 ----- |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
258 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
259 **OUTPUTS** |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
260 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
261 If you choose tabular as the output format, you will obtain the matched reads in tabular bowtie output format (--suppress 6,7,8), having the following columns:: |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
262 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
263 Column Description |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
264 -------- -------------------------------------------------------- |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
265 1 FastaID fasta identifier |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
266 2 polarity + or - depending whether the match was reported on the forward or reverse strand |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
267 3 target name of the matched target |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
268 4 Offset O-based coordinate of the miR on the miRBase pre-miR sequence |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
269 5 Seq sequence of the matched Read |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
270 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
271 If you choose SAM, you will get the output in unordered SAM format. |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
272 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
273 .. class:: warningmark |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
274 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
275 if you choose BAM, the output will be in sorted BAM format. |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
276 To be viewable in Trackster, several condition must be fulfilled: |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
277 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
278 .. class:: infomark |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
279 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
280 Reads must have been matched to a genome whose chromosome names are compatible with Trackster genome indexes |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
281 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
282 .. class:: infomark |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
283 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
284 the database/Build (dbkey) which is indicated for the dataset (Pencil - Database/Build field) must match a Trackster genome index. |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
285 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
286 Please contact the Galaxy instance administrator if your genome is not referenced |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
287 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
288 **Matched and unmatched fasta reads can be retrieved, for further analyses** |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
289 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
290 </help> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
291 <citations> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
292 <citation type="doi">10.1186/gb-2009-10-3-r25</citation> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
293 </citations> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
294 </tool> |