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

CHECK report for gCrisprTools on celaya2

This page was generated on 2019-04-09 13:16:50 -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 02:05:16 -0400 (Tue, 09 Apr 2019)
EndedAt: 2019-04-09 02:13:22 -0400 (Tue, 09 Apr 2019)
EllapsedTime: 486.8 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) (2019-03-18 r76245)
* 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: 0x7f800326faf0>
<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’ ...
** using staged installation
** 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 from temporary location
Warning: Package 'gCrisprTools' is deprecated and will be removed from
  Bioconductor version 3.10
** testing if installed package can be loaded from final location
Warning: Package 'gCrisprTools' is deprecated and will be removed from
  Bioconductor version 3.10
** testing if installed package keeps a record of temporary installation path
* DONE (gCrisprTools)

Tests output

gCrisprTools.Rcheck/tests/unit.tests.Rout


R Under development (unstable) (2019-03-18 r76245) -- "Unsuffered Consequences"
Copyright (C) 2019 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 02:13:12 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 
  5.689   0.705   6.341 

Example timings

gCrisprTools.Rcheck/gCrisprTools-Ex.timings

nameusersystemelapsed
aln0.0040.0030.007
ann0.1510.0160.167
ct.DirectionalTests0.6800.3841.063
ct.GCbias5.6420.6626.321
ct.PRC1.0640.0401.109
ct.PantherPathwayEnrichment147.183 8.385157.219
ct.ROC0.1820.0620.244
ct.RRAaPvals0.4400.1510.591
ct.RRAalpha0.3680.1430.512
ct.alignmentChart0.0090.0030.011
ct.alphaBeta0.0190.0010.020
ct.ecdf0.0010.0000.001
ct.filterReads0.4020.1400.542
ct.gRNARankByReplicate0.5010.1980.700
ct.generateResults0.7400.1980.939
ct.guideCDF21.13317.22038.355
ct.inputCheck0.1250.0140.139
ct.makeContrastReport22.304 4.90027.452
ct.makeQCReport11.938 1.56412.815
ct.makeReport51.339 8.17358.927
ct.normalizeBySlope1.0540.1631.219
ct.normalizeGuides3.3660.6314.021
ct.normalizeMedians0.6720.1240.805
ct.normalizeNTC0.9130.1391.059
ct.normalizeSpline1.0520.1981.251
ct.prepareAnnotation0.7420.4101.152
ct.preprocessFit3.6570.0863.744
ct.rawCountDensities0.1540.0210.177
ct.resultCheck0.1180.0110.129
ct.stackGuides6.9111.9818.892