Creates a new callset.
Deletes a callset.
Gets a callset by ID.
Updates a callset. This method supports patch semantics.
Gets a list of callsets matching the criteria.
Updates a callset.
create(body)
Creates a new callset.
Args:
body: object, The request body. (required)
The object takes the form of:
{ # A Callset is a collection of Variant Calls. It belongs to a Dataset.
"info": { # A map of additional callset information.
"a_key": [ # A string which maps to an array of values.
"A String",
],
},
"name": "A String", # The callset name.
"id": "A String", # The Google generated ID of the callset, immutable.
"datasetId": "A String", # The ID of the dataset this callset belongs to.
"created": "A String", # The date this callset was created in milliseconds from the epoch.
}
Returns:
An object of the form:
{ # A Callset is a collection of Variant Calls. It belongs to a Dataset.
"info": { # A map of additional callset information.
"a_key": [ # A string which maps to an array of values.
"A String",
],
},
"name": "A String", # The callset name.
"id": "A String", # The Google generated ID of the callset, immutable.
"datasetId": "A String", # The ID of the dataset this callset belongs to.
"created": "A String", # The date this callset was created in milliseconds from the epoch.
}
delete(callsetId)
Deletes a callset. Args: callsetId: string, The ID of the callset to be deleted. (required)
get(callsetId)
Gets a callset by ID.
Args:
callsetId: string, The ID of the callset. (required)
Returns:
An object of the form:
{ # A Callset is a collection of Variant Calls. It belongs to a Dataset.
"info": { # A map of additional callset information.
"a_key": [ # A string which maps to an array of values.
"A String",
],
},
"name": "A String", # The callset name.
"id": "A String", # The Google generated ID of the callset, immutable.
"datasetId": "A String", # The ID of the dataset this callset belongs to.
"created": "A String", # The date this callset was created in milliseconds from the epoch.
}
patch(callsetId, body)
Updates a callset. This method supports patch semantics.
Args:
callsetId: string, The ID of the callset to be updated. (required)
body: object, The request body. (required)
The object takes the form of:
{ # A Callset is a collection of Variant Calls. It belongs to a Dataset.
"info": { # A map of additional callset information.
"a_key": [ # A string which maps to an array of values.
"A String",
],
},
"name": "A String", # The callset name.
"id": "A String", # The Google generated ID of the callset, immutable.
"datasetId": "A String", # The ID of the dataset this callset belongs to.
"created": "A String", # The date this callset was created in milliseconds from the epoch.
}
Returns:
An object of the form:
{ # A Callset is a collection of Variant Calls. It belongs to a Dataset.
"info": { # A map of additional callset information.
"a_key": [ # A string which maps to an array of values.
"A String",
],
},
"name": "A String", # The callset name.
"id": "A String", # The Google generated ID of the callset, immutable.
"datasetId": "A String", # The ID of the dataset this callset belongs to.
"created": "A String", # The date this callset was created in milliseconds from the epoch.
}
search(body)
Gets a list of callsets matching the criteria.
Args:
body: object, The request body. (required)
The object takes the form of:
{ # The callset search request.
"pageToken": "A String", # The continuation token, which is used to page through large result sets. To get the next page of results, set this parameter to the value of "nextPageToken" from the previous response.
"datasetIds": [ # Restrict the query to callsets within the given datasets. At least one ID must be provided.
"A String",
],
"name": "A String", # Only return callsets for which a substring of the name matches this string.
"maxResults": "A String", # The maximum number of callsets to return.
}
Returns:
An object of the form:
{ # The callset search response.
"nextPageToken": "A String", # The continuation token, which is used to page through large result sets. Provide this value in a subsequent request to return the next page of results. This field will be empty if there aren't any additional results.
"callsets": [ # The list of matching callsets.
{ # A Callset is a collection of Variant Calls. It belongs to a Dataset.
"info": { # A map of additional callset information.
"a_key": [ # A string which maps to an array of values.
"A String",
],
},
"name": "A String", # The callset name.
"id": "A String", # The Google generated ID of the callset, immutable.
"datasetId": "A String", # The ID of the dataset this callset belongs to.
"created": "A String", # The date this callset was created in milliseconds from the epoch.
},
],
}
update(callsetId, body)
Updates a callset.
Args:
callsetId: string, The ID of the callset to be updated. (required)
body: object, The request body. (required)
The object takes the form of:
{ # A Callset is a collection of Variant Calls. It belongs to a Dataset.
"info": { # A map of additional callset information.
"a_key": [ # A string which maps to an array of values.
"A String",
],
},
"name": "A String", # The callset name.
"id": "A String", # The Google generated ID of the callset, immutable.
"datasetId": "A String", # The ID of the dataset this callset belongs to.
"created": "A String", # The date this callset was created in milliseconds from the epoch.
}
Returns:
An object of the form:
{ # A Callset is a collection of Variant Calls. It belongs to a Dataset.
"info": { # A map of additional callset information.
"a_key": [ # A string which maps to an array of values.
"A String",
],
},
"name": "A String", # The callset name.
"id": "A String", # The Google generated ID of the callset, immutable.
"datasetId": "A String", # The ID of the dataset this callset belongs to.
"created": "A String", # The date this callset was created in milliseconds from the epoch.
}