Mercurial > repos > megan-shortridge > degenerateprimerremoval
comparison cut_degen.xml @ 0:33b174991d3e draft default tip
planemo upload for repository https://github.com/mshortr/degenerateprimerremoval commit df5ba746a916e08e0847a727237f6bec5ef0511f-dirty
author | megan-shortridge |
---|---|
date | Tue, 15 Sep 2015 14:29:28 -0400 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:33b174991d3e |
---|---|
1 <tool id="cut_degen" name="Cut degenerate primers from dataset" version="0.1.0"> | |
2 <description> Degenerate primer removal tool for Fasta files</description> | |
3 <requirements> | |
4 <requirement type = "package" version = "1.9">numpy</requirement> | |
5 <requirement type = "package" version = "1.65">biopython</requirement> | |
6 </requirements> | |
7 <stdio> | |
8 <exit_code range="1:" /> | |
9 </stdio> | |
10 | |
11 <command interpreter="python">cut_degen.py $input1 $input2 $input3 $input4 $input5 $input6 | |
12 </command> | |
13 <inputs> | |
14 <param name="input1" type="data" label="Input Fasta file" help="Please add a valid Fasta file!" format="fasta"/> | |
15 <param name="input2" type="text" label="Input adaptor" help="This will work also with degenerate adaptors. Type the adaptor here..." size="4x25" area="true"/> | |
16 <param name="input3" type="select" label="Keep reads without adaptor?" help="This is a True/False option, if True, reads that lack the adaptor will be kept. If false, they will be deleted from the dataset."> | |
17 <option value="True">True</option> | |
18 <option value="False">False</option> | |
19 </param> | |
20 <param name="input4" type="select" label = "Remove adaptors?" help="This is True/False option, if True, removes adaptors from sequences. If false, keeps the adaptors in the sequences."> | |
21 <option value="True">True</option> | |
22 <option value="False">False</option> | |
23 </param> | |
24 <param name="input5" type="select" multiple="False" label="5' or 3' end" help="Enter '5' to remove the primer from the 5' end, and enter '3' to remove the primer from the 3' end"> | |
25 <option value="5">5</option> | |
26 <option value="3">3</option> | |
27 </param> | |
28 <param name="input6" type="text" label="Adaptor name" help="Enter an identifier for your adaptor to be recorded in the output .txt file" size="4x25" area="true"> | |
29 </param> | |
30 </inputs> | |
31 <outputs> | |
32 <data name="output1" format="text" from_work_dir="output.txt" label="Degenerate adaptor removal on ${input1.name}(REPORT)"/> | |
33 <data name="output2" format="fasta" from_work_dir="output.fasta" label="Degenerate adaptor removal on ${input1.name}(READS)"/> | |
34 </outputs> | |
35 <tests> | |
36 <test> | |
37 <param name="input1" value="test.fasta"/> | |
38 <param name="input2" value="GAACWAYWYCT"/> | |
39 <param name="input3" value="True"/> | |
40 <param name="input4" value="True"/> | |
41 <param name="input5" value="5"/> | |
42 <param name="input6" value="test"/> | |
43 <output name="output1" file="output.txt"/> | |
44 <output name="output2" file="output.fasta"/> | |
45 </test> | |
46 <test> | |
47 <param name="input1" value="test3prime.fasta"/> | |
48 <param name="input2" value="GCTCGGTGGCGT"/> | |
49 <param name="input3" value="True"/> | |
50 <param name="input4" value="True"/> | |
51 <param name="input5" value="3"/> | |
52 <param name="input6" value="test2"/> | |
53 <output name="output1" file="output2.txt"/> | |
54 <output name="output2" file="output2.fasta"/> | |
55 </test> | |
56 </tests> | |
57 <help> | |
58 This program takes Fasta files and removes a given degenerate primer sequence. There are a few arguments that you can put in: | |
59 1) You can check whether or not to keep reads that do not have the adaptor in it. | |
60 2) You can check whether or not to remove the adaptor sequences from your reads. | |
61 3) You can choose whether to cut adaptors from the 5', or 3' end of the molecules. | |
62 4) You can add an identifier for the adaptor which will show up in the output text file. | |
63 </help> | |
64 <citations> | |
65 <citation type="doi">10.1093/bioinformatics/btp163</citation> | |
66 </citations> | |
67 </tool> |