annotate fastx_clipper.xml @ 2:bdf1ce174e39 draft

planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit a1517c9d22029095120643bbe2c8fa53754dd2b7
author devteam
date Wed, 11 Nov 2015 12:38:51 -0500
parents 8192b4014977
children 85263dc18cec
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2
bdf1ce174e39 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 1
diff changeset
1 <tool id="cshl_fastx_clipper" name="Clip" version="1.0.1">
bdf1ce174e39 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 1
diff changeset
2 <description>adapter sequences</description>
bdf1ce174e39 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 1
diff changeset
3 <requirements>
bdf1ce174e39 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 1
diff changeset
4 <requirement type="package" version="0.0.13">fastx_toolkit</requirement>
bdf1ce174e39 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 1
diff changeset
5 </requirements>
bdf1ce174e39 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 1
diff changeset
6 <command>
bdf1ce174e39 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 1
diff changeset
7 <![CDATA[
bdf1ce174e39 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 1
diff changeset
8 zcat -f < '$input' | fastx_clipper -l $minlength -a '$clip_source.clip_sequence' -d $keepdelta -o '$output' -v $KEEP_N $DISCARD_OPTIONS
0
2fe2d2b9e8e4 Uploaded tool tarball.
devteam
parents:
diff changeset
9 #if $input.ext == "fastqsanger":
2
bdf1ce174e39 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 1
diff changeset
10 -Q 33
0
2fe2d2b9e8e4 Uploaded tool tarball.
devteam
parents:
diff changeset
11 #end if
2
bdf1ce174e39 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 1
diff changeset
12 ]]>
bdf1ce174e39 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 1
diff changeset
13 </command>
0
2fe2d2b9e8e4 Uploaded tool tarball.
devteam
parents:
diff changeset
14
2
bdf1ce174e39 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 1
diff changeset
15 <inputs>
bdf1ce174e39 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 1
diff changeset
16 <param format="fasta,fastqsanger,fastqsolexa,fastqillumina" name="input" type="data" label="Library to clip" />
0
2fe2d2b9e8e4 Uploaded tool tarball.
devteam
parents:
diff changeset
17
2
bdf1ce174e39 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 1
diff changeset
18 <param name="minlength" type="integer" value="15">
bdf1ce174e39 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 1
diff changeset
19 <label>Minimum sequence length (after clipping, sequences shorter than this length will be discarded)</label>
bdf1ce174e39 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 1
diff changeset
20 </param>
0
2fe2d2b9e8e4 Uploaded tool tarball.
devteam
parents:
diff changeset
21
2
bdf1ce174e39 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 1
diff changeset
22 <conditional name="clip_source">
bdf1ce174e39 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 1
diff changeset
23 <param name="clip_source_list" type="select" label="Source">
bdf1ce174e39 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 1
diff changeset
24 <option value="prebuilt" selected="true">Standard (select from the list below)</option>
bdf1ce174e39 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 1
diff changeset
25 <option value="user">Enter custom sequence</option>
bdf1ce174e39 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 1
diff changeset
26 </param>
bdf1ce174e39 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 1
diff changeset
27
bdf1ce174e39 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 1
diff changeset
28 <when value="user">
bdf1ce174e39 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 1
diff changeset
29 <param name="clip_sequence" label="Enter custom clipping sequence" type="text" value="AATTGGCC" />
bdf1ce174e39 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 1
diff changeset
30 </when>
0
2fe2d2b9e8e4 Uploaded tool tarball.
devteam
parents:
diff changeset
31
2
bdf1ce174e39 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 1
diff changeset
32 <when value="prebuilt">
bdf1ce174e39 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 1
diff changeset
33 <param name="clip_sequence" type="select" label="Choose Adapter">
bdf1ce174e39 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 1
diff changeset
34 <options from_file="fastx_clipper_sequences.txt">
bdf1ce174e39 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 1
diff changeset
35 <column name="name" index="1"/>
bdf1ce174e39 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 1
diff changeset
36 <column name="value" index="0"/>
bdf1ce174e39 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 1
diff changeset
37 </options>
bdf1ce174e39 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 1
diff changeset
38 </param>
bdf1ce174e39 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 1
diff changeset
39 </when>
bdf1ce174e39 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 1
diff changeset
40 </conditional>
0
2fe2d2b9e8e4 Uploaded tool tarball.
devteam
parents:
diff changeset
41
2
bdf1ce174e39 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 1
diff changeset
42 <param name="keepdelta" type="integer" value="0">
bdf1ce174e39 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 1
diff changeset
43 <label>enter non-zero value to keep the adapter sequence and x bases that follow it</label>
bdf1ce174e39 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 1
diff changeset
44 <help>use this for hairpin barcoding. keep at 0 unless you know what you're doing.</help>
bdf1ce174e39 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 1
diff changeset
45 </param>
0
2fe2d2b9e8e4 Uploaded tool tarball.
devteam
parents:
diff changeset
46
2
bdf1ce174e39 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 1
diff changeset
47 <param name="KEEP_N" type="select" label="Discard sequences with unknown (N) bases">
bdf1ce174e39 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 1
diff changeset
48 <option value="">Yes</option>
bdf1ce174e39 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 1
diff changeset
49 <option value="-n">No</option>
bdf1ce174e39 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 1
diff changeset
50 </param>
0
2fe2d2b9e8e4 Uploaded tool tarball.
devteam
parents:
diff changeset
51
2
bdf1ce174e39 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 1
diff changeset
52 <param name="DISCARD_OPTIONS" type="select" label="Output options">
bdf1ce174e39 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 1
diff changeset
53 <option value="-c">Output only clipped sequences (i.e. sequences which contained the adapter)</option>
bdf1ce174e39 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 1
diff changeset
54 <option value="-C">Output only non-clipped sequences (i.e. sequences which did not contained the adapter)</option>
bdf1ce174e39 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 1
diff changeset
55 <option value="">Output both clipped and non-clipped sequences</option>
bdf1ce174e39 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 1
diff changeset
56 </param>
bdf1ce174e39 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 1
diff changeset
57 </inputs>
bdf1ce174e39 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 1
diff changeset
58 <outputs>
bdf1ce174e39 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 1
diff changeset
59 <data format_source="input" name="output" metadata_source="input" />
bdf1ce174e39 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 1
diff changeset
60 </outputs>
bdf1ce174e39 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 1
diff changeset
61 <tests>
bdf1ce174e39 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 1
diff changeset
62 <test>
bdf1ce174e39 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 1
diff changeset
63 <param name="input" value="fastx_clipper1.fastq" ftype="fastqsolexa"/>
bdf1ce174e39 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 1
diff changeset
64 <param name="maxmismatches" value="2" />
bdf1ce174e39 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 1
diff changeset
65 <param name="minlength" value="15" />
bdf1ce174e39 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 1
diff changeset
66 <param name="clip_source_list" value="user" />
bdf1ce174e39 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 1
diff changeset
67 <param name="clip_sequence" value="CAATTGGTTAATCCCCCTATATA" />
bdf1ce174e39 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 1
diff changeset
68 <param name="keepdelta" value="0" />
bdf1ce174e39 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 1
diff changeset
69 <param name="KEEP_N" value="-n" />
bdf1ce174e39 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 1
diff changeset
70 <param name="DISCARD_OPTIONS" value="-c" />
bdf1ce174e39 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 1
diff changeset
71 <output name="output" ftype="fastqsolexa" file="fastx_clipper1a.out" />
bdf1ce174e39 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 1
diff changeset
72 </test>
bdf1ce174e39 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 1
diff changeset
73 </tests>
bdf1ce174e39 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 1
diff changeset
74 <help>
0
2fe2d2b9e8e4 Uploaded tool tarball.
devteam
parents:
diff changeset
75 **What it does**
2fe2d2b9e8e4 Uploaded tool tarball.
devteam
parents:
diff changeset
76
2fe2d2b9e8e4 Uploaded tool tarball.
devteam
parents:
diff changeset
77 This tool clips adapters from the 3'-end of the sequences in a FASTA/FASTQ file.
2fe2d2b9e8e4 Uploaded tool tarball.
devteam
parents:
diff changeset
78
2fe2d2b9e8e4 Uploaded tool tarball.
devteam
parents:
diff changeset
79 --------
2fe2d2b9e8e4 Uploaded tool tarball.
devteam
parents:
diff changeset
80
2fe2d2b9e8e4 Uploaded tool tarball.
devteam
parents:
diff changeset
81
2fe2d2b9e8e4 Uploaded tool tarball.
devteam
parents:
diff changeset
82 **Clipping Illustration:**
2fe2d2b9e8e4 Uploaded tool tarball.
devteam
parents:
diff changeset
83
2
bdf1ce174e39 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 1
diff changeset
84 .. image:: fastx_clipper_illustration.png
0
2fe2d2b9e8e4 Uploaded tool tarball.
devteam
parents:
diff changeset
85
2fe2d2b9e8e4 Uploaded tool tarball.
devteam
parents:
diff changeset
86 **Clipping Example:**
2fe2d2b9e8e4 Uploaded tool tarball.
devteam
parents:
diff changeset
87
2
bdf1ce174e39 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 1
diff changeset
88 .. image:: fastx_clipper_example.png
0
2fe2d2b9e8e4 Uploaded tool tarball.
devteam
parents:
diff changeset
89
2fe2d2b9e8e4 Uploaded tool tarball.
devteam
parents:
diff changeset
90 **In the above example:**
2fe2d2b9e8e4 Uploaded tool tarball.
devteam
parents:
diff changeset
91
2fe2d2b9e8e4 Uploaded tool tarball.
devteam
parents:
diff changeset
92 * Sequence no. 1 was discarded since it wasn't clipped (i.e. didn't contain the adapter sequence). (**Output** parameter).
2fe2d2b9e8e4 Uploaded tool tarball.
devteam
parents:
diff changeset
93 * Sequence no. 5 was discarded --- it's length (after clipping) was shorter than 15 nt (**Minimum Sequence Length** parameter).
2fe2d2b9e8e4 Uploaded tool tarball.
devteam
parents:
diff changeset
94
2fe2d2b9e8e4 Uploaded tool tarball.
devteam
parents:
diff changeset
95 ------
2fe2d2b9e8e4 Uploaded tool tarball.
devteam
parents:
diff changeset
96
2fe2d2b9e8e4 Uploaded tool tarball.
devteam
parents:
diff changeset
97 This tool is based on `FASTX-toolkit`__ by Assaf Gordon.
2fe2d2b9e8e4 Uploaded tool tarball.
devteam
parents:
diff changeset
98
2fe2d2b9e8e4 Uploaded tool tarball.
devteam
parents:
diff changeset
99 .. __: http://hannonlab.cshl.edu/fastx_toolkit/
2
bdf1ce174e39 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 1
diff changeset
100 </help>
0
2fe2d2b9e8e4 Uploaded tool tarball.
devteam
parents:
diff changeset
101 </tool>