Repository 'trinity_super_transcripts'
hg clone https://toolshed.g2.bx.psu.edu/repos/iuc/trinity_super_transcripts

Changeset 4:6723249ce1bd (2019-11-14)
Previous changeset 3:b34de8dc0f64 (2019-11-01) Next changeset 5:6f480aee5877 (2020-02-11)
Commit message:
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit f3d9db3063d2cba26e6fbe82a3eee4e1a6fe0bd5"
modified:
README.rst
b
diff -r b34de8dc0f64 -r 6723249ce1bd README.rst
--- a/README.rst Fri Nov 01 08:10:22 2019 -0400
+++ b/README.rst Thu Nov 14 04:05:04 2019 -0500
b
@@ -9,7 +9,14 @@
 By default, this tool is configured to limit the memory consumption to 1G.
 You might need to lower this limit if the machine(s) executing the jobs have less memory available.
 If you have a lot of reads to assemble and a machine with enough memory, you can increase it.
-In both cases, you can set the GALAXY_MEMORY_MB environmental variable in the destination section of the job_conf.xml file::
+
+This tool uses the GALAXY_MEMORY_MB environmental variable to limit the its memory usage. If you use a supported cluster type, you just need to limit the memory in the destination section of the job_conf.xml file to the amount of available memory (in MB), for example with a Slurm cluster::
+
+    <destination id="cluster_high_mem" runner="slurm
+        <param id="nativeSpecification">--mem=1024</param>
+    </destination>
+
+If you cluster type does not support memory limit detection, you can also set manually the GALAXY_MEMORY_MB environmental variable in the destination section of the job_conf.xml file to the amount of available memory (in MB)::
 
     <?xml version="1.0"?>
     <!-- A sample job config that explicitly configures job running the way it is configured by default (if there is no explicit config). -->
@@ -22,7 +29,7 @@
         </handlers>
         <destinations>
             <destination id="local" runner="local">
-                <env id="GALAXY_MEMORY_MB">1G</env>
+                <env id="GALAXY_MEMORY_MB">1024</env>
             </destination>
         </destinations>
     </job_conf>