Skip to main content

cufflinks

Link to section 'Introduction' of 'cufflinks' Introduction

Cufflinks assembles transcripts, estimates their abundances, and tests for differential expression and regulation in RNA-Seq samples. It accepts aligned RNA-Seq reads and assembles the alignments into a parsimonious set of transcripts. Cufflinks then estimates the relative abundances of these transcripts based on how many reads support each one, taking into account biases in library preparation protocols.

For more information, please check its website: https://biocontainers.pro/tools/cufflinks and its home page on Github.

Link to section 'Versions' of 'cufflinks' Versions

  • 2.2.1

Link to section 'Commands' of 'cufflinks' Commands

  • cuffcompare
  • cuffdiff
  • cufflinks
  • cuffmerge
  • cuffnorm
  • cuffquant
  • gffread
  • gtf_to_sam

Link to section 'Module' of 'cufflinks' Module

You can load the modules by:

module load biocontainers
module load cufflinks

Link to section 'Example job' of 'cufflinks' Example job

Using #!/bin/sh -l as shebang in the slurm job script will cause the failure of some biocontainer modules. Please use #!/bin/bash instead.

To run Cufflinks on our clusters:

#!/bin/bash
#SBATCH -A myallocation     # Allocation name 
#SBATCH -t 1:00:00
#SBATCH -N 1
#SBATCH -n 8
#SBATCH --job-name=cufflinks
#SBATCH --mail-type=FAIL,BEGIN,END
#SBATCH --error=%x-%J-%u.err
#SBATCH --output=%x-%J-%u.out

module --force purge
ml biocontainers cufflinks

cufflinks -p 8 -G transcript.gtf --library-type fr-unstranded -o cufflinks_output tophat_out/accepted_hits.bam
Helpful?

Thanks for letting us know.

Please don't include any personal information in your comment. Maximum character limit is 250.
Characters left: 250
Thanks for your feedback.