GTGetProjectSummary {GeneTraffic} | R Documentation |
This is the function that retrieves a project summary zip file from a GeneTraffic server using the GeneTraffic Web Services API.
GTGetProjectSummary(server, session, project, dest)
server |
a GTServer object. |
session |
the session id returned by the GTLogin function. |
project |
the project id returned by the GTGetProjectList function. |
dest |
the destination file name where the project summary should be retrieved. |
The file name of the project summary zip file retrieved from a GeneTraffic server.
## Not run: gt <- GTServer(host = "genetraffic", username="demo", password="pass", port = 80) session <- GTLogin(gt) pl <- GTGetProjectList(gt, session) filename <- GTGetProjectSummary(gt, session, pl[[1]]$"project_id") ## End(Not run)