morinlab / GAMBLR.results

A collection of functions to access results of the Genomic Analysis of Mature B-cell Lymphomas
MIT License
0 stars 0 forks source link

Allow `get_gambl_metadata` to return a table with both `tissue_status` values #43

Open lkhilton opened 7 months ago

lkhilton commented 7 months ago

This function currently throws an error if the user tries to request both tissue_status values.

get_gambl_metadata(
    seq_type_filter = "mrna",
    tissue_status_filter = c("tumour", "normal")
) 

Error in get_gambl_metadata(seq_type_filter = "mrna", tissue_status_filter = c("tumour",  : 
  `tissue_status_filter` argument should be either "tumour" or "normal".

Ideally the function would be updated to return both tumour and normal if requested.