# HG changeset patch # User crs4 # Date 1383132844 14400 # Node ID ec6f5279dc0182401b7197379e2eeeb131e8c42d Uploaded diff -r 000000000000 -r ec6f5279dc01 COPYING --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/COPYING Wed Oct 30 07:34:04 2013 -0400 @@ -0,0 +1,23 @@ +Copyright © 2013 CRS4 Srl. http://www.crs4.it/ +Created by: +Massimiliano Orsini +Nicola Soranzo + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff -r 000000000000 -r ec6f5279dc01 muscle.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/muscle.xml Wed Oct 30 07:34:04 2013 -0400 @@ -0,0 +1,50 @@ + + multiple aligner + + muscle + + muscle -version + + FASTA_MAX_SIZE=\${FASTA_MAX_SIZE:-100000}; + 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; + muscle -quiet -in $multifasta -out $output -log $log + #if str($maxiters) + -maxiters $maxiters + #end if + #if $diags + -diags + #end if + + + + + + + + + + + +**What it does** + +This tool performs multiple sequence alignment using MUSCLE. + +**License and citation** + +This Galaxy tool is Copyright © 2013 `CRS4 Srl.`_ and is released under the `MIT license`_. + +.. _CRS4 Srl.: http://www.crs4.it/ +.. _MIT license: http://opensource.org/licenses/MIT + +If you use this tool in Galaxy, please cite |Cuccuru2013|_. + +.. |Cuccuru2013| replace:: Cuccuru, G., Orsini, M., Pinna, A., Sbardellati, A., Soranzo, N., Travaglione, A., Uva, P., Zanetti, G., Fotia, G. (2013) Orione, a web-based framework for NGS analysis in microbiology. *Submitted* +.. _Cuccuru2013: http://orione.crs4.it/ + +This tool uses `MUSCLE`_, which is licensed separately. Please cite |Edgar2004|_. + +.. _MUSCLE: http://drive5.com/muscle/ +.. |Edgar2004| replace:: Edgar, R.C. (2004) MUSCLE: multiple sequence alignment with high accuracy and high throughput. *Nucleic Acids Res.* 32(5), 1792-1797 +.. _Edgar2004: http://nar.oxfordjournals.org/content/32/5/1792 + + diff -r 000000000000 -r ec6f5279dc01 tool_dependencies.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tool_dependencies.xml Wed Oct 30 07:34:04 2013 -0400 @@ -0,0 +1,27 @@ + + + + + + http://www.drive5.com/muscle/downloads3.8.31/muscle3.8.31_src.tar.gz + + sed -i 's/-static//g' src/mk + make -C src/ + + src/muscle + $INSTALL_DIR/bin + + + $INSTALL_DIR/bin + + + 100000 + + + + +MUSCLE may require a lot of memory and computation time for a medium/large input multi-FASTA file, therefore a limit on the file size is enforced by the tool. +Change the FASTA_MAX_SIZE variable in the installed env.sh file to adjust this limit to your needs and available resources. + + +