File: H5Pset_filter.Rd

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 (28 lines) | stat: -rw-r--r-- 1,110 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/H5P.R
\name{H5Pset_filter}
\alias{H5Pset_filter}
\title{Add a filter to the dataset filter pipeline.}
\usage{
H5Pset_filter(h5plist, filter_id, is_mandatory = FALSE, cd_values)
}
\arguments{
\item{h5plist}{Object of class \linkS4class{H5IdComponent} representing a dataset
creation property list.}

\item{filter_id}{Integer of length 1, giving the ID of the filter to be used.}

\item{is_mandatory}{Logical of length 1.  Filters can be either optional or
mandatory.  If this argument is set to \code{FALSE} the filter won't be applied
to a chunk in the case of failure, but the data will still be written.
Setting to \code{TRUE} will result in a failure when writing the dataset if the
filter fails for some reason.}

\item{cd_values}{Integer vector giving parameters to be supplied to the
filter. No guidance is given for the number of values supplied here, it is
specific to each filter and the user is expected to know appropriate
options for the requested filter.}
}
\description{
Add a filter to the dataset filter pipeline.
}