File: read.rmskFasta.Rd

package info (click to toggle)
r-bioc-cner 1.26.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 18,216 kB
  • sloc: ansic: 23,458; makefile: 6
file content (35 lines) | stat: -rw-r--r-- 684 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
\name{read.rmskFasta}
\alias{read.rmskFasta}
\title{
  Read a soft repeat masked fasta
}
\description{
  Read a soft repeat masked fasta file into a \code{GRanges} object.
}
\usage{
  read.rmskFasta(fn)
}

\arguments{
  \item{fn}{
    \code{character}(1): The filename of the soft repeat masked fasta.
  }
}
\details{
  Only the lower case based ("a", "c", "g", "t") are considered in the
  soft repeat masked fasta.
}
\value{
  \code{GRanges} object with coordinates of repeat masked regions.
}
\author{
  Ge Tan
}
\seealso{
  \code{\link{read.rmMask.GRanges}}
}
\examples{
  fn <- file.path(system.file("extdata", package="CNEr"),
                  "rmsk.fa")
  read.rmskFasta(fn)
}