]> git.donarmstrong.com Git - rsem.git/blobdiff - extractRef.cpp
Modified build rules for sam/libbam.a to enable parallel build
[rsem.git] / extractRef.cpp
index 693af6635ae9df85006dcc7b991ee5d2e497bed8..da0effc70e3c3fe25925c615d30e40f2c15b55eb 100644 (file)
@@ -303,7 +303,9 @@ int main(int argc, char* argv[]) {
 
        for (int i = 1; i <= M; i++) {
                if (seqs[i] == "") {
-                       fprintf(stderr, "%s's sequence is empty! You must provide all chromosome files of transcripts which are presented in the .gtf file!\n", transcripts.getTranscriptAt(i).getTranscriptID().c_str());
+                       const Transcript& transcript = transcripts.getTranscriptAt(i);
+                       fprintf(stderr, "Cannot extract transcript %s's sequence from chromosome %s, whose information might not be provided! Please check if the chromosome directory is set correctly or the list of chromosome files is complete.\n", \
+                                       transcript.getTranscriptID().c_str(), transcript.getGeneID().c_str());
                        exit(-1);
                }
        }