generateLayerUtterances.Rd
Generates annotations on a given layer for a given set of utterances, e.g. force-align selected utterances of a participant.
generateLayerUtterances(
labbcat.url,
match.ids,
layer.id,
collection.name = NULL,
no.progress = FALSE
)
URL to the LaBB-CAT instance
A vector of annotation IDs, e.g. the MatchId column, or the URL column, of a results set.
The ID of the layer to generate.
An optional name for the collection, e.g. the participant ID.
TRUE to supress visual progress bar. Otherwise, progress bar will be shown when interactive().
The final status of the layer generation task.
if (FALSE) {
## Get all utterances of a participant
allUtterances <- getAllUtterances(labbcat.url, "AP2505_Nelson")
## Force-align the participant's utterances
generateLayerUtterances(labbcat.url, allUtterances$MatchId, "htk", "AP2505_Nelson")
}