Difference between revisions of "Applications/Cufflinks"

From HPC
Jump to: navigation , search
m
(Batch Job)
 
(6 intermediate revisions by the same user not shown)
Line 35: Line 35:
 
[username@login01 ~]$ module add cufflinks/2.2.1
 
[username@login01 ~]$ module add cufflinks/2.2.1
  
 +
</pre>
 +
 +
===Batch Job===
 +
<!-- Edited from: https://wiki.rc.usf.edu/index.php/Cufflinks#Submitting_a_Job -->
 +
<pre>
 +
#!/bin/bash
 +
#SBATCH -J cufflinks-test
 +
#SBATCH -n 1
 +
#SBATCH --ntasks-per-node=2
 +
#SBATCH --output=output.%j.out
 +
#SBATCH --time=00:10:00
 +
 +
#### SLURM task using 1 Node with 2 Processors per Node cufflinks test to run for 10 minutes.
 +
 +
module purge
 +
module load cufflinks/2.2.1
 +
 +
CUFFLINKS_OUTPUT="${PWD}"
 +
 +
cufflinks --quiet --num-threads $SLURM_NTASKS --output-dir $CUFFLINKS_OUTPUT input.bam
 
</pre>
 
</pre>
  
Line 41: Line 61:
 
* [http://cole-trapnell-lab.github.io/cufflinks/ http://cole-trapnell-lab.github.io/cufflinks/]
 
* [http://cole-trapnell-lab.github.io/cufflinks/ http://cole-trapnell-lab.github.io/cufflinks/]
  
 
+
{{Modulepagenav}}
{|
 
|style="width:5%; border-width: 0" | [[File:icon_home.png]]
 
|style="width:95%; border-width: 0" |
 
* [[Main_Page|Home]]
 
* [[Applications|Application support]]
 
* [[General|General]]
 
* [[Training|Training]]
 
* [[Programming|Programming support]]
 
|-
 
|}
 

Latest revision as of 16:55, 16 November 2022

Application Details

  • Description: The Cufflinks suite of tools can be used to perform a number of different types of analyses for RNA-Seq experiments. The Cufflinks suite includes a number of different programs that work together to perform these analyses.
  • Version: 2.2.1
  • Modules: cufflinks/2.2.1
  • Licence: Open source (Github)

Usage Examples

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.

It provides the following tools:

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


With linkages to the following modules too:



[username@login01 ~]$ module add cufflinks/2.2.1

Batch Job

#!/bin/bash
#SBATCH -J cufflinks-test
#SBATCH -n 1
#SBATCH --ntasks-per-node=2 
#SBATCH --output=output.%j.out
#SBATCH --time=00:10:00

#### SLURM task using 1 Node with 2 Processors per Node cufflinks test to run for 10 minutes.

module purge
module load cufflinks/2.2.1

CUFFLINKS_OUTPUT="${PWD}"

cufflinks --quiet --num-threads $SLURM_NTASKS --output-dir $CUFFLINKS_OUTPUT input.bam

Further Information





Modules | Main Page | Further Topics