Description Usage Arguments Details Value Note Author(s) References See Also Examples
FunciSNPbed will output a BED file to a specified folder. The BED file is in standard UCSC Genome Browser format (http://genome.ucsc.edu/FAQ/FAQformat). Each tagSNP is colored black and each YAFSNP is colored red.
1 | FunciSNPbed(dat, rsq, path = getwd(), filename = NULL)
|
dat |
FunciSNP data.frame: |
rsq |
an interger (0-1): |
path |
a character: |
filename |
a character: |
FunciSNPbed outputs a unique BED file which can be used to view in any genomic browser compatible with BED formats. To learn more about BED formats, see UCSC Genome Browser FAQ (http://genome.ucsc.edu/FAQ/FAQformat). Each tagSNP which is in LD to a corresponding YAFSNP overlapping at least one biofeature is colored black, while the YAFSNP is colored red. The initial position is provided by the first tagSNP and the first linked YAFSNP. We recommend using UCSC genome browser to view your BED files. This is useful so you can view all public and private tracks in relation to FunciSNP results.
BED file is outputed as a tab-deliminated file in the specified 'path' folder. See example below.
NA
Simon G. Coetzee (maintainer: scoetzee@gmail.com); Houtan Noushmehr, PhD (houtan@usp.br)
SG. Coetzee, SK. Rhie, BP. Berman, GA. Coetzee and H. Noushmehr, FunciSNP: An R/Bioconductor Tool Integrating Functional Non-coding Datasets with Genetic Association Studies to Identify Candidate Regulatory SNPs., Nucleic Acids Research, In press, 2012 (doi:10.1093/nar/gks542).
getFSNPs
, FunciSNPplot
, FunciSNPAnnotateSummary
, FunciSNPtable
, FunciSNPbed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | ##
data(glioma);
glioma.anno <- FunciSNPAnnotateSummary(glioma);
FunciSNPbed(glioma.anno, rsq=0.9);
####
#Bed file "FunciSNP_results_rsq.0.9.bed" created successfully.
#(See folder: "/home/houtan/Downloads/")
#Total corSNP (RED): 15
#Total tagSNP (BLK): 1
#To view results, submit bed file as a
# custom track in UCSC Genome Browser (genome.ucsc.edu),
#Now have fun with your new Func-y SNPs!!
####
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.