mllg / batchtools

Tools for computation on batch systems
https://mllg.github.io/batchtools/
GNU Lesser General Public License v3.0
170 stars 51 forks source link

getUsedJobTags() emits warning #224

Closed mb706 closed 5 years ago

mb706 commented 5 years ago
> reg = makeRegistry(NA)
No readable configuration file found
Created registry in '/tmp/RtmpL7rEw5/registry570d5ba52547' using cluster functions 'Interactive'
> getUsedJobTags()
character(0)
Warning message:
In `[.data.table`(filter(reg$tags, ids), , unique(tag), on = "job.id",  :
  ignoring on= because it is only relevant to i but i is not provided
> batchMap(fun = function(n) n, n = 1:10)
Adding 10 jobs ...
> getUsedJobTags()
character(0)
Warning message:
In `[.data.table`(filter(reg$tags, ids), , unique(tag), on = "job.id",  :
  ignoring on= because it is only relevant to i but i is not provided
> addJobTags(1:4, letters[1:2])
> getUsedJobTags()
[1] "a" "b"
Warning message:
In `[.data.table`(filter(reg$tags, ids), , unique(tag), on = "job.id",  :
  ignoring on= because it is only relevant to i but i is not provided