comparison pipe-t.R @ 23:465e643e1ea1 draft

planemo upload for repository https://github.com/igg-molecular-biology-lab/pipe-t.git commit 4ddffbbbad77ef6dd023dc3311a820413a8fa3c4
author davidecangelosi
date Wed, 29 May 2019 06:40:43 -0400
parents 822dc9b96b3e
children 6ae13912ab03
comparison
equal deleted inserted replaced
22:822dc9b96b3e 23:465e643e1ea1
561 #################################################################################################################### 561 ####################################################################################################################
562 #Filter out the values of the new category 562 #Filter out the values of the new category
563 xFilter <- filterCategory(unreliable) 563 xFilter <- filterCategory(unreliable)
564 564
565 cat("\n Categorization completed! ") 565 cat("\n Categorization completed! ")
566 566 minvalue<-min(exprs(xFilter), na.rm = TRUE)
567 maxvalue<-max(exprs(xFilter), na.rm = TRUE)
567 png(x, # create PNG for the heat map 568 png(x, # create PNG for the heat map
568 width = 10*300, # 5 x 300 pixels 569 width = 10*300, # 5 x 300 pixels
569 height = 10*300, 570 height = 10*300,
570 res = 300, # 300 pixels per inch 571 res = 300, # 300 pixels per inch
571 pointsize = 8) 572 pointsize = 8)
572 573
573 plotCtBoxes(xFilter, ylim=c(dcCtmin,dcCtmax), cex.lab=3, cex.axis = 2,stratify=NULL, xlab = "Samples", ylab="Ct", mar = c(8,8,8,8), names=as.character(seq(1, ncol(xFilter), 1))) # smaller font size 574 plotCtBoxes(xFilter, ylim=c(as.numeric(minvalue), as.numeric(maxvalue)), cex.lab=3, cex.axis = 2,stratify=NULL, xlab = "Samples", ylab="Ct", mar = c(8,8,8,8), names=as.character(seq(1, ncol(xFilter), 1))) # smaller font size
574 dev.off() 575 dev.off()
575 576
576 #write.table(exprs(xFilter), file=x, quote=FALSE, row.names=TRUE, col.names=TRUE,sep = "\t") 577 #write.table(exprs(xFilter), file=x, quote=FALSE, row.names=TRUE, col.names=TRUE,sep = "\t")
577 578
578 #################################################################################################################### 579 ####################################################################################################################