Skip to content

Commit 33aa13f

Browse files
committed
final v1.3.1
1 parent 3470001 commit 33aa13f

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

stringtie.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//#define GFF_DEBUG 1
1+
//#define GFF_DEBUG 1 //debugging guides loading
22
#include "rlink.h"
33
#include "tmerge.h"
44
#ifndef NOTHREADS
@@ -752,8 +752,8 @@ if(!mergeMode) {
752752
while(fgetline(linebuf,linebuflen,ftmp_in)) {
753753
//sscanf(linebuf,"%d %d %d %g %g", &nl, &tlen, &t_id, &fpkm, &tcov);
754754
sscanf(linebuf,"%d %d %d %d %g", &istr, &nl, &tlen, &t_id, &tcov);
755-
//FIXME: for the rare cases tcov < 0, invert it
756-
if (tcov<0) tcov=-tcov;//this should not happen
755+
//for the rare cases tcov < 0, invert it
756+
if (tcov<0) tcov=-tcov; //should not happen
757757
calc_fpkm=tcov*1000000000/Frag_Len;
758758
calc_tpm=tcov*1000000/Cov_Sum;
759759
if(istr) { // this is a transcript

0 commit comments

Comments
 (0)