├── .Rbuildignore ├── .gitattributes ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ └── pkgdown.yaml ├── .gitignore ├── .pre_script_build.sh ├── DESCRIPTION ├── HGNChelper.Rproj ├── NAMESPACE ├── NEWS ├── R ├── HGNChelper-package.R ├── affyToR.R ├── checkGeneSymbols.R ├── data.R ├── findExcelGeneSymbols.R ├── getCurrentMaps.R ├── rToAffy.R ├── rToSymbol.R ├── symbolToR.R └── zzz.R ├── README.md ├── _pkgdown.yml ├── data ├── hgnc.table.rda └── mouse.table.rda ├── inst ├── CITATION ├── analyses │ ├── Examples.Rmd │ ├── gpls_already_tested.csv │ ├── msigdb.v7.0.symbols.gmt │ ├── platform.csv │ └── test_GPLs.R └── extdata │ ├── HGNChelper_mog_map_MGI_AMC_2016_03_30.csv │ ├── date_of_last_update.txt │ └── mog_map.csv ├── man ├── HGNChelper-package.Rd ├── affyToR.Rd ├── checkGeneSymbols.Rd ├── findExcelGeneSymbols.Rd ├── getCurrentMaps.Rd ├── hgnc.table.Rd ├── mouse.table.Rd ├── rToAffy.Rd ├── rToSymbol.Rd └── symbolToR.Rd ├── tests ├── testthat.R └── testthat │ ├── test_checkGeneSymbols.R │ └── test_miscfunctions.R ├── update.sh └── vignettes ├── 0DaysSince.png └── index.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waldronlab/HGNChelper/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waldronlab/HGNChelper/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waldronlab/HGNChelper/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waldronlab/HGNChelper/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre_script_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waldronlab/HGNChelper/HEAD/.pre_script_build.sh -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waldronlab/HGNChelper/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /HGNChelper.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waldronlab/HGNChelper/HEAD/HGNChelper.Rproj -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waldronlab/HGNChelper/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waldronlab/HGNChelper/HEAD/NEWS -------------------------------------------------------------------------------- /R/HGNChelper-package.R: -------------------------------------------------------------------------------- 1 | #' @keywords internal 2 | "_PACKAGE" 3 | NULL -------------------------------------------------------------------------------- /R/affyToR.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waldronlab/HGNChelper/HEAD/R/affyToR.R -------------------------------------------------------------------------------- /R/checkGeneSymbols.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waldronlab/HGNChelper/HEAD/R/checkGeneSymbols.R -------------------------------------------------------------------------------- /R/data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waldronlab/HGNChelper/HEAD/R/data.R -------------------------------------------------------------------------------- /R/findExcelGeneSymbols.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waldronlab/HGNChelper/HEAD/R/findExcelGeneSymbols.R -------------------------------------------------------------------------------- /R/getCurrentMaps.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waldronlab/HGNChelper/HEAD/R/getCurrentMaps.R -------------------------------------------------------------------------------- /R/rToAffy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waldronlab/HGNChelper/HEAD/R/rToAffy.R -------------------------------------------------------------------------------- /R/rToSymbol.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waldronlab/HGNChelper/HEAD/R/rToSymbol.R -------------------------------------------------------------------------------- /R/symbolToR.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waldronlab/HGNChelper/HEAD/R/symbolToR.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waldronlab/HGNChelper/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waldronlab/HGNChelper/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- 1 | url: https://waldronlab.io/HGNChelper/ 2 | template: 3 | bootstrap: 5 4 | 5 | -------------------------------------------------------------------------------- /data/hgnc.table.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waldronlab/HGNChelper/HEAD/data/hgnc.table.rda -------------------------------------------------------------------------------- /data/mouse.table.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waldronlab/HGNChelper/HEAD/data/mouse.table.rda -------------------------------------------------------------------------------- /inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waldronlab/HGNChelper/HEAD/inst/CITATION -------------------------------------------------------------------------------- /inst/analyses/Examples.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waldronlab/HGNChelper/HEAD/inst/analyses/Examples.Rmd -------------------------------------------------------------------------------- /inst/analyses/gpls_already_tested.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waldronlab/HGNChelper/HEAD/inst/analyses/gpls_already_tested.csv -------------------------------------------------------------------------------- /inst/analyses/msigdb.v7.0.symbols.gmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waldronlab/HGNChelper/HEAD/inst/analyses/msigdb.v7.0.symbols.gmt -------------------------------------------------------------------------------- /inst/analyses/platform.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waldronlab/HGNChelper/HEAD/inst/analyses/platform.csv -------------------------------------------------------------------------------- /inst/analyses/test_GPLs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waldronlab/HGNChelper/HEAD/inst/analyses/test_GPLs.R -------------------------------------------------------------------------------- /inst/extdata/HGNChelper_mog_map_MGI_AMC_2016_03_30.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waldronlab/HGNChelper/HEAD/inst/extdata/HGNChelper_mog_map_MGI_AMC_2016_03_30.csv -------------------------------------------------------------------------------- /inst/extdata/date_of_last_update.txt: -------------------------------------------------------------------------------- 1 | Sat Nov 16 10:35:32 2024 2 | -------------------------------------------------------------------------------- /inst/extdata/mog_map.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waldronlab/HGNChelper/HEAD/inst/extdata/mog_map.csv -------------------------------------------------------------------------------- /man/HGNChelper-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waldronlab/HGNChelper/HEAD/man/HGNChelper-package.Rd -------------------------------------------------------------------------------- /man/affyToR.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waldronlab/HGNChelper/HEAD/man/affyToR.Rd -------------------------------------------------------------------------------- /man/checkGeneSymbols.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waldronlab/HGNChelper/HEAD/man/checkGeneSymbols.Rd -------------------------------------------------------------------------------- /man/findExcelGeneSymbols.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waldronlab/HGNChelper/HEAD/man/findExcelGeneSymbols.Rd -------------------------------------------------------------------------------- /man/getCurrentMaps.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waldronlab/HGNChelper/HEAD/man/getCurrentMaps.Rd -------------------------------------------------------------------------------- /man/hgnc.table.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waldronlab/HGNChelper/HEAD/man/hgnc.table.Rd -------------------------------------------------------------------------------- /man/mouse.table.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waldronlab/HGNChelper/HEAD/man/mouse.table.Rd -------------------------------------------------------------------------------- /man/rToAffy.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waldronlab/HGNChelper/HEAD/man/rToAffy.Rd -------------------------------------------------------------------------------- /man/rToSymbol.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waldronlab/HGNChelper/HEAD/man/rToSymbol.Rd -------------------------------------------------------------------------------- /man/symbolToR.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waldronlab/HGNChelper/HEAD/man/symbolToR.Rd -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waldronlab/HGNChelper/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test_checkGeneSymbols.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waldronlab/HGNChelper/HEAD/tests/testthat/test_checkGeneSymbols.R -------------------------------------------------------------------------------- /tests/testthat/test_miscfunctions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waldronlab/HGNChelper/HEAD/tests/testthat/test_miscfunctions.R -------------------------------------------------------------------------------- /update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waldronlab/HGNChelper/HEAD/update.sh -------------------------------------------------------------------------------- /vignettes/0DaysSince.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waldronlab/HGNChelper/HEAD/vignettes/0DaysSince.png -------------------------------------------------------------------------------- /vignettes/index.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waldronlab/HGNChelper/HEAD/vignettes/index.Rmd --------------------------------------------------------------------------------