Description Usage Arguments Value Examples
Filter features based on keyword. You can keep those, remove those, and many other things.
1 2 3 4 5 6 7 | fcff_filter_features(
fc,
feats,
action,
behavior = "permissive",
diff_opts = NULL
)
|
fc |
The Fc Array data frame. |
feats |
Vector of strings for the features you want to keep or remove. |
action |
String specifying whether you want to "keep" or "toss" the features in feats. |
behavior |
Whether the feature names will be matched by:
|
diff_opts |
list of options if behavior = "differs". see ?fcff_feats_diff. |
The Fc Array data frame filtered based on what you specified.
1 2 3 4 | new_fc = fcff_filter_features(fc, c("gp41", "gp120"), "keep")
my_diff_opts = list() # fill with stuff
diff_fc = fccu_filter_features(fc, NULL, NULL, behavior="differs",
diff_opts=my_diff_opts)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.