Trimmomatic-Teaching: Difference between revisions
(Created page with "Category:TeachingCategory:SoftwareCategory:Bioinformatics === Category === Bioinformatics === Program On === Teaching === Version === 0.36 === Au...") |
No edit summary |
||
(One intermediate revision by the same user not shown) | |||
Line 44: | Line 44: | ||
cd $SLURM_SUBMIT_DIR<br> | cd $SLURM_SUBMIT_DIR<br> | ||
ml Trimmomatic/0.36-Java-1.8.0_144<br> | ml Trimmomatic/0.36-Java-1.8.0_144<br> | ||
java-jar$EBROOTTRIMMOMATIC/trimmomatic-0.36.jar <u>[options]</u><br> | java -jar $EBROOTTRIMMOMATIC/trimmomatic-0.36.jar <u>[options]</u><br> | ||
</div> | </div> | ||
In the real submission script, at least all the above underlined values need to be reviewed or to be replaced by the proper values. | In the real submission script, at least all the above underlined values need to be reviewed or to be replaced by the proper values. | ||
Line 60: | Line 60: | ||
<pre class="gcommand"> | <pre class="gcommand"> | ||
ml Trimmomatic/0.36-Java-1.8.0_144 | ml Trimmomatic/0.36-Java-1.8.0_144 | ||
java-jar$EBROOTTRIMMOMATIC/trimmomatic-0.36.jar -h | java -jar $EBROOTTRIMMOMATIC/trimmomatic-0.36.jar -h | ||
Usage: | |||
PE [-version] [-threads <threads>] [-phred33|-phred64] [-trimlog <trimLogFile>] [-quiet] [-validatePairs] [-basein <inputBase> | <inputFile1> <inputFile2>] [-baseout <outputBase> | <outputFile1P> <outputFile1U> <outputFile2P> <outputFile2U>] <trimmer1>... | |||
or: | |||
SE [-version] [-threads <threads>] [-phred33|-phred64] [-trimlog <trimLogFile>] [-quiet] <inputFile> <outputFile> <trimmer1>... | |||
or: | |||
-version | |||
</pre> | </pre> |
Latest revision as of 14:28, 15 August 2018
Category
Bioinformatics
Program On
Teaching
Version
0.36
Author / Distributor
Description
"Trimmomatic performs a variety of useful trimming tasks for illumina paired-end and single ended data.The selection of trimming steps and their associated parameters are supplied on the command line." More details are at Trimmomatic
Running Program
The last version of this application is at /usr/local/apps/eb/Trimmomatic/0.36-Java-1.8.0_144
To use this version, please load the module with
ml Trimmomatic/0.36-Java-1.8.0_144
Here is an example of a shell script, sub.sh, to run on the batch queue:
#!/bin/bash
#SBATCH --job-name=j_Trimmomatic
#SBATCH --partition=batch
#SBATCH --mail-type=ALL
#SBATCH --mail-user=username@uga.edu
#SBATCH --ntasks=1
#SBATCH --mem=10gb
#SBATCH --time=08:00:00
#SBATCH --output=Trimmomatic.%j.out
#SBATCH --error=Trimmomatic.%j.err
cd $SLURM_SUBMIT_DIR
ml Trimmomatic/0.36-Java-1.8.0_144
java -jar $EBROOTTRIMMOMATIC/trimmomatic-0.36.jar [options]
In the real submission script, at least all the above underlined values need to be reviewed or to be replaced by the proper values.
Please refer to Running_Jobs_on_the_teaching_cluster, Run X window Jobs and Run interactive Jobs for more details of running jobs at Teaching cluster.
Here is an example of job submission command:
sbatch ./sub.sh
Documentation
ml Trimmomatic/0.36-Java-1.8.0_144 java -jar $EBROOTTRIMMOMATIC/trimmomatic-0.36.jar -h Usage: PE [-version] [-threads <threads>] [-phred33|-phred64] [-trimlog <trimLogFile>] [-quiet] [-validatePairs] [-basein <inputBase> | <inputFile1> <inputFile2>] [-baseout <outputBase> | <outputFile1P> <outputFile1U> <outputFile2P> <outputFile2U>] <trimmer1>... or: SE [-version] [-threads <threads>] [-phred33|-phred64] [-trimlog <trimLogFile>] [-quiet] <inputFile> <outputFile> <trimmer1>... or: -version
Installation
Source code is obtained from Trimmomatic
System
64-bit Linux