| readAxt | R Documentation |
This function reads the ‘Axt’ files into an Axt object.
readAxt(axtFiles, tAssemblyFn=NULL, qAssemblyFn=NULL)
axtFiles |
|
tAssemblyFn,qAssemblyFn |
|
This function reads the ‘Axt’ files of two assemblies.
It can be a single big ‘Axt’ file or several small ‘Axt’ files.
Contrary to the start coordinate in ‘Axt’ file,
the start coordinate in Axt object is 1-based.
When ‘tAssemblyFn’ and ‘qAssemblyFn’ are
not NULL, the corresponding Seqinfo
will be added into the returned Axt object.
A object Axt is returned.
Ge Tan
Axt
axtFile <- file.path(system.file("extdata", package="CNEr"),
"hg38.danRer10.net.axt")
tAssemblyFn <- file.path(system.file("extdata",
package="BSgenome.Hsapiens.UCSC.hg38"),
"single_sequences.2bit")
qAssemblyFn <- file.path(system.file("extdata",
package="BSgenome.Drerio.UCSC.danRer10"),
"single_sequences.2bit")
axt <- readAxt(axtFile, tAssemblyFn, qAssemblyFn)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.