Hi Shayna,
By default, cross-study expression analysis is not allowed, but there is a portal property you can set to enable this.
For the portal, you'll want to set this property: enable_cross_study_expression (documented
here)
It can be set to either:
- True / False
- A dynamic JavaScript function string for advanced rules. For example to enable cross-study expression for the TCGA PanCancer Atlas studies:
enable_cross_study_expression: '(studies) => studies.filter(s => /pan_can_atlas/.test(s.studyId) === false).length === 0'
-Tali