blockScores {sarks} | R Documentation |
Extracts vector of input scores associated with input sequences from sarks object.
blockScores(sarks)
sarks |
Sarks object from which information will be derived |
named numeric vector; names are the sequence names, values are the associated scores. Note: Sarks internally sorts input lexicographically by sequence name.
data(simulatedSeqs, simulatedScores) sarks <- Sarks(simulatedSeqs, simulatedScores, 4, 0, 1) simulatedScores2 <- blockScores(sarks) ## simulatedScores2 will be in different order than simulatedScores, ## but contains same information.