Description Usage Arguments Value Examples
View source: R/methylationAnalysis_Step1.r
Mapping nick label location from contig to reference
1 2 3 4 5 6 7 8 9 | nickReference(
refxmap,
refcmap,
contigcmap,
contigID,
returnMethod = c("Text", "dataFrame"),
hmdir,
chrom
)
|
refxmap |
character. contig reference xmap data. |
refcmap |
character. reference cmap data. |
contigcmap |
character. contig cmap data. |
contigID |
character. query contig ID. |
returnMethod |
character. Output method. Text or dataframe. |
hmdir |
integer. Home Directory. |
chrom |
integer. chromosome number. |
dataframe containing the molecule file, with the reference position
1 2 3 4 5 6 7 8 9 | refcontigXmap <- system.file("extdata", "Cmapdir/output/contigs/exp_refineFinal1_sv/merged_smaps/ContigRef.xmap", package="methometR")
refCmap <- system.file("extdata", "Cmapdir/output/contigs/exp_refineFinal1_sv/merged_smaps/hg19ref_r.cmap", package="methometR")
Contigqcmap <- system.file("extdata", "Cmapdir/output/contigs/exp_refineFinal1_sv/merged_smaps/SampContig_q.cmap", package="methometR")
refxmapdat <- readingXmap(refcontigXmap)
refcmapdat <- readingCmap(refCmap)
contigcmapdat <- readingCmap(Contigqcmap)
nickRef<-nickReference(refxmap = refxmapdat, refcmap = refcmapdat,
contigcmap = contigcmapdat, contigID = 6701,
returnMethod =c("dataFrame"), chrom = 4)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.