diff --git a/src/main/java/life/qbic/registration/openbis/types/QDatasetType.java b/src/main/java/life/qbic/registration/openbis/types/QDatasetType.java index 6ff3e1a..45d9d94 100644 --- a/src/main/java/life/qbic/registration/openbis/types/QDatasetType.java +++ b/src/main/java/life/qbic/registration/openbis/types/QDatasetType.java @@ -37,6 +37,8 @@ public static QDatasetType fromQSampleType(QSampleType qSampleType) { return Q_NGS_RAW_DATA; } else if (qSampleType == QSampleType.Q_PROTEOMICS_MEASUREMENT) { return Q_PROTEOMICS_RAW_DATA; + } else if (qSampleType == QSampleType.Q_IP_MEASUREMENT) { + return Q_IP_RAW_DATA; } throw new DatasetTypeMappingException("Unknown sample type to dataset type mapping. Cannot map " + qSampleType); }