prepComma {WGCNA} | R Documentation |
Prepend a comma to a non-empty string
Description
Utility function that prepends a comma before the input string if the string is non-empty.
Usage
prepComma(s)
Arguments
s |
Character string. |
Value
If s
is non-empty, returns paste(",", s)
, otherwise returns s.
Author(s)
Peter Langfelder
Examples
prepComma("abc");
prepComma("");
[Package WGCNA version 1.72-5 Index]