Difference between revisions of "Applications/transabyss"

From HPC
Jump to: navigation , search
m (Usage)
 
(3 intermediate revisions by the same user not shown)
Line 9: Line 9:
  
 
==Usage==
 
==Usage==
This pipeline can be applied to assemblies generated across a wide range of k values. It first reduces the dataset into smaller sets of non-redundant contigs, and identifies splicing events including exon-skipping, novel exons, retained introns, novel introns, and alternative splicing. The Trans-ABySS algorithms are also able to estimate gene expression levels, identify potential polyadenylation sites, as well as candidate gene-fusion events [https://en.wikipedia.org/wiki/De_novo_transcriptome_assembly#Trans-ABySS]
+
This pipeline can be applied to assemblies generated across a wide range of k values. It first reduces the dataset into smaller sets of non-redundant contigs and identifies splicing events including exon-skipping, novel exons, retained introns, novel introns, and alternative splicing. The Trans-ABySS algorithms are also able to estimate gene expression levels, identify potential polyadenylation sites, as well as candidate gene-fusion events [https://en.wikipedia.org/wiki/De_novo_transcriptome_assembly#Trans-ABySS]
  
Because of the nature of such tasks, it may be more appropriate to use [[General/Batch#High_memory_batch_job|highmem]] nodes rather than standard compute nodes.  
+
Because of the nature of such tasks, it may be more appropriate to use [[FurtherTopics/Advanced_Batch_Jobs#highmem|highmem]] nodes rather than standard compute nodes.  
  
 
=== Batch Submission ===
 
=== Batch Submission ===
Line 34: Line 34:
 
</pre>
 
</pre>
  
==Further Information==
+
==Next Steps==
  
 
* http://www.bcgsc.ca/platform/bioinfo/software/trans-abyss
 
* http://www.bcgsc.ca/platform/bioinfo/software/trans-abyss
Line 40: Line 40:
 
* https://en.wikipedia.org/wiki/De_novo_transcriptome_assembly#Trans-ABySS
 
* https://en.wikipedia.org/wiki/De_novo_transcriptome_assembly#Trans-ABySS
  
==Navigation==
+
{{Modulepagenav}}
 
 
* [[Main_Page|Home]]
 
* [[Applications|Application support]] *
 
* [[General|General]]
 
* [[Programming|Programming support]]
 

Latest revision as of 10:12, 22 November 2022

Application Details

  • Description: Trans-ABySS (Assembly By Short Sequences) is a software pipeline written in Python and Perl for analyzing ABySS-assembled transcriptome contigs.
  • Version: 1.5.4
  • Modules: transabyss/1.5.5
  • Licence: BCCA (BC Cancer Agency) academic use

Usage

This pipeline can be applied to assemblies generated across a wide range of k values. It first reduces the dataset into smaller sets of non-redundant contigs and identifies splicing events including exon-skipping, novel exons, retained introns, novel introns, and alternative splicing. The Trans-ABySS algorithms are also able to estimate gene expression levels, identify potential polyadenylation sites, as well as candidate gene-fusion events [1]

Because of the nature of such tasks, it may be more appropriate to use highmem nodes rather than standard compute nodes.

Batch Submission

#!/bin/bash
#SBATCH -J transabyss
#SBATCH -N 1
#SBATCH -n 28
#SBATCH -o %N-%j.log
#SBATCH -e %N-%j.err
#SBATCH -p compute
#SBATCH --exclusive

module add transabyss/1.5.5

transabyss --pe R1.fq R2.fq --name transabyss --threads 28 -k 25 --length 200
[username@login01 ~]$ sbatch transabyss.job
Submitted batch job 289555

Next Steps





Modules | Main Page | Further Topics