annotate lucy/lucy.xml @ 0:38e2b656eb28 default tip

Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
author edward-kirton
date Tue, 07 Jun 2011 17:27:29 -0400
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
38e2b656eb28 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
1 <tool id="lucy" name="LUCY trimmer" version='1.0.1' description="Less Useful Chunks Yank">
38e2b656eb28 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
2 <command interpreter='perl'>psub -l galaxy_normal.c --fasta $fasta_infile --cat $fasta_outfile --cat $qual_outfile
38e2b656eb28 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
3 lucy -quiet -xtra 8
38e2b656eb28 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
4 -error $max_avg_error $max_error_at_ends
38e2b656eb28 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
5 -bracket $bracket_window_size $bracket_max_avg_error
38e2b656eb28 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
6 #if $vector.vector_select == '1':
38e2b656eb28 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
7 -vector $vector.vector_fasta_infile $vector.splice_fasta_infile
38e2b656eb28 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
8 #end if
38e2b656eb28 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
9 -output $fasta_outfile $qual_outfile
38e2b656eb28 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
10 $fasta_infile $qual_infile
38e2b656eb28 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
11 </command>
38e2b656eb28 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
12
38e2b656eb28 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
13 <inputs>
38e2b656eb28 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
14 <param name="fasta_infile" type="data" format="fasta" label="Read sequences (Fasta)"/>
38e2b656eb28 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
15 <param name="qual_infile" type="data" format="qual454" label="Qual scores input file (qual454)"/>
38e2b656eb28 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
16 <param name="max_avg_error" type="text" value='.007' label="max average error"/>
38e2b656eb28 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
17 <param name="max_error_at_ends" type="text" value='.007' label="max error at ends"/>
38e2b656eb28 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
18 <param name="bracket_window_size" type="integer" value='20' label="bracket window size"/>
38e2b656eb28 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
19 <param name="bracket_max_avg_error" type="text" value='.007' label="bracket max average error"/>
38e2b656eb28 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
20
38e2b656eb28 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
21 <conditional name='vector'>
38e2b656eb28 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
22 <param name="vector_select" type="select" label="Do you have vector sequence files?" >
38e2b656eb28 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
23 <option value="0">no, just trim by quality alone</option>
38e2b656eb28 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
24 <option value="1">yes</option>
38e2b656eb28 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
25 </param>
38e2b656eb28 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
26 <when value='1'>
38e2b656eb28 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
27 <param name="vector_fasta_infile" type="data" format="fasta" label="Complete cloning vector sequence (Fasta)"/>
38e2b656eb28 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
28 <param name="splice_fasta_infile" type="data" format="fasta" label="Subsequence before and after each insert site (Fasta)"/>
38e2b656eb28 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
29 </when>
38e2b656eb28 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
30 <when value='0'>
38e2b656eb28 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
31 </when>
38e2b656eb28 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
32 </conditional>
38e2b656eb28 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
33 </inputs>
38e2b656eb28 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
34 <outputs>
38e2b656eb28 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
35 <data name="fasta_outfile" format="fasta"/>
38e2b656eb28 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
36 <data name="qual_outfile" format="qual454"/>
38e2b656eb28 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
37 </outputs>
38e2b656eb28 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
38 <help>
38e2b656eb28 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
39 Less Useful Chunks Yank (lucy) is a utility that prepares raw DNA sequence fragments for sequence assembly.
38e2b656eb28 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
40 It performs quality end-trimming and optionally removal of primer/vector sequences or filtering contamination.
38e2b656eb28 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
41
38e2b656eb28 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
42 ---
38e2b656eb28 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
43
38e2b656eb28 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
44 Each sequence in the output sequence file begins with a header that includes its name, three pass along
38e2b656eb28 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
45 clone length values to the fragment assembly program, and a left and right marker denoting the begin and
38e2b656eb28 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
46 end of the good quality, vector free region. The following is an example of lucy output::
38e2b656eb28 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
47
38e2b656eb28 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
48 &gt;GCCAA03TF 1500 3000 2000 43 490
38e2b656eb28 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
49 AGCCAAGTTTGCAGCCCTGCAGGTCGACTCTAGAGGATCCCCAGGATGATCAGCCACATT
38e2b656eb28 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
50 GGGACTGAGACACGGCCCAAACTCCTACGGGAGGCAGCAGTGGGGAATCTTGCGCAATGG
38e2b656eb28 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
51 GCGAAAGCCTGACGCAGCCATGCCGCGTGAATGATGAAGGTCTTAGGATTGTAAAATTCT
38e2b656eb28 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
52 TTCACCGGGGACGATAATGACGGTACCCGGAGAAGAAGCCCCGGCTAACTTCGTGCCAGC
38e2b656eb28 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
53 ...
38e2b656eb28 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
54
38e2b656eb28 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
55 ---
38e2b656eb28 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
56
38e2b656eb28 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
57 **Manual**
38e2b656eb28 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
58
38e2b656eb28 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
59 http://galaxy.jgi-psf.org/static/manuals/lucy.pdf
38e2b656eb28 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
60
38e2b656eb28 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
61 </help>
38e2b656eb28 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
62 </tool>