Description Usage Arguments Details Value Author(s) Examples
This wrapper function blat the CNEs against the reference genome. Note that blat must be installed on your system.
1 |
cne |
|
blatOptions |
|
cutIdentity |
|
When winSize > 45, the blat option is "-tileSize=11 -minScore=30 -repMatch=1024".
When 35 < winSize <= 45, the blat option is "-tileSize=10 -minScore=28 -repMatch=4096".
When the winSize <= 35, the blat option is "-tileSize=9 -minScore=24 -repMatch=16384".
A CNE
object with a final set of CNEs.
Ge Tan
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | ## Not run:
data(CNEDanRer10Hg38)
data(CNEHg38DanRer10)
cne <- CNE(assembly1Fn=file.path(system.file("extdata",
package="BSgenome.Drerio.UCSC.danRer10"),
"single_sequences.2bit"),
assembly2Fn=file.path(system.file("extdata",
package="BSgenome.Hsapiens.UCSC.hg38"),
"single_sequences.2bit"),
window=50L, identity=45L, CNE12=CNEDanRer10Hg38[["45_50"]],
CNE21=CNEHg38DanRer10[["45_50"]], aligner="blat")
cne <- cneMerge(cne)
cne <- blatCNE(cne)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.