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:
#!/usr/bin/env bash #SBATCH -p highmem #SBATCH -J trinity #SBATCH -n 8 module load trinity/v2.4.0 # create and change to a working directory on the compute node 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/Trinity-v2.4.0.zip $ unzip Trinity-v2.4.0.zip $ cd trinityrnaseq-Trinity-v2.4.0 $ scl enable devtoolset-4 bash $ make $ make plugins $ sudo mkdir /export/apps/trinity/v2.4.0 $ make test_trinity $ sudo cp -r . /export/apps/trinity/v2.4.0