Skip to content

Commit b922779

Browse files
committed
Update version
1 parent aaff9e4 commit b922779

File tree

2 files changed

+85
-1
lines changed

2 files changed

+85
-1
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Encoding: UTF-8
22
Type: Package
33
Package: pecotmr
4-
Version: 0.4.0
4+
Version: 0.5.0
55
Date: 2026-02-28
66
Title: Post-GWAS enrichment, colocalization, TWAS and Mendelian Randomization to integrate molecular QTL and GWAS.
77
Description: The majority of the statistical models in pecotmr are based on fine-mapped single effects described in Wang G et al (2020) JRSS-B. It also incorporates wrappers to a series of useful TWAS methods as well as utility functions for QTL and GWAS integration.

pixi.toml

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
[project]
2+
name = "r-pecotmr"
3+
channels = ["dnachun", "conda-forge", "bioconda"]
4+
platforms = ["linux-64", "osx-arm64"]
5+
6+
[system-requirements]
7+
libc = { family="glibc", version="2.17" }
8+
9+
[tasks]
10+
devtools_document = "cd $GITHUB_WORKSPACE; R -e 'devtools::document()'"
11+
devtools_test = "cd $GITHUB_WORKSPACE; R -e 'devtools::test()'"
12+
codecov = "cd $GITHUB_WORKSPACE; R -e 'covr::codecov(quiet = FALSE)'"
13+
rcmdcheck = "cd $GITHUB_WORKSPACE; R -e 'rcmdcheck::rcmdcheck()'"
14+
bioccheck_git_clone = "cd $GITHUB_WORKSPACE; R -e 'BiocCheck::BiocCheckGitClone()'"
15+
bioccheck = "cd $GITHUB_WORKSPACE; R -e 'BiocCheck::BiocCheck()'"
16+
use_major_version = "cd $GITHUB_WORKSPACE; R -e 'usethis::use_version(which = \"major\", push = FALSE)'"
17+
use_minor_version = "cd $GITHUB_WORKSPACE; R -e 'usethis::use_version(which = \"minor\", push = FALSE)'"
18+
use_patch_version = "cd $GITHUB_WORKSPACE; R -e 'usethis::use_version(which = \"patch\", push = FALSE)'"
19+
pkgdown_build = "cd $GITHUB_WORKSPACE; R -e 'pkgdown::build_site_github_pages(new_process = FALSE, install = TRUE)'"
20+
21+
[feature.r44]
22+
dependencies = {"r-base" = "4.4.*"}
23+
24+
[feature.r45]
25+
dependencies = {"r-base" = "4.5.*"}
26+
27+
[environments]
28+
r44 = {features = ["r44"]}
29+
r45 = {features = ["r45"]}
30+
31+
[target.linux-64.dependencies]
32+
"gcc" = "*"
33+
34+
[dependencies]
35+
# "bioconductor-bioccheck" = "*"
36+
"r-covr" = "*"
37+
"r-devtools" = "*"
38+
"r-knitr" = "*"
39+
"r-markdown" = "*"
40+
"r-pkgdown" = "*"
41+
"r-rcmdcheck" = "*"
42+
"r-testthat" = "*"
43+
"r-tidyverse" = "*"
44+
"bioconductor-iranges" = "*"
45+
"bioconductor-qvalue" = "*"
46+
"bioconductor-s4vectors" = "*"
47+
"bioconductor-snpstats" = "*"
48+
"r-base" = "*"
49+
"r-bigsnpr" = "*"
50+
"r-bigstatsr" = "*"
51+
"r-coda" = "*"
52+
"r-coloc" = "*"
53+
"r-colocboost" = "*"
54+
"r-dofuture" = "*"
55+
"r-dplyr" = "*"
56+
"r-flashier" = "*"
57+
"r-fsusier" = "*"
58+
"r-furrr" = "*"
59+
"r-future" = "*"
60+
"r-gbj" = "*"
61+
"r-glmnet" = "*"
62+
"r-harmonicmeanp" = "*"
63+
"r-magrittr" = "*"
64+
"r-mashr" = "*"
65+
"r-matrixstats" = "*"
66+
"r-mr.mashr" = "*"
67+
"r-mvsusier" = "*"
68+
"r-pgenlibr" = "*"
69+
"r-purrr" = "*"
70+
"r-qgg" = "*"
71+
"r-quadprog" = "*"
72+
"r-quantreg" = "*"
73+
"r-rcpp" = "*"
74+
"r-rcpparmadillo" = "*"
75+
"r-readr" = "*"
76+
"r-rfast" = "*"
77+
"r-rlang" = "*"
78+
"r-stringr" = "*"
79+
"r-susier" = "*"
80+
"r-tibble" = "*"
81+
"r-tidyr" = "*"
82+
"r-vctrs" = "*"
83+
"r-vroom" = "*"
84+
"r-xicor" = "*"

0 commit comments

Comments
 (0)