Mercurial > repos > crs4 > muscle
annotate muscle.xml @ 1:533b3b2a1e66 draft default tip
Update Orione citation. Add <citations> tag. Use package_muscle_3_8_31 from iuc.
author | crs4 |
---|---|
date | Thu, 04 Jun 2015 11:34:04 -0400 |
parents | ec6f5279dc01 |
children |
rev | line source |
---|---|
1
533b3b2a1e66
Update Orione citation. Add <citations> tag. Use package_muscle_3_8_31 from iuc.
crs4
parents:
0
diff
changeset
|
1 <tool id="muscle" name="MUSCLE" version="0.0.11"> |
0 | 2 <description>multiple aligner</description> |
3 <requirements> | |
4 <requirement type="package" version="3.8.31">muscle</requirement> | |
1
533b3b2a1e66
Update Orione citation. Add <citations> tag. Use package_muscle_3_8_31 from iuc.
crs4
parents:
0
diff
changeset
|
5 <requirement type="set_environment">FASTA_MAX_SIZE</requirement> |
0 | 6 </requirements> |
7 <version_command>muscle -version</version_command> | |
8 <command> | |
9 FASTA_MAX_SIZE=\${FASTA_MAX_SIZE:-100000}; | |
10 if [ `stat -c "%s" $multifasta` -gt \$FASTA_MAX_SIZE ]; then echo "Multi-FASTA file is bigger than the configured limit for MUSCLE (\$FASTA_MAX_SIZE bytes)." >&2; exit 1; fi; | |
11 muscle -quiet -in $multifasta -out $output -log $log | |
12 #if str($maxiters) | |
13 -maxiters $maxiters | |
14 #end if | |
15 #if $diags | |
16 -diags | |
17 #end if | |
18 </command> | |
19 <inputs> | |
20 <param name="multifasta" type="data" format="fasta" label="Multi-FASTA file" /> | |
21 <param name="maxiters" type="integer" value="2" min="1" max="16" optional="true" label="Maximum number of iterations to run (-maxiters)" help="Set to 2 for large datasets where refinement (iterations 3+) is too slow." /> | |
22 <param name="diags" type="boolean" label="Diagonal optimization (-diags)" help="Speed up the algorithm, especially for closely related sequences, at the expense of some reduction in accuracy" /> | |
23 </inputs> | |
24 <outputs> | |
25 <data name="output" format="fasta" label="${tool.name} on ${on_string}: aligned sequences"/> | |
26 <data name="log" format="txt" label="${tool.name} on ${on_string}: log"/> | |
27 </outputs> | |
1
533b3b2a1e66
Update Orione citation. Add <citations> tag. Use package_muscle_3_8_31 from iuc.
crs4
parents:
0
diff
changeset
|
28 <tests> |
533b3b2a1e66
Update Orione citation. Add <citations> tag. Use package_muscle_3_8_31 from iuc.
crs4
parents:
0
diff
changeset
|
29 </tests> |
0 | 30 <help> |
31 **What it does** | |
32 | |
33 This tool performs multiple sequence alignment using MUSCLE. | |
34 | |
35 **License and citation** | |
36 | |
1
533b3b2a1e66
Update Orione citation. Add <citations> tag. Use package_muscle_3_8_31 from iuc.
crs4
parents:
0
diff
changeset
|
37 This Galaxy tool is Copyright © 2013-2014 `CRS4 Srl.`_ and is released under the `MIT license`_. |
0 | 38 |
39 .. _CRS4 Srl.: http://www.crs4.it/ | |
40 .. _MIT license: http://opensource.org/licenses/MIT | |
41 | |
1
533b3b2a1e66
Update Orione citation. Add <citations> tag. Use package_muscle_3_8_31 from iuc.
crs4
parents:
0
diff
changeset
|
42 You can use this tool only if you agree to the license terms of: `MUSCLE`_. |
0 | 43 |
44 .. _MUSCLE: http://drive5.com/muscle/ | |
1
533b3b2a1e66
Update Orione citation. Add <citations> tag. Use package_muscle_3_8_31 from iuc.
crs4
parents:
0
diff
changeset
|
45 |
533b3b2a1e66
Update Orione citation. Add <citations> tag. Use package_muscle_3_8_31 from iuc.
crs4
parents:
0
diff
changeset
|
46 If you use this tool, please cite: |
533b3b2a1e66
Update Orione citation. Add <citations> tag. Use package_muscle_3_8_31 from iuc.
crs4
parents:
0
diff
changeset
|
47 |
533b3b2a1e66
Update Orione citation. Add <citations> tag. Use package_muscle_3_8_31 from iuc.
crs4
parents:
0
diff
changeset
|
48 - |Cuccuru2014|_ |
533b3b2a1e66
Update Orione citation. Add <citations> tag. Use package_muscle_3_8_31 from iuc.
crs4
parents:
0
diff
changeset
|
49 - |Edgar2004|_. |
533b3b2a1e66
Update Orione citation. Add <citations> tag. Use package_muscle_3_8_31 from iuc.
crs4
parents:
0
diff
changeset
|
50 |
533b3b2a1e66
Update Orione citation. Add <citations> tag. Use package_muscle_3_8_31 from iuc.
crs4
parents:
0
diff
changeset
|
51 .. |Cuccuru2014| replace:: Cuccuru, G., Orsini, M., Pinna, A., Sbardellati, A., Soranzo, N., Travaglione, A., Uva, P., Zanetti, G., Fotia, G. (2014) Orione, a web-based framework for NGS analysis in microbiology. *Bioinformatics* 30(13), 1928-1929 |
533b3b2a1e66
Update Orione citation. Add <citations> tag. Use package_muscle_3_8_31 from iuc.
crs4
parents:
0
diff
changeset
|
52 .. _Cuccuru2014: http://bioinformatics.oxfordjournals.org/content/30/13/1928 |
0 | 53 .. |Edgar2004| replace:: Edgar, R.C. (2004) MUSCLE: multiple sequence alignment with high accuracy and high throughput. *Nucleic Acids Res.* 32(5), 1792-1797 |
54 .. _Edgar2004: http://nar.oxfordjournals.org/content/32/5/1792 | |
55 </help> | |
1
533b3b2a1e66
Update Orione citation. Add <citations> tag. Use package_muscle_3_8_31 from iuc.
crs4
parents:
0
diff
changeset
|
56 <citations> |
533b3b2a1e66
Update Orione citation. Add <citations> tag. Use package_muscle_3_8_31 from iuc.
crs4
parents:
0
diff
changeset
|
57 <citation type="doi">10.1093/nar/gkh340</citation> |
533b3b2a1e66
Update Orione citation. Add <citations> tag. Use package_muscle_3_8_31 from iuc.
crs4
parents:
0
diff
changeset
|
58 </citations> |
0 | 59 </tool> |