-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpixi.toml
More file actions
54 lines (47 loc) · 1.63 KB
/
pixi.toml
File metadata and controls
54 lines (47 loc) · 1.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[project]
name = "r-smashr"
channels = ["dnachun", "conda-forge", "bioconda"]
platforms = ["linux-64", "osx-arm64"]
[system-requirements]
libc = { family="glibc", version="2.17" }
[tasks]
devtools_document = "cd $GITHUB_WORKSPACE; R -e 'devtools::document()'"
devtools_test = "cd $GITHUB_WORKSPACE; R -e 'devtools::test()'"
codecov = "cd $GITHUB_WORKSPACE; R -e 'covr::codecov(quiet = FALSE)'"
build = "cd $GITHUB_WORKSPACE; R -e 'devtools::build()'"
rcmdcheck = "cd $GITHUB_WORKSPACE; R -e 'pkg <- list.files(\"..\", pattern = \".tar.gz\", full.names = TRUE); rcmdcheck::rcmdcheck(path = pkg[1], args = c(\"--as-cran\", \"--no-manual\"))'"
use_major_version = "cd $GITHUB_WORKSPACE; R -e 'usethis::Use_version(which = \"major\", push = FALSE)'"
use_minor_version = "cd $GITHUB_WORKSPACE; R -e 'usethis::use_version(which = \"minor\", push = FALSE)'"
use_patch_version = "cd $GITHUB_WORKSPACE; R -e 'usethis::use_version(which = \"patch\", push = FALSE)'"
pkgdown_build = "cd $GITHUB_WORKSPACE; R -e 'pkgdown::build_site_github_pages(new_process = FALSE, install = TRUE)'"
[feature.r43]
dependencies = {"r-base" = "4.3.*"}
[feature.r44]
dependencies = {"r-base" = "4.4.*"}
[environments]
r43 = {features = ["r43"]}
r44 = {features = ["r44"]}
[target.linux-64.dependencies]
"gcc" = "*"
[dependencies]
"r-abind" = "*"
"r-ashr" = "*"
"r-cowplot" = "*"
"r-ggplot2" = "*"
"r-ggrepel" = "*"
"r-mashr" = "*"
"r-matrix" = "*"
"r-matrixstats" = "*"
"r-mvtnorm" = "*"
"r-progress" = "*"
"r-r6" = "*"
"r-susier" = "*"
"r-covr" = "*"
"r-devtools" = "*"
"r-knitr" = "*"
"r-microbenchmark" = "*"
"r-pryr" = "*"
"r-reshape" = "*"
"r-rmarkdown" = "*"
"r-usethis" = "*"
"qpdf" = "*"