File: H5Z.R

package info (click to toggle)
r-bioc-rhdf5 2.50.2%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,584 kB
  • sloc: ansic: 8,521; cpp: 91; makefile: 11; python: 9; sh: 6
file content (11 lines) | stat: -rw-r--r-- 322 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11

#' Determine whether a filter is available on this system
#' 
#' @param filter_id Integer representing the ID of the filter to be checked.
#' 
#' @export
H5Zfilter_avail <- function(filter_id) {
    filter_id <- as.integer(filter_id)
    res <- .Call("_H5Zfilter_avail", filter_id, PACKAGE = "rhdf5")
    return( res );
}