NotFilter: The NotFilter class

Description Usage Arguments Fields and Methods Author(s) See Also Examples

Description

Package: aroma
Class NotFilter

Object
~~|
~~+--Filter
~~~~~~~|
~~~~~~~+--SerialFilter
~~~~~~~~~~~~|
~~~~~~~~~~~~+--NotFilter

Directly known subclasses:

public static class NotFilter
extends SerialFilter

A NotFilter takes a set of indices from a single input and returns the complementary set of indices.

Usage

1
NotFilter(input, ...)

Arguments

input

The input Filter to be connected to.

...

Any arguments accepted by the Filter constructor.

Fields and Methods

Methods:

getIndex -

Methods inherited from SerialFilter:
changeInput, getInput

Methods inherited from Filter:
as.character, changeInput, getIndex, getInput, getParameter, getVisible, highlight, setParameter, setVisible, text

Methods inherited from Object:
$, $<-, [[, [[<-, as.character, attach, attachLocally, clearCache, clone, detach, equals, extend, finalize, gc, getEnvironment, getFields, getInstanciationTime, getStaticInstance, hasField, hashCode, ll, load, objectSize, print, save

Author(s)

Henrik Bengtsson (http://www.braju.com/R/)

See Also

See also the ParallelFilter class.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
   SMA$loadData("mouse.data")
   layout <- Layout$read("MouseArray.Layout.dat", path=system.file("data-ex", package="aroma"))
   raw <- RawData(mouse.data, layout=layout)

   ma <- getSignal(raw)
   normalizeWithinSlide(ma, "s")
   normalizeAcrossSlides(ma)

   tma <- as.TMAData(ma)

   fM  <- MFilter(tma, top=0.05, col="red")
   fT  <- TFilter(tma, top=0.05, col="blue")
   fNotSE <- SEFilter(tma, range=c(-Inf,0.02), col="yellow")
   fSE <- NotFilter(fNotSE, visible=FALSE)
   myFilter <- AndFilter(fM, fT, fSE, col="purple")

   plot(tma, "TvsSE");
   highlight(myFilter, recursive=TRUE);

HenrikBengtsson/aroma documentation built on May 7, 2019, 12:56 a.m.