Skip to content

Commit

Permalink
fixed some status messages being sent to the wrong output stream
Browse files Browse the repository at this point in the history
  • Loading branch information
fruce-ki committed Jul 7, 2017
1 parent 1c92c7e commit ba797ee
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions R/rats.R
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ call_DTU <- function(annot= NULL, TARGET_COL= "target_id", PARENT_COL= "parent_i
})

if (verbose) # Forcing a new line after the progress bar.
message("")
print("")

if (dbg == "rboot")
return(repres)
Expand Down Expand Up @@ -343,7 +343,7 @@ call_DTU <- function(annot= NULL, TARGET_COL= "target_id", PARENT_COL= "parent_i
"gdtu" = Genes[, DTU] )) })
})
if (verbose) # Forcing a new line after the progress bar.
message("")
print("")

if (dbg == "qboot")
return(bootres)
Expand Down Expand Up @@ -439,13 +439,13 @@ call_DTU <- function(annot= NULL, TARGET_COL= "target_id", PARENT_COL= "parent_i

if(verbose) {
message("All done!")
message("Summary of DTU results:")
print("")
print("Summary of DTU results:")
dtusum <- dtu_summary(resobj)
print(dtusum)
message("Isoform-switching subset of DTU:")
print("Isoform-switching subset of DTU:")
switchsum <- dtu_switch_summary(resobj)
print(switchsum)

}

return(resobj)
Expand Down

0 comments on commit ba797ee

Please sign in to comment.