comparison barcode_sort.xml @ 7:2c843c8df821 draft

planemo upload commit 1af8d398aa035883718d02bb1b9051edb5d10c48
author tiagoantao
date Thu, 31 Mar 2016 10:32:59 -0400
parents 5cd3cc89bf59
children 8b0f010d356c
comparison
equal deleted inserted replaced
6:5cd3cc89bf59 7:2c843c8df821
5 <exit_code range="1" level="fatal" description="Error in script execution" /> 5 <exit_code range="1" level="fatal" description="Error in script execution" />
6 </stdio> 6 </stdio>
7 7
8 <command interpreter="perl"> 8 <command interpreter="perl">
9 9
10 barcode_sort.pl $barcode $f1 $f2 $barcoded $nonbarcoded 10 barcode_sort.pl $barcode $f1 $f2 $barcoded $nonbarcoded $barcode_length $cut_site
11 11
12 </command> 12 </command>
13 13
14 <inputs> 14 <inputs>
15 <param name="barcode" format="txt" type="data" label="Barcode file 1" /> 15 <param name="barcode" format="txt" type="data" label="Barcode file" />
16 <param name="f1" type="data" format="fastq" label="First reads" /> 16 <param name="barcode_length" type="integer" value="6" label="Barcode length" />
17 <param name="f2" type="data" format="fastq" label="Second reads" /> 17 <param name="f1" type="data" format="fastq" label="First read FASTQ" />
18 <param name="f2" type="data" format="fastq" label="Second read FASTQ" />
19 <param name="cut_site" type="txt" value="TGCA" label="Cut site" />
18 </inputs> 20 </inputs>
19 <outputs> 21 <outputs>
20 <data format="fastq" name="barcoded" label="Barcoded sequences"/> 22 <data format="fastq" name="barcoded" label="Barcoded sequences"/>
21 <data format="fastq" name="nonbarcoded" label="Non barcoded sequences"/> 23 <data format="fastq" name="nonbarcoded" label="Non barcoded sequences"/>
22 </outputs> 24 </outputs>
25 27
26 .. class:: infomark 28 .. class:: infomark
27 29
28 **What it does** 30 **What it does**
29 31
30 This program takes 2 input sequence files where the barcode can be on either the 1st or 2nd read (but not both) and sorts all barcoded reads into a single file and all non-barcoded files into a second file. This separation is needed for the STACKs program as it does not handle sequences where the barcode is arbitrarily on the 1st or 2nd read. 32 This program takes 2 input sequence files where the barcode can be on either
33 the 1st or 2nd read (but not both) and sorts all barcoded reads into a single
34 file and all non-barcoded files into a second file. This separation is needed
35 for the STACKs program as it does not handle sequences where the barcode is
36 arbitrarily on the 1st or 2nd read.
31 37
32 -------- 38 --------
33 39
34 **Created by:** 40 **Created by:**
35 41
41 47
42 48
43 </help> 49 </help>
44 50
45 </tool> 51 </tool>
46