-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
replace std::random_shuffle() with std::shuffle()
- Loading branch information
1 parent
ea42bc4
commit 2095e82
Showing
4 changed files
with
26 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,7 @@ | ||
Package: scde | ||
Type: Package | ||
Title: Single Cell Differential Expression | ||
Version: 2.26.2 | ||
Date: 2016-01-20 | ||
Version: 2.27.1 | ||
Description: The scde package implements a set of statistical methods for | ||
analyzing single-cell RNA-seq data. scde fits individual error models for | ||
single-cell RNA-seq measurements. These models can then be used for assessment | ||
|
@@ -18,16 +17,17 @@ Description: The scde package implements a set of statistical methods for | |
transcriptional heterogeneity through pathway and gene set overdispersion | ||
analysis" (Fan J, Salathia N, Liu R, Kaeser G, Yung Y, Herman J, Kaper F, | ||
Fan JB, Zhang K, Chun J, and Kharchenko PV, Nature Methods, doi:10.1038/nmeth.3734). | ||
Author: Peter Kharchenko [aut, cre], | ||
Jean Fan [aut] | ||
Author: Peter Kharchenko [aut, cre], Jean Fan [aut], Evan Biederstedt [aut] | ||
Authors@R: c( | ||
person("Peter", "Kharchenko", role = c("aut", "cre"), | ||
email = "[email protected]"), | ||
email = "[email protected]"), | ||
person("Jean", "Fan", role = "aut", | ||
email = "[email protected]", | ||
comment = c(ORCID = "0000-0002-0212-5451")) | ||
) | ||
Maintainer: Jean Fan <[email protected]> | ||
email = "[email protected]", | ||
comment = c(ORCID = "0000-0002-0212-5451")), | ||
person("Evan", "Biederstedt", role = "aut", | ||
email = "[email protected]") | ||
) | ||
Maintainer: Evan Biederstedt <[email protected]> | ||
URL: http://pklab.med.harvard.edu/scde | ||
BugReports: https://github.com/hms-dbmi/scde/issues | ||
License: GPL-2 | ||
|
@@ -36,17 +36,11 @@ Depends: R (>= 3.0.0), flexmix | |
Imports: Rcpp (>= 0.10.4), RcppArmadillo (>= 0.5.400.2.0), mgcv, Rook, | ||
rjson, MASS, Cairo, RColorBrewer, edgeR, quantreg, methods, | ||
nnet, RMTstat, extRemes, pcaMethods, BiocParallel, parallel | ||
Suggests: knitr, cba, fastcluster, WGCNA, GO.db, org.Hs.eg.db, | ||
rmarkdown | ||
biocViews: ImmunoOncology, RNASeq, StatisticalMethod, | ||
DifferentialExpression, Bayesian, Transcription, Software | ||
Suggests: knitr, cba, fastcluster, WGCNA, GO.db, org.Hs.eg.db, rmarkdown | ||
biocViews: ImmunoOncology, RNASeq, StatisticalMethod, DifferentialExpression, Bayesian, | ||
Transcription, Software | ||
LinkingTo: Rcpp, RcppArmadillo | ||
VignetteBuilder: knitr | ||
Packaged: 2023-01-19 22:55:25 UTC; biocbuild | ||
Packaged: 2015-11-02 14:30:04 UTC; reyes | ||
RoxygenNote: 5.0.0 | ||
NeedsCompilation: yes | ||
git_url: https://git.bioconductor.org/packages/scde | ||
git_branch: RELEASE_3_16 | ||
git_last_commit: 42cdc08 | ||
git_last_commit_date: 2023-01-19 | ||
Date/Publication: 2023-01-19 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,2 @@ | ||
## Use the R_HOME indirection to support installations of multiple R version | ||
PKG_LIBS = `$(R_HOME)/bin/Rscript -e "Rcpp:::LdFlags()"` $(LAPACK_LIBS) $(BLAS_LIBS) $(FLIBS) | ||
|
||
|
||
PKG_CXXFLAGS=$(SHLIB_OPENMP_CXXFLAGS) | ||
PKG_LIBS=-L/usr/lib/ -L"." -lpthread -lm `$(R_HOME)/bin/Rscript -e "Rcpp:::LdFlags()"` $(LAPACK_LIBS) $(BLAS_LIBS) $(FLIBS) $(SHLIB_OPENMP_CXXFLAGS) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,2 @@ | ||
|
||
## This assume that we can call Rscript to ask Rcpp about its locations | ||
## Use the R_HOME indirection to support installations of multiple R version | ||
PKG_LIBS = $(shell $(R_HOME)/bin/Rscript.exe -e "Rcpp:::LdFlags()") $(LAPACK_LIBS) $(BLAS_LIBS) $(FLIBS) | ||
|
||
PKG_CXXFLAGS=$(SHLIB_OPENMP_CXXFLAGS) | ||
PKG_LIBS=-L/usr/lib/ -L"." -lpthread -lm $(shell "${R_HOME}/bin${R_ARCH_BIN}/Rscript.exe" -e "Rcpp:::LdFlags()") $(LAPACK_LIBS) $(BLAS_LIBS) $(FLIBS) $(SHLIB_OPENMP_CXXFLAGS) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters