read_airr(file, base = c("0", "1"), schema = RearrangementSchema, ...)
read_rearrangement(file, base = c("0", "1"), ...)
read_alignment(file, base = c("0", "1"), ...)
Arguments
file
input file path.
base
starting index for positional fields in the input file.
If "0", then fields ending in "_start" and "_end"
are 0-based half-open intervals (python style) in the input file
and will be converted to 1-based closed-intervals (R style).
If "1", then these fields will not be modified.
# NOT RUN {# Get path to the rearrangement-example filefile <- system.file("extdata", "rearrangement-example.tsv.gz", package="airr")
# Load data filedf <- read_rearrangement(file)
# }