Skip to content

Commit

Permalink
Fixed tabs to newline in lambda file output
Browse files Browse the repository at this point in the history
  • Loading branch information
youngchanpark committed May 5, 2021
1 parent bc05eca commit aa79408
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion run_manqq.R
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ lines(xx, -log10(lower), col="gray", lty=2, lwd=2)
lambdavalue=lambdaCalc(d[,p])
# Save lambda value to a separate file
lambdafile=paste0(args$outfile, ".lambda.txt")
cat(paste(qqfile, lambdavalue, sep='\t'), file=lambdafile, sep="\t")
cat(paste(qqfile, lambdavalue, sep='\t'), file=lambdafile, sep="\n")

text(substitute(paste(lambda, "=", lambdaval), list(lambdaval=lambdavalue)), x=1, y=max(ret$y)-1, cex=1.5)
abline(a=0, b=1, col="firebrick", lwd=2)
Expand Down

0 comments on commit aa79408

Please sign in to comment.