You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This would seem to suggest that OS_MONTHS could NEVER have made it to table:
// filter out survival attributes (only keep 'OS_STATUS' attribute)
// create a dict which contains all survival attribute Ids that will be excluded from study view
// get all survival attribute Ids into a dict
let survivalAttributeIdsDict = createSurvivalAttributeIdsDict(
this.survivalClinicalAttributesPrefix.result
);
// omit 'OS_STATUS' from dict
survivalAttributeIdsDict = _.omit(survivalAttributeIdsDict, [
'OS_STATUS',
]);
return Promise.resolve(
_.filter(
this.clinicalAttributes.result,
attribute =>
!(
attribute.clinicalAttributeId in
survivalAttributeIdsDict
)
)
);
The text was updated successfully, but these errors were encountered:
@inodb the curation team has reported an issue with study view clinical data tab. 1) Survival status appears twice. 2) OS_MONTHS doesn't appear--where they say it once did appear. The code above leads me to believe that it never did appear. Do you have any memory about this?
This would seem to suggest that OS_MONTHS could NEVER have made it to table:
The text was updated successfully, but these errors were encountered: