AS accessors {ASpli} | R Documentation |
Methods to retrieve and set data in ASpliAS object. Setting data into an ASpliAS object is not a typical task and must be done with care, because it can affect the integrity of the object.
altPSI( x ) esPSI( x ) irPIR( x ) joint( x ) junctionsPIR( x ) junctionsPJU( x )
x |
An ASpliAS object |
Returns dataframes with genomic metadata and PSI and PIR metrics
Estefania Mancini, Andres Rabinovich, Javier Iserte, Marcelo Yanovsky, Ariel Chernomoretz
# Accessing data tables from an ASpliAS object #as <- aspliASexample() #ap <- altPSI(as) #ep <- esPSI(as) #ip <- irPIR(as) #j <- joint(as) #jpi <- junctionsPIR(as) #jps <- junctionsPJU(as) # Setting data tables to an ASpliAS object #as2 <- new( 'ASpliAS' ) #altPSI( as2 ) <- ap #esPSI( as2 ) <- ep #irPIR( as2 ) <- ip #joint( as2 ) <- j #junctionsPIR( as2 ) <- jpi #junctionsPJU( as2 ) <- jps