get_series_info {TCIApathfinder} | R Documentation |
Get image series information
Description
Get image series information
Usage
get_series_info(collection = NULL, patient_id = NULL,
study_instance_uid = NULL, series_instance_uid = NULL,
modality = NULL, body_part_examined = NULL,
manufacturer_model_name = NULL, manufacturer = NULL)
Arguments
collection |
TCIA collection name. To get a list of available collection
names, call |
patient_id |
Patient ID. To get a list of available patient IDs, call |
study_instance_uid |
Study instance UID. If |
series_instance_uid |
Series instance UID. To get a list of available series instance UIDs, call
this function leaving out parameter |
modality |
Modality name. To get a list of available modality names, call |
body_part_examined |
Body part name. To get a list of available body part names, call
|
manufacturer_model_name |
Manufacturer model name. To get a list of available model names, call
this function leaving out parameter |
manufacturer |
Manufacturer name. To get a list of available manufacturer names, call
|
Value
List containing elements:
-
series
: Data frame with columns representing the contents of a Series object as described in TCIA API Return Values -
content
: parsed API response content -
response
: API response
See Also
get_collection_names
,
get_patient_info
,
get_studies_in_collection
,
get_patient_studies
,
get_new_studies_in_collection
,
get_modality_names
,
get_body_part_names
,
get_manufacturer_names
,
TCIA REST API Usage Guide,
TCIA API object definitions
Examples
## Not run:
get_series_info()
get_series_info(collection = "TCGA-BRCA")
get_series_info(patient_id = "TCGA-OL-A6VO")
get_series_info(modality = "MR", manufacturer = "GE MEDICAL SYSTEMS")
## End(Not run)