comparison mothur/tools/mothur/make.fastq.xml @ 35:95d75b35e4d2

Updated tools to use Mothur 1.33. Added some misc. fixes and updates (blast repository, tool fixes)
author certain cat
date Fri, 31 Oct 2014 15:09:32 -0400
parents 49058b1f8d3f
children
comparison
equal deleted inserted replaced
34:1be61ceb20d7 35:95d75b35e4d2
1 <tool id="mothur_make_fastq" name="Make.fastq" version="1.19.0"> 1 <tool id="mothur_make_fastq" name="Make.fastq" version="1.20.0">
2 <description>Convert fasta and quality to fastq</description> 2 <description>Convert fasta and quality to fastq</description>
3 <command interpreter="python"> 3 <command interpreter="python">
4 mothur_wrapper.py 4 mothur_wrapper.py
5 --cmd='make.fastq' 5 --cmd='make.fastq'
6 --result='^mothur.\S+\.logfile$:'$logfile,'^\S+\.fastq$:'$fastq 6 --result='^mothur.\S+\.logfile$:'$logfile,'^\S+\.fastq$:'$fastq
7 --outputdir='$logfile.extra_files_path' 7 --outputdir='$logfile.extra_files_path'
8 --fasta=$fasta 8 --fasta=$fasta
9 --qfile=$qfile 9 --qfile=$qfile
10 </command> 10 #if $chooseformat.use:
11 <inputs> 11 --format=$chooseformat.format
12 <param name="fasta" type="data" format="fasta" label="fasta - Fasta Sequence file"/> 12 #end if
13 <param name="qfile" type="data" format="qual" label="qfile - Sequence Quality file"/> 13 </command>
14 </inputs> 14 <inputs>
15 <outputs> 15 <param name="fasta" type="data" format="fasta" label="fasta - Fasta Sequence file"/>
16 <data format="html" name="logfile" label="${tool.name} on ${on_string}: logfile" /> 16 <param name="qfile" type="data" format="qual" label="qfile - Sequence Quality file"/>
17 <data format="fastq" name="fastq" label="${tool.name} on ${on_string}: fastq">
18 <change_format>
19 <when input="qfile.ext" value="qual454" format="fastqsanger"/>
20 <when input="qfile.ext" value="qualillumina" format="fastqillumina"/>
21 <when input="qfile.ext" value="qualsolexa" format="fastqsolexa"/>
22 <when input="qfile.ext" value="qualsolid" format="fastqcssanger"/>
23 </change_format>
24 </data>
25 </outputs>
26 <requirements>
27 <requirement type="package" version="1.27">mothur</requirement>
28 </requirements>
29 <tests>
30 </tests>
31 <help>
32 **Mothur Overview**
33 17
34 Mothur_, initiated by Dr. Patrick Schloss and his software development team 18 <conditional name = "chooseformat">
35 in the Department of Microbiology and Immunology at The University of Michigan, 19 <param name = "use" type ="boolean" truevalue ="yes" falsevalue="no" label="choose what format your sequences are"/>
36 provides bioinformatics for the microbial ecology community.
37 20
38 .. _Mothur: http://www.mothur.org/wiki/Main_Page 21 <when value = "yes">
22 <param name = "format" type = "select" optional = "true" multiple = "true">
23 <option value = "sanger" selected="true">sanger</option>
24 <option value = "solexa">solexa</option>
25 <option value = "illumina">illumina</option>
26 <option value = "illumina">illumina1.8+</option>
27 </param>
28 </when>
29 <when value = "no"/>
30 </conditional>
31 </inputs>
32 <outputs>
33 <data format="html" name="logfile" label="${tool.name} on ${on_string}: logfile" />
34 <data format="fastq" name="fastq" label="${tool.name} on ${on_string}: fastq">
35 <change_format>
36 <when input="qfile.ext" value="qual454" format="fastqsanger"/>
37 <when input="qfile.ext" value="qualillumina" format="fastqillumina"/>
38 <when input="qfile.ext" value="qualsolexa" format="fastqsolexa"/>
39 <when input="qfile.ext" value="qualsolid" format="fastqcssanger"/>
40 </change_format>
41 </data>
42 </outputs>
43 <requirements>
44 <requirement type="package" version="1.33">mothur</requirement>
45 </requirements>
46 <tests>
47 </tests>
48 <help>
49 **Mothur Overview**
39 50
40 **Command Documenation** 51 Mothur_, initiated by Dr. Patrick Schloss and his software development team
52 in the Department of Microbiology and Immunology at The University of Michigan,
53 provides bioinformatics for the microbial ecology community.
41 54
42 The fastq.info_ command reads a fasta file and quality file and creates a fastq. 55 .. _Mothur: http://www.mothur.org/wiki/Main_Page
56
57 **Command Documenation**
58
59 The fastq.info_ command reads a fasta file and quality file and creates a fastq.
43 60
44 61
45 .. _fastq.info: http://www.mothur.org/wiki/Make.fastq 62 .. _fastq.info: http://www.mothur.org/wiki/Make.fastq
46 63
47 </help> 64 </help>
48 </tool> 65 </tool>