comparison parallel_pick_otus_blast.xml @ 0:e5c3175506b7 default tip

Initial tool configs for qiime, most need work.
author Jim Johnson <jj@umn.edu>
date Sun, 17 Jul 2011 10:30:11 -0500
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:e5c3175506b7
1 <tool id="parallel_pick_otus_blast" name="parallel_pick_otus_blast" version="1.2.0">
2 <description>Parallel pick otus using BLAST</description>
3 <requirements>
4 <requirement type="binary">parallel_pick_otus_blast.py</requirement>
5 </requirements>
6 <command interpreter="python">
7 qiime_wrapper.py
8 --galaxy_tmpdir='$__new_file_path__'
9 parallel_pick_otus_blast.py
10 --input_fasta_fp=$input_fasta_fp
11 --output_dir=$__new_file_path__
12 --max_e_value=$max_e_value
13 --similarity=$similarity
14 --refseqs_fp=$refseqs_fp
15 --blast_db=$blast_db
16 --min_aligned_percent=$min_aligned_percent
17 --pick_otus_fp=$pick_otus_fp
18 --jobs_to_start=$jobs_to_start
19 --poller_fp=$poller_fp
20 $retain_temp_files
21 $suppress_submit_jobs
22 $poll_directly
23 --cluster_jobs_fp=$cluster_jobs_fp
24 $suppress_polling
25 --job_prefix=$job_prefix
26 --python_exe_fp=$python_exe_fp
27 --seconds_to_sleep=$seconds_to_sleep
28 </command>
29 <inputs>
30 <param name="input_fasta_fp" type="data" format="fasta" label="input_fasta_fp"
31 help="full path to input_fasta_fp [REQUIRED]"/>
32 <param name="max_e_value" type="text" value="1e-10" label="max_e_value"
33 help="Max E-value [default: 1e-10]"/>
34 <param name="similarity" type="float" value="0.97" label="similarity"
35 help="Sequence similarity threshold [default: 0.97]"/>
36 <param name="refseqs_fp" type="data" format="txt" label="refseqs_fp"
37 help="full path to template alignment [default: ('NO', 'DEFAULT')]"/>
38 <param name="blast_db" type="text" label="blast_db"
39 help="database to blast against [default: ('NO', 'DEFAULT')]"/>
40 <param name="min_aligned_percent" type="float" value="0.5" label="min_aligned_percent"
41 help="Minimum percent of query sequence that can be aligned to consider a hit (BLAST OTU picker only) [default: 0.5]"/>
42 <param name="pick_otus_fp" type="data" format="txt" label="pick_otus_fp"
43 help="full path to scripts/pick_otus.py [default: /usr/local/lib/python2.6/site-packages/scripts/pick_otus.py]"/>
44 <param name="jobs_to_start" type="integer" value="1" label="jobs_to_start"
45 help="Number of jobs to start [default: 1]"/>
46 <param name="poller_fp" type="data" format="txt" label="poller_fp"
47 help="full path to qiime/parallel/poller.py [default: /usr/local/lib/python2.6/site-packages/scripts/poller.py]"/>
48 <param name="retain_temp_files" type="boolean" truevalue="--retain_temp_files" falsevalue="" checked="false" label="retain_temp_files"
49 help="retain temporary files after runs complete (useful for debugging) [default: False]"/>
50 <param name="suppress_submit_jobs" type="boolean" truevalue="--suppress_submit_jobs" falsevalue="" checked="false" label="suppress_submit_jobs"
51 help="Only split input and write commands file - don't submit jobs [default: False]"/>
52 <param name="poll_directly" type="boolean" truevalue="--poll_directly" falsevalue="" checked="false" label="poll_directly"
53 help="Poll directly for job completion rather than running poller as a separate job. If -T is specified this script will not return until all jobs have completed. [default: False]"/>
54 <param name="cluster_jobs_fp" type="data" format="txt" label="cluster_jobs_fp"
55 help="path to cluster_jobs.py script [default: /usr/local/lib/python2.6/site-packages/scripts/start_parallel_jobs.py]"/>
56 <param name="suppress_polling" type="boolean" truevalue="--suppress_polling" falsevalue="" checked="false" label="suppress_polling"
57 help="suppress polling of jobs and merging of results upon completion [default: False]"/>
58 <param name="job_prefix" type="text" label="job_prefix"
59 help="job prefix [default: descriptive prefix + random chars]"/>
60 <param name="python_exe_fp" type="data" format="txt" label="python_exe_fp"
61 help="full path to python executable [default: python]"/>
62 <param name="seconds_to_sleep" type="integer" value="60" label="seconds_to_sleep"
63 help="Number of seconds to sleep between checks for run completion when polling runs [default: 60]"/>
64 </inputs>
65 <outputs>
66
67 </outputs>
68 <tests>
69 </tests>
70 <help>
71
72 </help>
73 </tool>
74