How to compare assembly from Trinity and Velvet/Oases
1
3
Entering edit mode
9.1 years ago
Paul ★ 1.5k

Dear all,

I am trying to compare my result form different de-novo transcriptom assemblers, but I am not sure how to do that. If I understand right - output from Trinity does not provide scaffolding - so I have to compare just my contig lengths from my outputs.

But in Trinity default output (Trinity.fasta) has together transcript isoforms and gene isoforms - should I separate just transcript isoforms from Trinity.fasta and count statistic (average,min,max contig length) to compare with Velvet/Oases? Or can I run awk script bellow to compare assemblers for whole Trinity.fasta (together transcripts and gene isoforms)?

awk script is:

awk 'BEGIN {flag=0; 
print "Contig ID\tContig Length \tA \tT \tG \tC \tN \tOtherCharacters "}  
{if ($0~/^>/) {if (flag==1) {tot= aCount + tCount + gCount + cCount + nCount + xCount; print id "\t" tot "\t" aCount "\t" tCount "\t" gCount "\t" cCount "\t" nCount "\t" xCount;}
id=$0;flag=1; aCount=gCount=cCount=tCount=nCount=xCount=0;}
else{aCount+=gsub(/[aA]/,"A",$0);tCount+=gsub(/[tT]/,"T",$0); gCount+=gsub(/[gG]/,"G",$0);cCount+=gsub(/[cC]/,"C",$0);nCount+=gsub(/[nN]/,"N",$0);xCount+=gsub(/[^ATGCNatgcn]/,"X",$0);}}   END{tot=aCount + tCount + gCount + cCount + nCount + xCount; print id" \t "tot" \t "aCount "\t" tCount "\t" gCount "\t" cCount "\t" nCount "\t" xCount;}' Trinity.fasta

Thank you for any explanation how to compare outputs.

denovo-assembly RNA-Seq Trinity Velvet-Oases • 3.0k views
ADD COMMENT
1
Entering edit mode

Please reformat the script to make it more readable.

ADD REPLY
1
Entering edit mode
9.1 years ago
vahapel ▴ 210

Hi,

As far as I know, if you are doing a basic descriptive statistics such as: average,min,max contig length etc., you don't need to remove the isoforms from Trinity.fa. Trinity and Oases make a their own cluster tools; component and locus, respectively.

ADD COMMENT

Login before adding your answer.

Traffic: 1575 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6