Back to Multiple platform build/check report for BioC 3.9
ABCDEF[G]HIJKLMNOPQRSTUVWXYZ

CHECK report for gCrisprTools on merida2

This page was generated on 2019-04-09 13:33:54 -0400 (Tue, 09 Apr 2019).

Package 603/1703HostnameOS / ArchINSTALLBUILDCHECKBUILD BIN
gCrisprTools 1.11.2
Peter Haverty
Snapshot Date: 2019-04-08 17:01:18 -0400 (Mon, 08 Apr 2019)
URL: https://git.bioconductor.org/packages/gCrisprTools
Branch: master
Last Commit: 46e2014
Last Changed Date: 2019-02-22 08:06:08 -0400 (Fri, 22 Feb 2019)
malbec2 Linux (Ubuntu 18.04.2 LTS) / x86_64  OK  OK  ERROR 
tokay2 Windows Server 2012 R2 Standard / x64  OK  OK  ERROR  OK 
celaya2 OS X 10.11.6 El Capitan / x86_64  OK  OK  ERROR  OK 
merida2 OS X 10.11.6 El Capitan / x86_64  OK  OK [ ERROR ] OK 

Summary

Package: gCrisprTools
Version: 1.11.2
Command: /Library/Frameworks/R.framework/Versions/Current/Resources/bin/R CMD check --install=check:gCrisprTools.install-out.txt --library=/Library/Frameworks/R.framework/Versions/Current/Resources/library --no-vignettes --timings gCrisprTools_1.11.2.tar.gz
StartedAt: 2019-04-09 01:00:18 -0400 (Tue, 09 Apr 2019)
EndedAt: 2019-04-09 01:06:56 -0400 (Tue, 09 Apr 2019)
EllapsedTime: 397.5 seconds
RetCode: 1
Status:  ERROR 
CheckDir: gCrisprTools.Rcheck
Warnings: NA

Command output

##############################################################################
##############################################################################
###
### Running command:
###
###   /Library/Frameworks/R.framework/Versions/Current/Resources/bin/R CMD check --install=check:gCrisprTools.install-out.txt --library=/Library/Frameworks/R.framework/Versions/Current/Resources/library --no-vignettes --timings gCrisprTools_1.11.2.tar.gz
###
##############################################################################
##############################################################################


* using log directory ‘/Users/biocbuild/bbs-3.9-bioc/meat/gCrisprTools.Rcheck’
* using R Under development (unstable) (2018-11-27 r75683)
* using platform: x86_64-apple-darwin15.6.0 (64-bit)
* using session charset: UTF-8
* using option ‘--no-vignettes’
* checking for file ‘gCrisprTools/DESCRIPTION’ ... OK
* checking extension type ... Package
* this is package ‘gCrisprTools’ version ‘1.11.2’
* checking package namespace information ... OK
* checking package dependencies ... OK
* checking if this is a source package ... OK
* checking if there is a namespace ... OK
* checking for hidden files and directories ... OK
* checking for portable file names ... OK
* checking for sufficient/correct file permissions ... OK
* checking whether package ‘gCrisprTools’ can be installed ... WARNING
Found the following significant warnings:
  Warning: Package 'gCrisprTools' is deprecated and will be removed from
See ‘/Users/biocbuild/bbs-3.9-bioc/meat/gCrisprTools.Rcheck/00install.out’ for details.
* checking installed package size ... NOTE
  installed size is  8.1Mb
  sub-directories of 1Mb or more:
    data   2.3Mb
* checking package directory ... OK
* checking ‘build’ directory ... OK
* checking DESCRIPTION meta-information ... OK
* checking top-level files ... OK
* checking for left-over files ... OK
* checking index information ... OK
* checking package subdirectories ... OK
* checking R files for non-ASCII characters ... OK
* checking R files for syntax errors ... OK
* checking whether the package can be loaded ... OK
* checking whether the package can be loaded with stated dependencies ... OK
* checking whether the package can be unloaded cleanly ... OK
* checking whether the namespace can be loaded with stated dependencies ... OK
* checking whether the namespace can be unloaded cleanly ... OK
* checking dependencies in R code ... OK
* checking S3 generic/method consistency ... OK
* checking replacement functions ... OK
* checking foreign function calls ... OK
* checking R code for possible problems ... OK
* checking Rd files ... OK
* checking Rd metadata ... OK
* checking Rd cross-references ... OK
* checking for missing documentation entries ... OK
* checking for code/documentation mismatches ... OK
* checking Rd \usage sections ... OK
* checking Rd contents ... OK
* checking for unstated dependencies in examples ... OK
* checking contents of ‘data’ directory ... OK
* checking data for non-ASCII characters ... OK
* checking data for ASCII and uncompressed saves ... OK
* checking files in ‘vignettes’ ... OK
* checking examples ... ERROR
Running examples in ‘gCrisprTools-Ex.R’ failed
The error most likely occurred in:

> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: ct.targetSetEnrichment
> ### Title: Test Whether a Specified Target Set is Enriched Within a Pooled
> ###   Screen
> ### Aliases: ct.targetSetEnrichment
> 
> ### ** Examples
> 
> data(resultsDF)
> tar <-  sample(unique(resultsDF$geneID), 20)
> res <- ct.targetSetEnrichment(resultsDF, tar)
 ----------- FAILURE REPORT -------------- 
 --- failure: the condition has length > 1 ---
 --- srcref --- 
: 
 --- package (from environment) --- 
gCrisprTools
 --- call from context --- 
ct.targetSetEnrichment(resultsDF, tar)
 --- call from argument --- 
if (!(enrich %in% c(TRUE, FALSE))) {
    stop("enrich must be either TRUE or FALSE.")
}
 --- R stacktrace ---
where 1: ct.targetSetEnrichment(resultsDF, tar)

 --- value of length: 2 type: logical ---
[1] FALSE FALSE
 --- function from context --- 
function (summaryDF, targets, enrich = c(TRUE, FALSE), ignore = NULL) 
{
    if (!ct.resultCheck(summaryDF)) {
        stop("Execution halted.")
    }
    if (!(enrich %in% c(TRUE, FALSE))) {
        stop("enrich must be either TRUE or FALSE.")
    }
    valid <- intersect(targets, summaryDF$geneID)
    if (length(valid) == 0) {
        stop("None of the targets in the supplied vector are contained in the geneID column of the summary dataframe.")
    }
    if (length(setdiff(targets, valid)) != 0) {
        warning(paste("Not all of the supplied targets are present in the geneID column of the summary dataframe. Proceeding with", 
            length(valid), "targets."))
    }
    summaryDF <- summaryDF[!duplicated(summaryDF$geneID), ]
    summaryDF <- summaryDF[!is.na(summaryDF$geneID), ]
    summaryDF <- summaryDF[!grepl("NoTarget", summaryDF$geneSymbol), 
        ]
    if (!is.null(ignore)) {
        summaryDF <- summaryDF[!(summaryDF$geneID %in% ignore), 
            ]
    }
    if (enrich) {
        selected <- summaryDF[, c("Target-level Enrichment P", 
            "Target-level Enrichment Q")]
    }
    else {
        selected <- summaryDF[, c("Target-level Depletion P", 
            "Target-level Depletion Q")]
    }
    row.names(selected) <- summaryDF$geneID
    cuts <- c(0, 1/(10^(5:1)), 0.5, 1)
    out <- list(targets = valid)
    out$P.values <- cbind(cuts, vapply(cuts, function(x) {
        sum(selected[valid, 1] <= x)
    }, numeric(1)), vapply(cuts, function(x) {
        .doHyperGInternal(length(valid), nrow(selected), sum(selected[, 
            1] <= x), sum(selected[valid, 1] <= x), TRUE)$p
    }, numeric(1)))
    out$Q.values <- cbind(cuts, vapply(cuts, function(x) {
        sum(selected[valid, 2] <= x)
    }, numeric(1)), vapply(cuts, function(x) {
        .doHyperGInternal(length(valid), nrow(selected), sum(selected[, 
            2] <= x), sum(selected[valid, 2] <= x), TRUE)$p
    }, numeric(1)))
    colnames(out$P.values) <- colnames(out$Q.values) <- c("Cutoff", 
        "Sig", "Hypergeometric_P")
    return(out)
}
<bytecode: 0x7fd737a08920>
<environment: namespace:gCrisprTools>
 --- function search by body ---
Function ct.targetSetEnrichment in namespace gCrisprTools has this body.
 ----------- END OF FAILURE REPORT -------------- 
Fatal error: the condition has length > 1
* checking for unstated dependencies in ‘tests’ ... OK
* checking tests ...
  Running ‘unit.tests.R’
 OK
* checking for unstated dependencies in vignettes ... OK
* checking package vignettes in ‘inst/doc’ ... OK
* checking running R code from vignettes ... SKIPPED
* checking re-building of vignette outputs ... SKIPPED
* checking PDF version of manual ... OK
* DONE

Status: 1 ERROR, 1 WARNING, 1 NOTE
See
  ‘/Users/biocbuild/bbs-3.9-bioc/meat/gCrisprTools.Rcheck/00check.log’
for details.


Installation output

gCrisprTools.Rcheck/00install.out

##############################################################################
##############################################################################
###
### Running command:
###
###   /Library/Frameworks/R.framework/Versions/Current/Resources/bin/R CMD INSTALL gCrisprTools
###
##############################################################################
##############################################################################


* installing to library ‘/Library/Frameworks/R.framework/Versions/3.6/Resources/library’
* installing *source* package ‘gCrisprTools’ ...
** R
** data
** inst
** byte-compile and prepare package for lazy loading
** help
*** installing help indices
** building package indices
** installing vignettes
** testing if installed package can be loaded
Warning: Package 'gCrisprTools' is deprecated and will be removed from
  Bioconductor version 3.10
* DONE (gCrisprTools)

Tests output

gCrisprTools.Rcheck/tests/unit.tests.Rout


R Under development (unstable) (2018-11-27 r75683) -- "Unsuffered Consequences"
Copyright (C) 2018 The R Foundation for Statistical Computing
Platform: x86_64-apple-darwin15.6.0 (64-bit)

R is free software and comes with ABSOLUTELY NO WARRANTY.
You are welcome to redistribute it under certain conditions.
Type 'license()' or 'licence()' for distribution details.

R is a collaborative project with many contributors.
Type 'contributors()' for more information and
'citation()' on how to cite R or R packages in publications.

Type 'demo()' for some demos, 'help()' for on-line help, or
'help.start()' for an HTML browser interface to help.
Type 'q()' to quit R.

> #require("BiocGenerics", quietly = TRUE)
> BiocGenerics:::testPackage("gCrisprTools")
PANTHER.db version 1.0.4


RUNIT TEST PROTOCOL -- Tue Apr  9 01:06:36 2019 
*********************************************** 
Number of test functions: 0 
Number of errors: 0 
Number of failures: 0 

 
1 Test Suite : 
gCrisprTools RUnit Tests - 0 test functions, 0 errors, 0 failures
Number of test functions: 0 
Number of errors: 0 
Number of failures: 0 
Warning message:
Package 'gCrisprTools' is deprecated and will be removed from
  Bioconductor version 3.10 
> 
> proc.time()
   user  system elapsed 
  4.414   0.293   4.703 

Example timings

gCrisprTools.Rcheck/gCrisprTools-Ex.timings

nameusersystemelapsed
aln0.0040.0010.006
ann0.1170.0080.127
ct.DirectionalTests0.5900.1830.776
ct.GCbias5.7060.5166.283
ct.PRC1.2220.0881.326
ct.PantherPathwayEnrichment117.220 4.423123.117
ct.ROC0.2080.0430.255
ct.RRAaPvals0.4770.0920.571
ct.RRAalpha0.3120.0890.404
ct.alignmentChart0.0080.0010.008
ct.alphaBeta0.0120.0010.014
ct.ecdf0.0010.0000.002
ct.filterReads0.3750.0930.469
ct.gRNARankByReplicate0.4990.1170.621
ct.generateResults0.7200.1200.847
ct.guideCDF18.372 8.90227.400
ct.inputCheck0.1110.0050.117
ct.makeContrastReport19.366 2.37421.804
ct.makeQCReport10.997 1.12411.614
ct.makeReport45.889 4.53650.189
ct.normalizeBySlope1.0420.0951.139
ct.normalizeGuides3.1110.6213.841
ct.normalizeMedians0.6690.0990.779
ct.normalizeNTC0.9050.2451.159
ct.normalizeSpline1.0490.1331.194
ct.prepareAnnotation0.6320.1070.749
ct.preprocessFit2.9700.0493.031
ct.rawCountDensities0.1500.0150.165
ct.resultCheck0.1270.0090.136
ct.stackGuides6.5831.3307.976