Actions
Bug #13596
closedR SDK documentation uses incorrect function names
Start date:
07/05/2018
Due date:
% Done:
100%
Estimated time:
(Total: 0.00 h)
Story points:
-
Release:
Release relationship:
Auto
Description
The R SDK reference page lists functions with incorrect conventions. Essentially, it seems like the python-like function naming in the documentation was abandoned for more R-like versions. As a result, most of the functions are incorrectly documented.
For example, this is part of the tutorial:
collectionList <- arv$collections.list(list(list("name", "like", "Test%")))
Should be replaced with this:
collectionList <- arv$listCollections(list(list("name", "like", "Test%")))
This works to pull a file name's uuid, for example:
uuid <- arv$listCollections(list(list("any", "@@", "GU8N1LS.bam")), limit = 1)$items[[1]]$uuid
Updated by Tom Morris over 6 years ago
- Assigned To deleted (
Tom Morris) - Target version set to 2018-07-03 Sprint
Updated by Fuad Muhic over 6 years ago
- Status changed from New to In Progress
Reference page is documenting latest version of R SDK in which methods listCollections, getCollections, etc. are replaced with collections.list, collections.get, etc. I assume user is using older version of R SDK.
Updated by Peter Amstutz over 6 years ago
- Status changed from In Progress to Resolved
Actions