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 12ff3bf commit 586ff1cCopy full SHA for 586ff1c
workflows/seurat-cluster.cwl
@@ -12,11 +12,11 @@ requirements:
12
function get_unique(value, index, self) {
13
return self.indexOf(value) === index && value != "";
14
}
15
- let splitted_line = line?line.split(/[\s,]+/).filter(get_unique):null;
+ var splitted_line = line?line.split(/[\s,]+/).filter(get_unique):null;
16
return (splitted_line && !!splitted_line.length)?splitted_line:null;
17
};
18
- var split_numbers = function(line) {
19
- let splitted_line = line?line.split(/[\s,]+/).map(parseFloat):null;
+ var splitted_line = line?line.split(/[\s,]+/).map(parseFloat):null;
20
21
22
0 commit comments