get_manufacturer_names {TCIApathfinder} | R Documentation |
Get manufacturer names
Description
Get manufacturer names
Usage
get_manufacturer_names(collection = NULL, modality = NULL,
body_part = NULL)
Arguments
collection |
TCIA collection name. If |
modality |
Modality name. If |
body_part |
Body part name. If |
Value
List containing elements:
-
manufacturer_names
: character vector of manufacturer names -
content
: parsed API response content -
response
: API response
See Also
get_collection_names
,
get_modality_names
,
get_body_part_names
,
DICOM Modality Abbreviations,
TCIA REST API Usage Guide,
TCIA API object definitions
Examples
## Not run:
get_manufacturer_names()
get_manufacturer_names(collection = "TCGA-BRCA")
get_manufacturer_names(collection = "TCGA-BRCA", modality = "MR", body_part = "BREAST")
## End(Not run)