Skip to content

Commit 6268c2c

Browse files
authored
Merge pull request #624 from remlapmot/devel-2
TwoSampleMR v0.6.15
2 parents df57c4b + a59932c commit 6268c2c

File tree

4 files changed

+14
-6
lines changed

4 files changed

+14
-6
lines changed

.github/workflows/check-full.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ jobs:
3535
- {os: ubuntu-latest, r: 'oldrel-2'}
3636
- {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'}
3737
- {os: ubuntu-latest, r: '4.3.2'}
38+
- {os: ubuntu-latest, r: 'oldrel-3'}
39+
- {os: ubuntu-latest, r: 'oldrel-4'}
3840
- {os: macos-15, r: 'release'}
3941
- {os: macos-13, r: 'release'}
4042
# - {os: ubuntu-24.04-arm, r: 'release', rspm: 'no' }
@@ -62,7 +64,7 @@ jobs:
6264
- uses: r-lib/actions/setup-r-dependencies@v2
6365
with:
6466
extra-packages: >
65-
any::rcmdcheck, MendelianRandomization=?ignore-before-r=4.4.0
67+
any::rcmdcheck, MendelianRandomization=?ignore-before-r=4.4.0, car=?ignore-before-r=4.3.2
6668
needs: check
6769
upgrade: 'TRUE'
6870

DESCRIPTION

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: TwoSampleMR
22
Title: Two Sample MR Functions and Interface to MRC Integrative
33
Epidemiology Unit OpenGWAS Database
4-
Version: 0.6.14
4+
Version: 0.6.15
55
Authors@R: c(
66
person("Gibran", "Hemani", , "[email protected]", role = c("aut", "cre"),
77
comment = c(ORCID = "0000-0003-0920-1055")),
@@ -25,7 +25,7 @@ URL: https://github.com/MRCIEU/TwoSampleMR,
2525
https://mrcieu.github.io/TwoSampleMR/
2626
BugReports: https://github.com/MRCIEU/TwoSampleMR/issues/
2727
Depends:
28-
R (>= 4.0.0)
28+
R (>= 4.1.0)
2929
Imports:
3030
cowplot,
3131
data.table,
@@ -49,7 +49,7 @@ Imports:
4949
RadialMR,
5050
reshape2,
5151
rmarkdown
52-
Suggests:
52+
Suggests:
5353
Cairo,
5454
car,
5555
markdown,
@@ -59,7 +59,7 @@ Suggests:
5959
randomForest,
6060
testthat,
6161
tidyr
62-
VignetteBuilder:
62+
VignetteBuilder:
6363
knitr
6464
Remotes:
6565
gqi/MRMix,

NEWS.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# TwoSampleMR v0.6.15
2+
3+
(Release date 2025-05-01)
4+
5+
* Bumped the minimum required version of R to 4.1.0. This is due to a dependency (the scales package) of a dependency (the ggplot2 package), which now has this requirement.
6+
17
# TwoSampleMR v0.6.14
28

39
(Release date 2025-03-28)

inst/sandpit/test_mr_sign.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
# Use binomial test assuming that on average should be 50% under the null hypothesis
55

6-
# What is the minumum number of SNPs required to achieve p-value of 0.05?
6+
# What is the minimum number of SNPs required to achieve p-value of 0.05?
77

88
param <- expand.grid(n = 1:100, x=0:100)
99
param <- subset(param, x <= n)

0 commit comments

Comments
 (0)