
Generates a transcript query expression for matching transcripts by type, for use with getMatches or getMatchingTranscriptIds
expressionFromTranscriptTypes.Rd
This function generates a transcript query expression fragment which can be passed as the transcript.expression parameter of getMatches, (or the expression parameter of getMatchingTranscriptIds) in order to identify transcripts using a list of transcript types.
Value
A transcript query expression which can be passed as the transcript.expression parameter of getMatches or the expression parameter of getMatchingTranscriptIds
Examples
if (FALSE) { # \dontrun{
## Perform a search of interviews or monologues
transcript.types <- c("interview","monologue")
results <- getMatches(labbcat.url, list(segment="I"),
transcript.expression = expressionFromTranscriptTypes(transcript.types))
## Perform a search of all transcripts that aren't word-lists.
results <- getMatches(labbcat.url, list(segment="I"),
transcript.expression = expressionFromTranscriptTypes("wordlist", NOT=true))
} # }