GTGetProjectSummary {GeneTraffic}R Documentation

Get a project summary zip from a GeneTraffic server

Description

This is the function that retrieves a project summary zip file from a GeneTraffic server using the GeneTraffic Web Services API.

Usage

GTGetProjectSummary(server, session, project, dest)

Arguments

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.

Value

The file name of the project summary zip file retrieved from a GeneTraffic server.

Examples

    ## 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)

[Package GeneTraffic version 1.14.0 Index]