expressionFromIds.Rd
This function generates a query expression fragment which can be passed as the transcript.expression or participant.expression parameter of getMatches, using a list of corresponding IDs.
expressionFromIds(ids, not = FALSE)
A list of IDs.
Whether to match the given IDs (FALSE), or everything *except* the given IDs.
A query expression which can be passed as the transcript.expression or participant.expression parameter of getMatches
or the expression parameter of getMatchingTranscriptIds or getMatchingParticipantIds
if (FALSE) {
## Perform a search
transcript.ids <- c("AP511_MikeThorpe.eaf", "BR2044_OllyOhlson.eaf")
results <- getMatches(labbcat.url, list(segment="I"),
transcript.expression = expressionFromIds(transcript.ids))
}