Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions R/parseOutput.R
Original file line number Diff line number Diff line change
Expand Up @@ -1476,9 +1476,9 @@ extractCovarianceCoverage <- function(outfiletext, filename) {

covcoverageList <- list()

covcoverageSubsections <- getMultilineSection("PROPORTION OF DATA PRESENT( FOR [\\w\\d\\s\\.,_]+)*",
covcoverageSubsections <- getMultilineSection("PROPORTION OF DATA PRESENT FOR \\w+(?:\\s+\\(\\d+\\))*\\s*$",
covcoverageSection, filename, allowMultiple=TRUE)

matchlines <- attr(covcoverageSubsections, "matchlines")

if (length(covcoverageSubsections) == 0 || all(is.na(covcoverageSubsections))) { #See UG ex9.7.out
Expand Down