1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666
|
# @include savR.R
NULL
#'@rdname savR
#@aliases savR,character-method
setMethod("savR", signature("character"), function(object) {
retval <- new("savProject", location=normalizePath(object))
retval@cycles <- 0L
retval@directions <- 0L
ri <- normalizePath(paste(object, "RunInfo.xml", sep="/"))
runinfo <- XML::xmlInternalTreeParse(ri)
retval@runid <- XML::xmlAttrs(XML::xpathApply(runinfo, "/RunInfo/Run")[[1]])["Id"]
retval@number <- as.integer(XML::xmlAttrs(xpathApply(runinfo, "/RunInfo/Run")[[1]])["Number"])
retval@flowcell <- XML::xmlValue(XML::xpathApply(runinfo, "/RunInfo/Run/Flowcell")[[1]])
retval@instrument <- XML::xmlValue(XML::xpathApply(runinfo, "/RunInfo/Run/Instrument")[[1]])
retval@date <- XML::xmlValue(XML::xpathApply(runinfo, "/RunInfo/Run/Date")[[1]])
reads <- c()
for (x in XML::xpathApply(runinfo, "/RunInfo/Run/Reads/Read")) {
index <- XML::xmlAttrs(x)["IsIndexedRead"]
index <- if(index=="Y") T else F
read <- new("illuminaRead", number=as.integer(XML::xmlAttrs(x)["Number"]),
cycles=as.integer(XML::xmlAttrs(x)["NumCycles"]),
index=index)
reads <- c(reads, read)
retval@cycles <- retval@cycles + read@cycles
if (!read@index)
retval@directions <- retval@directions + 1L
}
retval@reads <- reads
layout <- XML::xpathApply(runinfo, "/RunInfo/Run/FlowcellLayout")[[1]]
layoutChildren <- XML::xmlChildren(layout)
tnc <- ""
if (length(layoutChildren) > 0) {
tnc <- XML::xmlAttrs(layoutChildren$TileSet)["TileNamingConvention"]
}
retval@layout <- new("illuminaFlowCellLayout", lanecount=as.integer(XML::xmlAttrs(layout)["LaneCount"]),
surfacecount=as.integer(XML::xmlAttrs(layout)["SurfaceCount"]),
swathcount=as.integer(XML::xmlAttrs(layout)["SwathCount"]),
tilecount=as.integer(XML::xmlAttrs(layout)["TileCount"]),
sectionperlane=as.integer(XML::xmlAttrs(layout)["SectionPerLane"]),
lanepersection=as.integer(XML::xmlAttrs(layout)["LanePerSection"]),
tilenamingconvention=as.character(tnc)
)
return(init(retval))
} )
#'@rdname savR
#@aliases savR,missing-method
setMethod("savR", signature("missing"), function() { savR(".") })
subsetSide <- function(data, side) {
if (side=="top") {
data <- data[grepl(".1..", data$tile),]
} else if (side=="bottom") {
data <- data[grepl(".2..", data$tile),]
}
return(data)
}
#'@rdname plotIntensity
#@aliases plotIntensity,savProject,integer,character-method
setMethod("plotIntensity", signature(project="savProject", cycle="integer", base="character"), function(project, cycle=1L, base=c("A", "C", "G", "T")) {
x <- y <- NULL
if (cycle < 0)
stop ("Cycle out of range")
data <- project@parsedData[["savCorrectedIntensityFormat"]]@data
if (is.null(data))
stop("Corrected Intensity data not available")
val <- paste("avg_cor_called", c("A", "C", "G", "T"), sep="_")
names(val) <- c("A", "C", "G", "T")
maxInt <- max(c(data[, val["A"]], data[, val["C"]], data[, val["G"]], data[, val["T"]]))
if(maxInt < 7000) {
maxInt <= 7000
}
data <- data[data$cycle==cycle,]
base <- match.arg(base)
p <- qplot(factor(x),y,fill=get(val[base]), data=data, geom="tile", position="dodge", main = paste("Intensity: ", base, ", Cycle ", cycle, sep="")) +
theme_bw() + theme(legend.position = "bottom") + scale_fill_continuous(guide = guide_colorbar(title=val, barwidth=10), limits=c(0,maxInt) ) +
facet_grid(~lane, space="free", scales="free") +
xlab("") + ylab("") + scale_x_discrete(labels="")
gridExtra::grid.arrange(p)
} )
#'@rdname plotIntensity
#@aliases plotIntensity,savProject,missing,missing-method
setMethod("plotIntensity", signature(project="savProject", cycle="missing", base="missing"), function(project) { plotIntensity(project, 1L, "A")})
#'@rdname plotIntensity
#@aliases plotIntensity,savProject,integer,missing-method
setMethod("plotIntensity", signature(project="savProject", cycle="integer", base="missing"), function(project, cycle) { plotIntensity(project, cycle, "A")})
#'@rdname plotIntensity
#@aliases plotIntensity,savProject,missing,character-method
setMethod("plotIntensity", signature(project="savProject", cycle="missing", base="character"), function(project, base) { plotIntensity(project, 1L, base)})
#'@rdname plotFWHM
#@aliases plotFWHM,savProject,integer,character-method
setMethod("plotFWHM", signature(project="savProject", cycle="integer", base="character"), function(project, cycle=1L, base=c("A", "C", "G", "T")) {
x <- y <- NULL
if (cycle < 0)
stop ("Cycle out of range")
data <- project@parsedData[["savExtractionFormat"]]@data
if (is.null(data))
stop("Extraction data not available")
data <- data[data$cycle==cycle,]
base <- match.arg(base)
val <- paste("FWHM", base, sep="_")
p <- qplot(factor(x),y,fill=get(val), data=data, geom="tile", position="dodge", main = paste("Intensity: ", base, ", Cycle ", cycle, sep="")) +
theme_bw() + theme(legend.position = "bottom") + scale_fill_continuous(guide = guide_colorbar(title=val, barwidth=10), limits=c(0,10) ) +
facet_grid(~lane, space="free", scales="free") +
xlab("") + ylab("") + scale_x_discrete(labels="")
gridExtra::grid.arrange(p)
} )
#'@rdname plotFWHM
#@aliases plotFWHM,savProject,missing,missing-method
setMethod("plotFWHM", signature(project="savProject", cycle="missing", base="missing"), function(project) { plotFWHM(project, 1L, "A")})
#'@rdname plotFWHM
#@aliases plotFWHM,savProject,integer,missing-method
setMethod("plotFWHM", signature(project="savProject", cycle="integer", base="missing"), function(project, cycle) { plotFWHM(project, cycle, "A")})
#'@rdname plotFWHM
#@aliases plotFWHM,savProject,missing,character-method
setMethod("plotFWHM", signature(project="savProject", cycle="missing", base="character"), function(project, base) { plotFWHM(project, 1L, base)})
#Get formatted data for Q GT30 plot
#
#@param data data.frame
#@param cycle cycle
getFormatQGT30 <- function(data, cycle=1L) {
#side <- match.arg(side)
#data <- subsetSide(data,side)
stats <- getFlowcellStats(data)
contenders <- as.integer(gsub("Q", "", colnames(data)[grepl("^Q", colnames(data))]))
lt30 <- paste("Q", 1:30, sep="")
gte30 <- paste("Q", 31:max(contenders), sep="")
return(cbind(data[data$cycle==cycle, c("cycle", "lane", "tile")],
x=factor(rep(1:(stats$nswath*stats$nsides*stats$nlanes), each=stats$ntiles)),
y=rep(1:stats$ntiles, stats$nswath*stats$nsides),
gte30=apply(data[data$cycle==cycle,], 1, function(x) {
return(sum(x[gte30])/(sum(x[c(lt30, gte30)])+.00001)*100 )
})
))
}
#'@rdname plotQGT30
#@aliases plotQGT30,savProject,integer-method
setMethod("plotQGT30", signature(project="savProject", cycle="integer"), function(project, cycle=1L) {
x <- y <- gte30 <- NULL
if (cycle < 0)
stop ("Cycle out of range")
data <- project@parsedData[["savQualityFormat"]]@data
if (is.null(data))
stop("Quality data not available")
cycleData <- getFormatQGT30(data, cycle)
p <- qplot(x, y, fill=gte30, data=cycleData, geom="tile", position="dodge", main = paste("Percent Q>=30, Cycle ", cycle, sep="")) +
theme_bw() + theme(legend.position = "bottom") + scale_fill_continuous(guide = guide_colorbar(title="%Q>=30", barwidth=10), limits=c(0,100) ) +
facet_grid(~lane, space="free", scales="free") +
xlab("") + ylab("") + scale_x_discrete(labels="")
gridExtra::grid.arrange(p)
} )
#'@rdname plotQGT30
#@aliases plotQGT30,savProject,missing-method
setMethod("plotQGT30", signature(project="savProject", cycle="missing"), function(project) { plotQGT30(project, 1L)})
#'@rdname pfBoxplot
#@aliases pfBoxplot,savProject-method
setMethod("pfBoxplot", signature("savProject"), function(project) {
lane <- value <- code <- NULL
data <- project@parsedData[["savTileFormat"]]@data
if (is.null(data))
stop("Tile data not available")
data <- data[data$code %in% c(100,101),]
data[data$code==100, "code"] <- "Clusters"
data[data$code==101, "code"] <- "PF"
p <- ggplot2::ggplot(data, ggplot2::aes(factor(lane), value)) + ggplot2::geom_boxplot(notch=F, ggplot2::aes(fill = code), alpha=.8) + ggplot2::ylim(0,max(data$value)) +
ggplot2::theme_bw() + ggplot2::theme(legend.position = "bottom") +
ggplot2::labs(list(y=expression(paste("Clusters/", mm^2, sep="")), x="Lane", fill=""))
gridExtra::grid.arrange(p)
} )
#format quality data
#
#@param data data
#@param lane lane
#@param cycles cycles
#@return formatted data
qFormat <- function(data,lane,cycles,collapse=T) {
data <- data[data$lane==lane & data$cycle %in% cycles, ]
quals <- paste("Q", 1:50, sep="")
mat <- reshape2::melt(data[,c("cycle",quals)], id=c("cycle"), measured=quals)
mat <- reshape2::dcast(mat, cycle ~ variable, sum)
mat <- reshape2::melt(mat, id=c("cycle"), measured=quals)
mat[,2] <- as.numeric(gsub("Q", "", mat[,2]))
colnames(mat) <- c("x", "y", "z")
return(mat)
}
#read number to vector of cycle numbers
#
#@param project SAV project
#@param read read number
#@return vector of cycle numbers
readToCycles <- function(project, read) {
cycles <- c()
indexed <- c()
for (x in project@reads) {
cycles <- c(cycles, x@cycles)
indexed <- c(indexed, x@index)
}
seqreadlen <- vector("integer", sum(!indexed))
r <- 0
for (i in 1:length(indexed)) {
if (!indexed[i]) {
r <- r + 1
}
seqreadlen[r] <- seqreadlen[r] + cycles[i]
}
start <- 1
end <- 0
result <- list()
for (r in 1:length(seqreadlen)) {
end <- end + seqreadlen[r]
result[[r]] <- start:end
start <- start + seqreadlen[r]
}
return(result[[read]])
}
#'@rdname qualityHeatmap
#@aliases qualityHeatmap,savProject,integer,integer,logical-method
setMethod("qualityHeatmap", signature(project="savProject", lane="integer", read="integer", collapse="logical"), function(project, lane, read, collapse=T) {
y <- z <- ..level.. <- NULL
plots <- list()
nsegments <- directions(project)
if (!collapse)
nsegments <- length(reads(project))
# TODO: collapse segments
if (!all( read %in% 1:nsegments))
stop(paste("There are only", directions(project), "sequence read(s) and ", length(reads(project)), "total read segments on this flowcell, check read specification."))
formatName <- names(project@parsedData)[pmatch("savQualityFormat", names(project@parsedData))]
for (x in 1:length(read)) {
mat <- qFormat(data=project@parsedData[[formatName]]@data, lane=lane, cycles=readToCycles(project, read[x]), collapse)
plots[[x]] <- ggplot2::ggplot(mat, ggplot2::aes(x=x, y=y, z=z)) +
ggplot2::stat_contour(bins=50, geom="polygon", ggplot2::aes(fill=..level..)) + ggplot2::ylim(0,50) +
ggplot2::theme_bw() + ggplot2::scale_fill_gradient2(low="white", mid=scales::muted("green"), high="red", midpoint=quantile(mat$z, .99) ) +
xlab("cycle") + ylab("Q")
}
do.call(gridExtra::grid.arrange, c(plots, ncol=length(plots)))
} )
#'@rdname qualityHeatmap
#@aliases qualityHeatmap,savProject,numeric,numeric,missing-method
setMethod("qualityHeatmap", signature(project="savProject", lane="numeric", read="numeric", collapse="missing"), function(project, lane, read) { qualityHeatmap(project, as.integer(lane), as.integer(read), collapse=TRUE)})
#'@rdname buildReports
#@aliases buildReports,savProject,character-method
setMethod("buildReports", signature(project="savProject", destination="character"), function(project, destination="./savR-reports") {
path <- location(project)
if (!file.exists(path))
stop(paste("Project", path, "does not exist."))
reports <- normalizePath(destination, mustWork=F)
if (file.exists(reports))
stop(paste("Reports folder", reports, "already exists."))
for (f in c("ByCycle", "ErrorRate", "FWHM", "Intensity", "NumGT30")) {
assign(f, paste(reports, f, sep="/"))
dir.create(get(f), showWarnings=F, recursive=T)
}
# PF plot
Cairo::Cairo(file=paste(reports, "/NumClusters By Lane.png", sep=""), width=800, height=400, dpi=72, type="png", bg="white")
pfBoxplot(project)
dev.off()
# intensity plots
path <- normalizePath(paste(reports, "Intensity", sep="/"))
for (cycle in 1:project@cycles) {
for (base in c("A", "C", "G", "T")) {
tryCatch({
Cairo::Cairo(file=paste(path, "/Chart_", cycle, "_", tolower(base), ".png", sep=""), width=300, height=800, dpi=72, type="png", bg="white")
plotIntensity(project, cycle, base)
dev.off()},
warning = function(w) {
return()
},
error = function(e) {
warning("Unable to create intensity plot for cycle ", cycle , " base ", base, ": ", geterrmessage())
},
finally = {
try(dev.off(), silent=TRUE)
})
}
}
# Q>30 plots
path <- normalizePath(paste(reports, "NumGT30", sep="/"))
for (cycle in 1:project@cycles) {
tryCatch({
Cairo::Cairo(file=paste(path, "/Chart_", cycle, ".png", sep=""), width=300, height=800, dpi=72, type="png", bg="white")
plotQGT30(project, cycle)
dev.off()},
warning = function(w) {
return()
},
error = function(e) {
warning("Unable to create Q>30 plot for cycle ", cycle, ": ", geterrmessage())
},
finally = {
try(dev.off(), silent=TRUE)
})
}
# plot lane quality
path <- normalizePath(paste(reports, "ByCycle", sep="/"))
for (lane in 1:project@layout@lanecount) {
tryCatch({
Cairo::Cairo(file=paste(path, "/QScore_L", lane, ".png", sep=""), width=800, height=400, dpi=72, type="png", bg="white")
qualityHeatmap(project, lane, 1:project@directions)
dev.off()},
warning = function(w) {
return()
},
error = function(e) {
warning("Unable to create lane quality plot for lane ", lane, ": ", geterrmessage())
},
finally = {
try(dev.off(), silent=TRUE)
})
}
# FWHM plots
path <- normalizePath(paste(reports, "FWHM", sep="/"))
for (cycle in 1:project@cycles) {
for (base in c("A", "C", "G", "T")) {
tryCatch({
Cairo::Cairo(file=paste(path, "/Chart_", cycle, "_", tolower(base), ".png", sep=""), width=300, height=800, dpi=72, type="png", bg="white")
plotFWHM(project, cycle, base)
dev.off()},
warning = function(w) {
return()
},
error = function(e) {
warning("Unable to create FWHM plot for cycle ", cycle, " base ", base, ": ", geterrmessage())
},
finally = {
try(dev.off(), silent=TRUE)
})
}
}
} )
#'@rdname buildReports
#@aliases buildReports,savProject,missing-method
setMethod("buildReports", signature(project="savProject", destination="missing"), function(project) { buildReports(project, "./savR-reports")})
#Generic binary parser
#
#@param project SAV project
#@param format savFormat subclass to define data types
#@return sorted data.frame of parsed data)
parseBin <- function(project, format) {
path <- getInterOpFilePath(project, format)
fh <- file(path, "rb")
vers <- readBin(fh, what="integer", endian="little", size=1, signed=F)
if (vers != format@version) {
close(fh)
warning(paste(" the generic savR parser currently only supports version", format@version, "of this SAV file.", format@filename, "is reported as version", vers, "."))
return(NULL)
}
reclen <- readBin(fh, what="integer", endian="little", size=1, signed=F)
if (reclen != sum(format@lengths))
stop(paste("file's declared record size (", reclen, ") does not equal formats declared size (", sum(format@lengths), ")"))
data.f <- parseBinData(project,format,fh)
close(fh)
result <- new("savData", header=list(version=vers, record_length=reclen), data=data.f, accessor=format@accessor)
return(result)
}
parseBinData <- function(project, format, fh) {
readlen <- 0
for (x in project@reads) {
readlen <- readlen + x@cycles
}
proj.size <- 0
if (project@layout@tilenamingconvention == "FiveDigit") {
proj.size <- project@layout@lanecount * project@layout@surfacecount *
project@layout@swathcount * project@layout@sectionperlane *
project@layout@lanepersection * project@layout@tilecount * readlen + 1
} else {
proj.size <- project@layout@lanecount * project@layout@surfacecount *
project@layout@swathcount * project@layout@tilecount * readlen + 1
}
data <- vector("list", proj.size)
r <- 1
while (!isIncomplete(fh)) {
dat <- c()
for (i in 1:length(format@lengths)) {
if (format@type[i] != "integer") {
dat <- c(dat, readBin(fh, what=format@type[i], size=format@lengths[i], endian="little"))
} else if (format@type[i] == "integer" & format@lengths[i] == 2L) {
dat <- c(dat, readBin(fh, what=format@type[i], size=format@lengths[i], endian="little", signed=F))
} else {
# R does not handle 32-bit unsigned int :/
dat <- c(dat, readBin(fh, what=format@type[i], size=format@lengths[i], endian="little"))
}
}
if (length(dat)==0)
break
if(length(dat) == length(format@lengths)) {
data[[r]] <- dat
} else {
warning(format@filename, " prematurely terminated with incomplete row at ", r)
break
}
r <- r + 1
}
# remove NULL rows
data.f <- as.data.frame(do.call("rbind", data[!unlist(lapply(data, is.null))] ))
colnames(data.f) <- format@name
actnum <- length(unique(data.f[,"lane"]))
if (format@filename == "ErrorMetricsOut.bin") {
# no consistent way to determine which lanes were called?
} else if (actnum != project@layout@lanecount) {
stop(paste("number of lanes in data file (", actnum, ") does not equal project configuration value (",
project@layout@lanecount, ") when parsing ", format@filename, sep=""))
}
data.f <- data.f[do.call(order, as.list(data.f[,format@order])),]
return(data.f)
}
#validParser <- function(object) {
# if (length(object@format@name) != length(object@format@type) & length(object@format@type) != length(object@format@size))
# return("length of format parameters are not equal.")
# TRUE
#}
#setValidity("savParser", validParser)
#Get basic flowcell statistics
#
#used to get flowcell information when data object has
#lane, cycle, and tile data.
#
#@param data.frame of parsed data
#@return list of statistics
getFlowcellStats <- function(object) {
retval <- list()
retval$sides <- as.numeric(substring(object$tile,1,1))
retval$swaths <- as.numeric(substring(object$tile,2,2))
retval$tiles <- as.numeric(substring(object$tile,3,4))
retval$nsides <- as.numeric(length(unique(substring(object$tile,1,1))))
retval$nswath <- as.numeric(length(unique(substring(object$tile,2,2))))
retval$ntiles <- as.numeric(substr(max(object$tile),3,4))
retval$ncycle <- max(object$cycle)
retval$nlanes <- max(object$lane)
return(retval)
}
#Add position data to parsed data
#
#Adds and x and a y column to parsed data. These are used for
#laying out tiles in a tile plot. Values are organized by
#lane, then by swath and surface.
#
#@param data data.frame of parsed data
#@return annotated data.frame
addPosition <- function(data) {
##< addPosition
### This is an internal method for annotating flowcell data with XY coordinates
### used in tile plots of flowcell lanes.
stats <- getFlowcellStats(data)
return(cbind(data,
x=( (data$lane-1) * (stats$nswath*stats$nside) + 1 ) +
(stats$swaths-1) +
( (stats$sides-1) * stats$nsides + (stats$sides-1) ),
#y=rep(rep(1:stats$ntiles, stats$nswath*stats$nsides*stats$ncycle), stats$nlanes)
y=stats$tiles
))
}
#Do parsing
#
#After everything is configured, initialize parsing of SAV files.
#
#@param project SAV project
init <- function(project) {
validFormats <- c("savCorrectedIntensityFormat",
"savQualityFormat",
"savQualityFormatV5",
"savTileFormat",
"savExtractionFormat",
"savErrorFormat")
fileSuccess <- list()
for (x in validFormats) {
format <- new(x)
if (is.null(fileSuccess[[format@filename]])) {
fileSuccess[format@filename] <- FALSE
}
filePath <- suppressWarnings(normalizePath(paste(project@location, "InterOp", format@filename, sep="/") ))
if (file.exists(filePath)) {
if (fileSuccess[format@filename] == TRUE || !testVersion(project,format)) next
parsedData <- NULL
data <- NULL
success <- FALSE
tryCatch({
if (format@default == T) {
parsedData <- parseBin(project, format)
} else {
f <- get(paste("parse", x, sep=""))
parsedData <- f(project, format)
}
success <- TRUE
},
error = function(e) {
warning("Unable to parse binary data: ", geterrmessage())
},
finally = {
})
if (success == FALSE) next
fileSuccess[format@filename] <- success
data <- parsedData@data
if (!is.null(data)) {
# don't add position data to tiles
if (class(format)[1] != "savTileFormat" )
data <- addPosition(data)
# removed unparsed date columns
if (class(format)[1] == "savExtractionFormat")
data <- data[,-c(12:13)]
}
parsedData@data <- data
project@parsedData[[x]] <- parsedData
}
}
return(project)
}
#
# test the version of the file against the formatter
testVersion <- function(project, format) {
matched <- FALSE
path <- normalizePath(paste(project@location, "InterOp", format@filename, sep="/"))
fh <- file(path, "rb")
vers <- readBin(fh, what="integer", endian="little", size=1, signed=F)
close(fh)
if (length(vers) == 0) {
warning(paste("Unable to determine file version: empty", format@filename, "binary file?", sep=" "))
vers <- -1
}
if (vers == format@version) {
matched <- TRUE
}
return(matched)
}
getInterOpFilePath <- function(project, format) {
return(normalizePath(paste(project@location, "InterOp", format@filename, sep="/")))
}
#
# taken from: https://tracker.tgac.ac.uk/browse/MISO-138
#
# Quality Metrics (QMetricsOut.bin)
# Format:
# byte 0: file version number (5)
# byte 1: length of each record
# byte 2: quality score binning (byte flag representing if binning was on), if (byte 2 == 1) // quality score binning on
# byte 3: number of quality score bins, B
# bytes 4 - (4+B-1): lower boundary of quality score bins
# bytes (4+B) - (4+2*B-1): upper boundary of quality score bins
# bytes (4+2*B) - (4+3*B-1): remapped scores of quality score bins
# The remaining bytes are for the records, with each record in this format:
# 2 bytes: lane number (uint16)
# 2 bytes: tile number (uint16)
# 2 bytes: cycle number (uint16)
# 4 x 50 bytes: number of clusters assigned score (uint32) Q1 through Q50
# Where N is the record index
#
#
# variable length header SAV Quality Formatter (version 5)
parsesavQualityFormatV5 <- function(project, format) {
path <- getInterOpFilePath(project,format)
fh <- file(path, "rb")
vers <- readBin(fh, what="integer", endian="little", size=1, signed=F)
reclen <- readBin(fh, what="integer", endian="little", size=1, signed=F)
binning <- readBin(fh, what="integer", endian="little", size=1, signed=F)
lowB <- c()
upB <- c()
remapB <- c()
nBins <- 0
if (binning == 1) {
nBins <- readBin(fh, what="integer", endian="little", size=1, signed=F)
for (x in 1:nBins) {
lowB <- c(lowB, readBin(fh, what="integer", endian="little", size=1, signed=F))
}
for (x in 1:nBins) {
upB <- c(upB, readBin(fh, what="integer", endian="little", size=1, signed=F))
}
for (x in 1:nBins) {
remapB <- c(remapB, readBin(fh, what="integer", endian="little", size=1, signed=F))
}
}
# end header processing
parsedData <- new("savData",
header=list(version=vers, record_length=reclen, binning=binning, nBins=nBins,
lowBound=lowB, upperBound=upB, remappedScores=remapB),
data=parseBinData(project,format,fh),
accessor=format@accessor)
close(fh)
return(parsedData)
}
#'@rdname clusterQualityGtN
#'@aliases clusterQualityGtN,savProject,integer,integer,integer
setMethod("clusterQualityGtN", signature(project="savProject", lane="integer", cycle="integer", n="integer"),
function(project, lane, cycle, n=30L) {
if (!all(lane %in% 1:flowcellLayout(project)@lanecount)) {
stop(paste("lane" , lane, "is not consistent with number of lanes on flowcell (", flowcellLayout(project)@lanecount, ")", sep=" "))
}
qm <- qualityMetrics(project)
qm <- qm[qm$lane == lane,]
if (!all(cycle %in% 1:max(qm$cycle))) {
stop(paste("cycles" , cycle, "is not consistent with number of cycles (", max(qm@cycle), ")", sep=" "))
}
qm <- qm[qm$cycle %in% cycle, paste("Q", 1:50, sep="")]
tot <- sum(qm)
return(sum(qm[,paste("Q", n:50, sep="")])/tot)
})
|