From: Bo Li Date: Mon, 25 Apr 2011 19:00:49 +0000 (-0500) Subject: add feature that jump lines with # in gtf X-Git-Url: https://git.donarmstrong.com/?p=rsem.git;a=commitdiff_plain;h=0f1ac7d42823cf0f47d25f4f0a04620357421589 add feature that jump lines with # in gtf --- diff --git a/extractRef.cpp b/extractRef.cpp index c4f24a9..12b3222 100644 --- a/extractRef.cpp +++ b/extractRef.cpp @@ -113,6 +113,7 @@ void parse_gtf_file(char* gtfF) { items.clear(); while (getline(fin, line)) { + if (line[0] == '#') continue; // if this line is comment, jump it item.parse(line); string feature = item.getFeature(); if (feature == "exon") { diff --git a/rsem-calculate-expression b/rsem-calculate-expression index 1535147..06604d9 100755 --- a/rsem-calculate-expression +++ b/rsem-calculate-expression @@ -8,7 +8,7 @@ use strict; #const my $BURNIN = 200; -my $NSAMPLES = 1000; +my $CHAINLEN = 1000; my $SAMPLEGAP = 1; my $CONFIDENCE = 0.95; my $NSPC = 50; @@ -285,7 +285,7 @@ if ($genBamF) { &collectResults("$imdName.gene_res", "$sampleName.genes.results"); # gene level if ($calcCI) { - $command = $dir."rsem-run-gibbs $refName $sampleName $sampleToken $BURNIN $NSAMPLES $SAMPLEGAP"; + $command = $dir."rsem-run-gibbs $refName $sampleName $sampleToken $BURNIN $CHAINLEN $SAMPLEGAP"; # $command .= " -p $nThreads"; if ($quiet) { $command .= " -q"; } print "$command\n"; @@ -661,3 +661,5 @@ Assume the path to the bowtie executables is in the user's PATH environment vari mmliver_paired_end_quals =cut + +# LocalWords: usr