Checks whether the provided fast5 file contains RNA sequencing reads by examining the experiment_type attribute in the context_tags group.
Examples
if (FALSE) { # \dontrun{
# Check if a fast5 file contains RNA reads
fast5_path <- "path/to/file.fast5"
file_structure <- rhdf5::h5ls(fast5_path, recursive = FALSE)
read_id <- file_structure$name[1]
is_RNA(fast5_path, read_id)
} # }
