##
## Glioblastoma analysis using FunciSNP
##
## Full path to the example regions file for Glioblastoma
# (collected from SNPedia)
glioma.snp <- file.path(system.file('extdata',
package='FunciSNP'),
dir(system.file('extdata',package='FunciSNP'),
pattern='.snp$'));
## Full path to the example biological features BED files
# derived from the ENCODE project for Glioblastoma U-87
# cell lines.
glioma.bio <- system.file('extdata',package='FunciSNP');
## FunciSNP analysis, extracts correlated SNPs from the
# 1000 genomes db ("ncbi") and finds overlaps between
# correlated SNP and biological features and then
# calculates LD (Rsquare, Dprime, distance, p-value).
# Do not run. Can take more than 5 min depending on internet connection and number of CPUs.
#glioma <- getFSNPs(snp.regions.file=glioma.snp,
# bio.features.loc = glioma.bio);
##
data(glioma);
class(glioma);
glioma;
summary(glioma);
Run the code above in your browser using DataLab