Skip to content

Commit abe2176

Browse files
committed
allow NULL for QC label
If qc_label=NULL then PMP blank filter will use median of QC samples instead of all samples.
1 parent c17a810 commit abe2176

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

R/blank_filter_class.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ blank_filter<-setClass(
5050
params.qc_label=entity(name = 'QC label',
5151
description = 'Label used to identify QC samples. If not set to null then median of the QCs is used instead of all samples.',
5252
value = 'QC',
53-
type='character'),
53+
type=c('character','NULL')),
5454
outputs.filtered=entity(name = 'Blank filtered dataset',
5555
description = 'A dataset object containing the filtered data.',
5656
type='dataset',

0 commit comments

Comments
 (0)