We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent abe2176 commit 801f46bCopy full SHA for 801f46b
R/pairs_filter_class.R
@@ -33,7 +33,17 @@ pairs_filter<-setClass(
33
params.sample_id=entity(name='Sample id',
34
description='Name of sample meta column containing the sample id',
35
type='character',
36
- value='V1')
+ value='V1'),
37
+
38
+ outputs.filtered=entity(name='Filtered dataset',
39
+ description='A dataset object after the filter has been applied',
40
+ type='dataset',
41
+ value=dataset()),
42
43
+ outputs.flags=entity(name='Filter flags',
44
+ description='A data.frame indicating whether features were filtered from the dataset.',
45
+ type='data.frame',
46
+ value=data.frame())
47
)
48
49
0 commit comments