-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* first commit * added pulsar code, tests, docs * fixed readme, description for travis * fixed adding pulsar.params to call * fixed biocview * update travis.yml * fix docs to pass checks * remove writes in tests * modify test * merge master
- Loading branch information
Showing
60 changed files
with
1,535 additions
and
867 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,5 +1,5 @@ | ||
^.*\.BatchJobs.*\.R$ | ||
^README\.Rmd$ | ||
^README\.log$ | ||
^figure$ | ||
## Ignore build and temp file | ||
^\.travis\.yml$ | ||
^figure* | ||
^\.README\.RData$ | ||
^README\.Rmd$ |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
language: r | ||
cache: packages | ||
sudo: false | ||
use_bioc: true | ||
bioc_required: true |
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,24 +1,36 @@ | ||
Package: SpiecEasi | ||
Title: Sparse Inverse Covariance for Ecological Statistical Inference | ||
Version: 0.1.4 | ||
Authors.R: c(person("Zachary", "Kurtz", role = c("aut", "cre"), | ||
email="[email protected]"), person("Christian", | ||
"Mueller", role = c("aut")), person("Emily", "Miraldi", | ||
role=c("aut")), person("Richard", "Bonneau", role=c("aut"))) | ||
Description: Estimate networks from the precision matrix of compositional | ||
microbial abundance data | ||
Version: 1.0.0 | ||
Authors@R: c( | ||
person("Zachary", "Kurtz", role = c("aut", "cre"), email="[email protected]"), | ||
person("Christian", "Mueller", role = "aut"), | ||
person("Emily", "Miraldi", role="aut"), | ||
person("Richard", "Bonneau", role="aut"), | ||
person("Laura", "Tipton", role="ctb")) | ||
Description: Estimate networks from the precision matrix of compositional microbial abundance data. | ||
Encoding: UTF-8 | ||
Depends: | ||
R (>= 3.0.0), | ||
R (>= 3.3.0), | ||
Imports: | ||
huge, | ||
MASS, | ||
VGAM, | ||
Matrix | ||
stats, | ||
methods, | ||
graphics, | ||
grDevices, | ||
huge, | ||
pulsar, | ||
MASS, | ||
VGAM, | ||
Matrix | ||
Suggests: | ||
parallel, | ||
boot, | ||
phyloseq, | ||
testthat | ||
License: getOptions('devtools.desc.license') | ||
parallel, | ||
boot, | ||
phyloseq, | ||
igraph, | ||
batchtools, | ||
testthat | ||
Remotes: | ||
bioc::phyloseq | ||
biocViews: | ||
License: GPL (>= 2) | ||
LazyData: true | ||
RoxygenNote: 6.0.1 |
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
Oops, something went wrong.