Mercurial > repos > artbio > sr_bowtie
annotate sRbowtie.xml @ 0:de9cd3998571 draft
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
author | artbio |
---|---|
date | Sat, 02 Sep 2017 10:52:05 -0400 |
parents | |
children | 5f4fbba31b6a |
rev | line source |
---|---|
0
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
1 <tool id="bowtieForSmallRNA" name="sR_bowtie" version="2.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> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
4 <requirement type="package" version="1.1.2=py27_2">bowtie</requirement> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
5 <requirement type="package" version="1.2">samtools</requirement> |
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": |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
9 bowtie-build -f $refGenomeSource.ownFile genome && |
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 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
15 #if $input.extension == "fasta": |
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" |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
17 #elif $input.extension == "fastq": |
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": |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
51 bowtie -p \${GALAXY_SLOTS:-4} $method_postfix --suppress 6,7,8 $index_path $format '$input' > $output |
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": |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
53 bowtie -p \${GALAXY_SLOTS:-4} $method_postfix -S $index_path $format '$input' > '$output' |
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": |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
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 |
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> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
127 <data format="fasta" label="Matched reads" name="aligned"> |
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> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
130 <data format="fasta" label="Unmatched reads" name="unaligned"> |
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" /> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
156 <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
|
157 <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
|
158 <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
|
159 <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
|
160 <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
|
161 </test> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
162 <test> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
163 <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
|
164 <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
|
165 <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
|
166 <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
|
167 <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
|
168 <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
|
169 <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
|
170 <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
|
171 <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
|
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 </tests> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
174 <help> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
175 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
176 **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
|
177 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
178 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
|
179 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
180 .. _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
|
181 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
182 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
|
183 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
184 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
|
185 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
186 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
|
187 |
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 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
190 **OPTIONS** |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
191 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
192 .. class:: infomark |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
193 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
194 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
|
195 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
196 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
|
197 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
198 **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
|
199 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
200 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
|
201 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
202 *-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
|
203 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
204 **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
|
205 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
206 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
|
207 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
208 *-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
|
209 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
210 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
|
211 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
212 **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
|
213 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
214 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
|
215 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
216 *-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
|
217 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
218 **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
|
219 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
220 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
|
221 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
222 *-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
|
223 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
224 **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
|
225 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
226 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
|
227 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
228 *-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
|
229 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
230 **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
|
231 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
232 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
|
233 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
234 *-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
|
235 |
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 |
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 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
240 **Input formats** |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
241 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
242 .. class:: warningmark |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
243 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
244 *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
|
245 |
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 **OUTPUTS** |
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 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
|
251 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
252 Column Description |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
253 -------- -------------------------------------------------------- |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
254 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
|
255 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
|
256 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
|
257 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
|
258 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
|
259 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
260 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
|
261 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
262 .. class:: warningmark |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
263 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
264 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
|
265 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
|
266 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
267 .. class:: infomark |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
268 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
269 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
|
270 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
271 .. class:: infomark |
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 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
|
274 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
275 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
|
276 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
277 **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
|
278 |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
279 </help> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
280 <citations> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
281 <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
|
282 </citations> |
de9cd3998571
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie commit 19d31884000f86a5e5e07cd98ecd29fe6c9b1a7e
artbio
parents:
diff
changeset
|
283 </tool> |