action firebrowse_m_rnaseq_quartiles { label: "Returns RNASeq expression quartiles, e.g. suitable for drawing a boxplot." description: "For a given gene compute quartiles and extrema, suitable e.g. for drawing a boxplot (Tukey 1977). Results may be filtered by cohort, sample type, patient barcode or characterization protocol, and are returned sorted by cohort. Note that samples for which no expression value was recorded (e.g. the melanoma sample TCGA-GN-262) are removed prior to calculation." provider: firebrowse method: GET path: "/Analyses/mRNASeq/Quartiles" encoding: json input: { type: "object" properties: { Exclude: { type: "string" } cohort: { type: "string" } format: { type: "string" } gene: { type: "string" } protocol: { type: "string" } sample_type: { type: "string" } } required: ["gene"] additionalProperties: false } output: { type: "object" additionalProperties: true } }