is.nuID {lumi} | R Documentation |
Self-identify nuID (nucleotide universal identifier) by verify the check code value and the checksum value
is.nuID(id)
id |
nuId or other string |
Return TRUE if id is a nuID, or else return FALSE.
Pan Du
Du, P., Kibbe, W.A. and Lin, S.M., "nuID: A universal naming schema of oligonucleotides for Illumina, Affymetrix, and other microarrays", Biology Direct 2007, 2:16 (31May2007).
## check the function using a random sequence id <- 'adfasdfafd' is.nuID(id) # FALSE ## check the function using a read nuID seq <- 'ACGTAAATTTCAGTTTAAAACCCCCCG' id <- seq2id(seq) is.nuID(id) # TRUE