├── .Rbuildignore ├── .gitattributes ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ └── pkgdown.yaml ├── .gitignore ├── .lintr ├── DESCRIPTION ├── MVMR.Rproj ├── NAMESPACE ├── NEWS.md ├── R ├── format_function.R ├── ivw_mvmr.R ├── mrmvinput_to_mvmr_format.R ├── mvmr.R ├── phenocov_mvmr.R ├── pleiotropy_mvmr.R ├── qhet_mvmr.R ├── rawdat_mvmr.R ├── snpcov_mvmr.R ├── strength_mvmr.R └── strhet_mvmr.R ├── README.md ├── _pkgdown.yml ├── data └── rawdat_mvmr.RData ├── inst └── CITATION ├── man ├── format_mvmr.Rd ├── ivw_mvmr.Rd ├── mrmvinput_to_mvmr_format.Rd ├── mvmr.Rd ├── phenocov_mvmr.Rd ├── pleiotropy_mvmr.Rd ├── qhet_mvmr.Rd ├── rawdat_mvmr.Rd ├── snpcov_mvmr.Rd ├── strength_mvmr.Rd └── strhet_mvmr.Rd ├── pkgdown └── extra.css └── vignettes ├── MVMR.rmd ├── png └── workflow.png └── refs.bib /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSpiller/MVMR/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSpiller/MVMR/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSpiller/MVMR/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSpiller/MVMR/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSpiller/MVMR/HEAD/.gitignore -------------------------------------------------------------------------------- /.lintr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSpiller/MVMR/HEAD/.lintr -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSpiller/MVMR/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /MVMR.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSpiller/MVMR/HEAD/MVMR.Rproj -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSpiller/MVMR/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSpiller/MVMR/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/format_function.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSpiller/MVMR/HEAD/R/format_function.R -------------------------------------------------------------------------------- /R/ivw_mvmr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSpiller/MVMR/HEAD/R/ivw_mvmr.R -------------------------------------------------------------------------------- /R/mrmvinput_to_mvmr_format.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSpiller/MVMR/HEAD/R/mrmvinput_to_mvmr_format.R -------------------------------------------------------------------------------- /R/mvmr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSpiller/MVMR/HEAD/R/mvmr.R -------------------------------------------------------------------------------- /R/phenocov_mvmr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSpiller/MVMR/HEAD/R/phenocov_mvmr.R -------------------------------------------------------------------------------- /R/pleiotropy_mvmr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSpiller/MVMR/HEAD/R/pleiotropy_mvmr.R -------------------------------------------------------------------------------- /R/qhet_mvmr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSpiller/MVMR/HEAD/R/qhet_mvmr.R -------------------------------------------------------------------------------- /R/rawdat_mvmr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSpiller/MVMR/HEAD/R/rawdat_mvmr.R -------------------------------------------------------------------------------- /R/snpcov_mvmr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSpiller/MVMR/HEAD/R/snpcov_mvmr.R -------------------------------------------------------------------------------- /R/strength_mvmr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSpiller/MVMR/HEAD/R/strength_mvmr.R -------------------------------------------------------------------------------- /R/strhet_mvmr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSpiller/MVMR/HEAD/R/strhet_mvmr.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSpiller/MVMR/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSpiller/MVMR/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /data/rawdat_mvmr.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSpiller/MVMR/HEAD/data/rawdat_mvmr.RData -------------------------------------------------------------------------------- /inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSpiller/MVMR/HEAD/inst/CITATION -------------------------------------------------------------------------------- /man/format_mvmr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSpiller/MVMR/HEAD/man/format_mvmr.Rd -------------------------------------------------------------------------------- /man/ivw_mvmr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSpiller/MVMR/HEAD/man/ivw_mvmr.Rd -------------------------------------------------------------------------------- /man/mrmvinput_to_mvmr_format.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSpiller/MVMR/HEAD/man/mrmvinput_to_mvmr_format.Rd -------------------------------------------------------------------------------- /man/mvmr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSpiller/MVMR/HEAD/man/mvmr.Rd -------------------------------------------------------------------------------- /man/phenocov_mvmr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSpiller/MVMR/HEAD/man/phenocov_mvmr.Rd -------------------------------------------------------------------------------- /man/pleiotropy_mvmr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSpiller/MVMR/HEAD/man/pleiotropy_mvmr.Rd -------------------------------------------------------------------------------- /man/qhet_mvmr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSpiller/MVMR/HEAD/man/qhet_mvmr.Rd -------------------------------------------------------------------------------- /man/rawdat_mvmr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSpiller/MVMR/HEAD/man/rawdat_mvmr.Rd -------------------------------------------------------------------------------- /man/snpcov_mvmr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSpiller/MVMR/HEAD/man/snpcov_mvmr.Rd -------------------------------------------------------------------------------- /man/strength_mvmr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSpiller/MVMR/HEAD/man/strength_mvmr.Rd -------------------------------------------------------------------------------- /man/strhet_mvmr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSpiller/MVMR/HEAD/man/strhet_mvmr.Rd -------------------------------------------------------------------------------- /pkgdown/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSpiller/MVMR/HEAD/pkgdown/extra.css -------------------------------------------------------------------------------- /vignettes/MVMR.rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSpiller/MVMR/HEAD/vignettes/MVMR.rmd -------------------------------------------------------------------------------- /vignettes/png/workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSpiller/MVMR/HEAD/vignettes/png/workflow.png -------------------------------------------------------------------------------- /vignettes/refs.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSpiller/MVMR/HEAD/vignettes/refs.bib --------------------------------------------------------------------------------