We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 907de59 commit 5753d1dCopy full SHA for 5753d1d
src/main/java/org/mskcc/cbio/portal/dao/DaoGeneticProfileSamples.java
@@ -128,7 +128,8 @@ public static ArrayList <Integer> getOrderedSampleList(int geneticProfileId) thr
128
// Split, based on DELIM token
129
String[] parts = orderedSampleList.split(DELIM);
130
if (parts.length == 1 && parts[0].isBlank()) {
131
- return new ArrayList<Integer>();
+ throw new IllegalStateException("genetic_profile_samples row for geneticProfileId="
132
+ + geneticProfileId + " has blank ORDERED_SAMPLE_LIST. Consider removing it.");
133
}
134
ArrayList <Integer> sampleList = new ArrayList <Integer>();
135
for (String internalSampleId : parts) {
0 commit comments