File: read.rmMask.GRanges.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-- 703 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.rmMask.GRanges}
\alias{read.rmMask.GRanges}

\title{
  Read a RepeatMasker .out file 
}
\description{
  Read a RepeatMasker .out file into a \code{GRanges} object.
}
\usage{
  read.rmMask.GRanges(fn)
}

\arguments{
  \item{fn}{
    \code{character}(1): the filename of a RepeatMasker .out file.
  }
}

\value{
  A \code{GRanges} object with metadata columns containing the
  name of the matching interspersed repeat,
  the class of the repeat and the Smith-Waterman score of the match.
}
\references{
  \url{http://www.repeatmasker.org/webrepeatmaskerhelp.html}
}
\author{
  Ge Tan
}

\examples{
  fn <- system.file("extdata", "ce2chrM.fa.out", package="IRanges")
  read.rmMask.GRanges(fn)
}