# HG changeset patch # User nate # Date 1441138538 14400 # Node ID d0c258caafaf7adf0e45ceb214e0b0d620b44c54 Uploaded diff -r 000000000000 -r d0c258caafaf trinityrnaseq.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/trinityrnaseq.xml Tue Sep 01 16:15:38 2015 -0400 @@ -0,0 +1,120 @@ + + + + (Beta) De novo assembly of RNA-Seq data Using Trinity on PSC's Greenfield + + + bowtie + samtools + java + trinity + + + MEM=`expr "\${GALAXY_SLOTS:-15}" \* 50 - 16` ; + Trinity --max_memory "\${MEM}G" + --CPU "\${GALAXY_SLOTS:-16}" + --bflyHeapSpaceMax "\${MEM}G" + + ## Inputs. + #if str($inputs.paired_or_single) == "paired": + --left $inputs.left_input --right $inputs.right_input + #if $inputs.left_input.ext == 'fa': + --seqType fa + #else: + --seqType fq + #end if + #if str($inputs.library_type) != "undefined": + --SS_lib_type $inputs.library_type + #end if + --group_pairs_distance $inputs.group_pairs_distance + #else: + --single $inputs.input + #if str($inputs.input.ext) == 'fa': + --seqType fa + #else: + --seqType fq + #end if + #if str($inputs.library_type) != "undefined": + --SS_lib_type $inputs.library_type + #end if + #end if + + ## Additional parameters. + #if str($additional_params.use_additional) == "yes": + --min_kmer_cov $additional_params.min_kmer_cov --max_reads_per_graph $additional_params.max_reads_per_graph + #if $additional_params.bfly_opts != 'None': + --bfly_opts " $additional_params.bfly_opts " + #end if + #end if + + ## direct to output + > $trinity_log 2>&1 + + ## if Trinity fails, output the end of the log to stderr for Galaxy, and touch the output file for Pulsar + || (ec=\$? ; cat $trinity_log >&2 ; mkdir -p trinity_out_dir ; touch trinity_out_dir/Trinity.fasta ; exit \$ec) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +.. warning:: This version of Trinity, which runs on Greenfield_ at the `Pittsburgh Supercomputing Center`_, is a **beta** version. It may not be possible to rerun the same version of this tool, Trinity itself, or its other dependencies (Bowtie, SAMtools) in the future. **When rerunning this tool on the same data, it should, but cannot be guaranteed to reproduce the exact same results to the level of certainty as other Galaxy tools.** + +Trinity is a de novo transcript assembler that uses RNA-seq data as input. This tool runs all Trinity_ commands--Inchworm, Chrysalis, and Butterfly--in a single pass. + +.. _Trinity: http://trinityrnaseq.github.io +.. _Pittsburgh Supercomputing Center: http://www.psc.edu +.. _Greenfield: http://www.psc.edu/index.php/resources-for-users/computing-resources/greenfield + +