]> git.donarmstrong.com Git - rsem.git/commitdiff
README.md is changed
authorBo Li <bli@cs.wisc.edu>
Tue, 11 Sep 2012 10:10:36 +0000 (05:10 -0500)
committerBo Li <bli@cs.wisc.edu>
Tue, 11 Sep 2012 10:10:36 +0000 (05:10 -0500)
README.md
makefile

index 459616fbffb51d04d7582bd5fc1317837b886f1a..8ce3d3897062541a335c291ef9c6dfed89e833f4 100644 (file)
--- a/README.md
+++ b/README.md
@@ -51,13 +51,11 @@ variable.
 
 ### Prerequisites
 
-C++ and Perl are required to be installed. 
+C++, Perl and R are required to be installed. 
 
 To take advantage of RSEM's built-in support for the Bowtie alignment
 program, you must have [Bowtie](http://bowtie-bio.sourceforge.net) installed.
 
-If you want to plot model learned by RSEM, you should also install R. 
-
 ## <a name="usage"></a> Usage
 
 ### I. Preparing Reference Sequences
@@ -291,17 +289,21 @@ consideration. Because read mapping ambiguity is prevalent among
 isoforms and de novo assembled transcripts, these tools are not ideal
 for DE detection in such conditions. 
 
-**EBSeq**, an empirical Bayesian DE
-analysis tool developed in UW-Madison, can take variance due to read
-mapping ambiguity into consideration by grouping isoforms with parent
-gene's number of isoforms. In addition, it is more robust to
-outliers. RSEM includes the newest version of EBSeq in the folder
-named 'EBSeq'.
-
-For more information about EBSeq (including the paper describing their
-method), please visit <a
+**EBSeq**, an empirical Bayesian DE analysis tool developed in
+UW-Madison, can take variance due to read mapping ambiguity into
+consideration by grouping isoforms with parent gene's number of
+isoforms. In addition, it is more robust to outliers. For more
+information about EBSeq (including the paper describing their method),
+please visit <a
 href="http://www.biostat.wisc.edu/~ningleng/EBSeq_Package">EBSeq
-website</a>. 
+website</a>.
+
+RSEM includes the newest version of EBSeq in its folder
+named 'EBSeq'. To use it, first type
+
+    make ebseq
+
+to compile the EBSeq related codes. 
 
 EBSeq requires gene-isoform relationship for its isoform DE
 detection. However, for de novo assembled transcriptome, it is hard to
index 3ea1b585cf6f538f6840dc82b2c5e71e5d041a72..d706f55ba04e7cf91ac376310e21c5b1fc5de55e 100644 (file)
--- a/makefile
+++ b/makefile
@@ -1,7 +1,7 @@
 CC = g++
 CFLAGS = -Wall -c -I.
 COFLAGS = -Wall -O3 -ffast-math -c -I.
-PROGRAMS = rsem-extract-reference-transcripts rsem-synthesis-reference-transcripts rsem-preref rsem-parse-alignments rsem-build-read-index rsem-run-em rsem-tbam2gbam rsem-run-gibbs rsem-calculate-credibility-intervals rsem-simulate-reads rsem-bam2wig rsem-get-unique rsem-bam2readdepth rsem-sam-validator rsem-scan-for-paired-end-reads ebseq
+PROGRAMS = rsem-extract-reference-transcripts rsem-synthesis-reference-transcripts rsem-preref rsem-parse-alignments rsem-build-read-index rsem-run-em rsem-tbam2gbam rsem-run-gibbs rsem-calculate-credibility-intervals rsem-simulate-reads rsem-bam2wig rsem-get-unique rsem-bam2readdepth rsem-sam-validator rsem-scan-for-paired-end-reads
 
 all : $(PROGRAMS)