comparison parallel_align_seqs_pynast.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_align_seqs_pynast" name="parallel_align_seqs_pynast" version="1.2.0">
2 <description>Parallel sequence alignment using PyNAST</description>
3 <requirements>
4 <requirement type="binary">parallel_align_seqs_pynast.py</requirement>
5 </requirements>
6 <command interpreter="python">
7 qiime_wrapper.py
8 --galaxy_tmpdir='$__new_file_path__'
9 parallel_align_seqs_pynast.py
10 --input_fasta_fp=$input_fasta_fp
11 --output_dir=$__new_file_path__
12 --template_fp=$template_fp
13 --pairwise_alignment_method=$pairwise_alignment_method
14 --blast_db=$blast_db
15 --min_length=$min_length
16 --min_percent_id=$min_percent_id
17 --align_seqs_fp=$align_seqs_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="path to the input fasta file [REQUIRED]"/>
32 <param name="template_fp" type="data" format="txt" label="template_fp"
33 help="Filepath for template against [REQUIRED]"/>
34 <param name="pairwise_alignment_method" type="select" label="pairwise_alignment_method"
35 help="Method to use for pairwise alignments [default: uclust]">
36 <option value="muscle">muscle</option>
37 <option value="pair_hmm">pair_hmm</option>
38 <option value="clustal">clustal</option>
39 <option value="blast">blast</option>
40 <option value="uclust" selected="true">uclust</option>
41 <option value="mafft">mafft</option>
42 </param>
43 <param name="blast_db" type="text" label="blast_db"
44 help="Database to blast against [default: created on-the-fly from template_alignment]"/>
45 <param name="min_length" type="integer" value="150" label="min_length"
46 help="Minimum sequence length to include in alignment [default: 150]"/>
47 <param name="min_percent_id" type="float" value="75.0" label="min_percent_id"
48 help="Minimum percent sequence identity to closest blast hit to include sequence in alignment [default: 75.0]"/>
49 <param name="align_seqs_fp" type="data" format="txt" label="align_seqs_fp"
50 help="full path to Qiime/scripts/align_seqs.py [default: /usr/local/lib/python2.6/site-packages/scripts/align_seqs.py]"/>
51 <param name="jobs_to_start" type="integer" value="1" label="jobs_to_start"
52 help="Number of jobs to start [default: 1]"/>
53 <param name="poller_fp" type="data" format="txt" label="poller_fp"
54 help="full path to qiime/parallel/poller.py [default: /usr/local/lib/python2.6/site-packages/scripts/poller.py]"/>
55 <param name="retain_temp_files" type="boolean" truevalue="--retain_temp_files" falsevalue="" checked="false" label="retain_temp_files"
56 help="retain temporary files after runs complete (useful for debugging) [default: False]"/>
57 <param name="suppress_submit_jobs" type="boolean" truevalue="--suppress_submit_jobs" falsevalue="" checked="false" label="suppress_submit_jobs"
58 help="Only split input and write commands file - don't submit jobs [default: False]"/>
59 <param name="poll_directly" type="boolean" truevalue="--poll_directly" falsevalue="" checked="false" label="poll_directly"
60 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]"/>
61 <param name="cluster_jobs_fp" type="data" format="txt" label="cluster_jobs_fp"
62 help="path to cluster_jobs.py script [default: /usr/local/lib/python2.6/site-packages/scripts/start_parallel_jobs.py]"/>
63 <param name="suppress_polling" type="boolean" truevalue="--suppress_polling" falsevalue="" checked="false" label="suppress_polling"
64 help="suppress polling of jobs and merging of results upon completion [default: False]"/>
65 <param name="job_prefix" type="text" label="job_prefix"
66 help="job prefix [default: descriptive prefix + random chars]"/>
67 <param name="python_exe_fp" type="data" format="txt" label="python_exe_fp"
68 help="full path to python executable [default: python]"/>
69 <param name="seconds_to_sleep" type="integer" value="60" label="seconds_to_sleep"
70 help="Number of seconds to sleep between checks for run completion when polling runs [default: 60]"/>
71 </inputs>
72 <outputs>
73
74 </outputs>
75 <tests>
76 </tests>
77 <help>
78
79 </help>
80 </tool>
81