Learn R Programming

rphast (version 1.0)

summary.feat: Features Summary

Description

Prints a brief summary of a features object.

Usage

summary.feat(object, ...)

Arguments

object
an object of type feat
...
further arguments to be passed to or from other methods

Examples

Run this code
seq <- rep("hg18.chr6", 10)
src <- rep("fake_example", 10)
feature <- rep("CDS", 10)
start <- seq(1, 100, by=10)
end <- seq(10, 100, by=10)
f <- feat(seq, src, feature, start, end)
summary(f)  # this calls summary.data.frame
summary(as.pointer.feat(f))

Run the code above in your browser using DataLab