Skip to content

Commit

Permalink
Merge pull request #74 from CBIIT/PODCAT-864
Browse files Browse the repository at this point in the history
PODCAT-864: Update Export with Missing Fields
  • Loading branch information
n2iw committed Dec 22, 2022
2 parents c761b7d + a2265a2 commit df56f6f
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions Controllers/dataset.controllers.js
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,10 @@ const export2CSV = async (req, res) => {
label: "Case Sex",
value: "case_sex"
},
{
label: "Case Gender",
value: "case_gender"
},
{
label: "Case Tumor Site",
value: "case_tumor_site"
Expand All @@ -166,6 +170,22 @@ const export2CSV = async (req, res) => {
label: "Sample Analyte Type",
value: "sample_analyte_type"
},
{
label: "Sample Anatomic Site",
value: "sample_anatomic_site"
},
{
label: "Sample Composition Type",
value: "sample_composition_type"
},
{
label: "Sample is Normal",
value: "sample_is_normal"
},
{
label: "Sample is Xenograft",
value: "sample_is_xenograft"
},
{
label: "Additional Data",
value: "additional"
Expand Down

0 comments on commit df56f6f

Please sign in to comment.