hasGeneGroups {FindMyFriends} | R Documentation |
This method checks whether any grouping of genes has been done on the object and returns TRUE if that is the case.
hasGeneGroups(object) ## S4 method for signature 'pgVirtual' hasGeneGroups(object)
object |
A pgVirtual subclass |
A boolean indicating whether gene groups have been defined (TRUE) or not (FALSE)
pgVirtual
: Gene group check for pgVirtual subclasses
# Empty pangenome testPG <- .loadPgExample() hasGeneGroups(testPG) # With gene groups testPG <- .loadPgExample(withGroups=TRUE) hasGeneGroups(testPG)