rownames: Returns the row names.
dim: Returns the dimension
length: Returns the number of rows
show: Displays a preview of the object
print: See 'show' as the behaviour is very similar and ... are just arguments of 'show'. The key difference with 'print' instead of 'show' is that by default the parameter 'up.to' is set to 50, so that any ChipInfo object (or subset) of less than or equal to 50 rows will be displayed in its entirety, rather than just the top/bottom 5 rows.
# S4 method for ChipInfo
rownames(x)# S4 method for ChipInfo
dim(x)
# S4 method for ChipInfo
length(x)
# S4 method for ChipInfo
show(object)
# S4 method for ChipInfo
print(x, ...)
a ChipInfo object
a ChipInfo object
further arguments to showChipInfo()
rownames: Character vector of row names (SNP IDs).
dim: same as length
length: integer, number of rows, same as inherited nrow()
show: Displays a preview of the object
print: Prints the object to terminal using 'showChipInfo()'.