MapFilterProbe-class: Class "MapFilterProbe"

Description Usage Arguments Objects from the Class Slots Methods Accessors Author(s) Examples

Description

class to store probe information after remapping and/or filtering of probes.

Usage

1
2
3
4
5
6
## Accessors

getChromosome(object)
getFilteredIndices(object)
getPosition(object)
getStrand(object)

Arguments

object

An instance of MapFilterProbe-class.

Objects from the Class

Objects can be created by calls of the form new("mapFilterProbe", filteredIndices, chromosome, position, strand).

Slots

filteredIndices:

Object of class "vector" ~~

chromosome:

Object of class "vector" ~~

position:

Object of class "vector" ~~

strand:

Object of class "vector" ~~

Methods

getChromosome

signature(object = "MapFilterProbe"): ...

getFilteredIndices

signature(object = "MapFilterProbe"): ...

getPosition

signature(object = "MapFilterProbe"): ...

getStrand

signature(object = "MapFilterProbe"): ...

initialize

signature(.Object = "MapFilterProbe"): ...

selectProbesFromFilterOverlap

signature(object = "MapFilterProbe"): ...

show

signature(object = "MapFilterProbe"): ...

Accessors

In the following code snippets, x is a MapFilterProbe object.

getChromosome(x): Extract the chromosome identifiers.

getFilteredIndices(x): Extract the filtered probe indices.

getPosition(x): Extract the genomic position of the filtered probes.

getStrand(x): Extract the strand orientation info for the filtered probes.

Author(s)

Kristof De Beuf <kristof.debeuf@ugent.be>

Examples

1
2
3
4
5
6
7
8
  showClass("MapFilterProbe")
  
  library(waveTilingData)
  data(leafdevMapAndFilterTAIR9)
  tt1 <- getChromosome(leafdevMapAndFilterTAIR9)
  tt2 <- getFilteredIndices(leafdevMapAndFilterTAIR9)
  tt3 <- getPosition(leafdevMapAndFilterTAIR9)
  tt4 <- getStrand(leafdevMapAndFilterTAIR9)

waveTiling documentation built on Oct. 31, 2019, 9:23 a.m.