Skip to content

Commit

Permalink
this corrects a bug in the 'compare' command when the results from the
Browse files Browse the repository at this point in the history
'assemble' step are located in different directories.
  • Loading branch information
shenkers committed May 27, 2015
1 parent cc2a50e commit af9ef48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion IsoSCM/src/executable/IsoSCM.java
Original file line number Diff line number Diff line change
Expand Up @@ -595,7 +595,7 @@ else if(jc.getParsedCommand().equals("compare")){
Strandedness s1=Strandedness.valueOf(assemblyConfiguration1.strandedness); Strandedness s2=Strandedness.valueOf(assemblyConfiguration2.strandedness);

File spliced_exon_gtf1 = FileUtils.getFile(assemblyConfiguration1.dir,"tmp",assemblyConfiguration1.base+".exon"+(s1==Strandedness.unstranded?".trimmed":"")+".gtf");
File spliced_exon_gtf2 = FileUtils.getFile(assemblyConfiguration1.dir,"tmp",assemblyConfiguration2.base+".exon"+(s2==Strandedness.unstranded?".trimmed":"")+".gtf");
File spliced_exon_gtf2 = FileUtils.getFile(assemblyConfiguration2.dir,"tmp",assemblyConfiguration2.base+".exon"+(s2==Strandedness.unstranded?".trimmed":"")+".gtf");

File table = FileUtils.getFile(compare.dir,Util.sprintf("%s.txt",compare.base));
File gtf = FileUtils.getFile(compare.dir,Util.sprintf("%s.gtf",compare.base));
Expand Down

0 comments on commit af9ef48

Please sign in to comment.