Get the keys from a metadata template stored as an excel or csv or registered as a JSON schema in Synapse.

get_template(id = NA, syn, synID = NA, ...)

Arguments

id

The id of JSON metadata schema registered in Synapse or Synapse ID of an excel or csv file containing a metadata template

syn

Synapse client object

synID

Synapse ID of an excel or csv file containing a metadata template

...

Additional arguments passed to syn$get()

Value

Character vector of template column names

Examples

if (FALSE) { syn <- synapse$Synapse() syn$login() get_template(synID = "syn12973252", syn = syn) get_template(id = "syn12973252", syn = syn) }