This is an old revision of the document!
Trinity assembles transcript sequences from Illumina RNA-Seq data.
See versions of trinity which are available:
$ module avail trinity
Note:
#!/bin/env bash #SBATCH -p highmem #SBATCH -J trinity #SBATCH -n 8 module load trinity/v2.1.1 module load bowtie/1.1.1 module load samtools/1.2 # cd to working dir just in case export WORKDIR=/var/scratch/$USER/$SLURM_JOBID mkdir -p $WORKDIR cd $WORKDIR # match CPUs to amount requested in SBATCH options! Trinity --seqType fq --max_memory 10G --left fish_R1.fastq --right fish_R2.fastq --CPU 8 --output trinity-fish2 --full_cleanup
Notes from the sysadmin during installation:
$ cd /tmp $ wget "https://github.com/trinityrnaseq/trinityrnaseq/archive/v2.1.1.tar.gz" -O trinity-v2.1.1.tar.gz $ tar -xvf v2.1.1.tar.gz $ cd trinityrnaseq-2.1.1 $ scl enable devtoolset-2 bash $ CC=clang make $ CC=clang make plugins $ sudo mkdir /export/apps/trinity/v2.1.1 $ sudo cp -r . /export/apps/trinity/v2.1.1/