Skip to content

Commit bc365c8

Browse files
committed
Update reference study
1 parent 6b2eea5 commit bc365c8

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

singlecell/src/org/labkey/singlecell/pipeline/singlecell/AppendCiteSeq.java

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -139,9 +139,9 @@ protected Map<Integer, File> prepareCountData(SingleCellOutput output, SequenceO
139139
return dataIdToCalls;
140140
}
141141

142-
public File getAdtMetadata(File countMatrix)
142+
public File getAdtMetadata(File countMatrixDir)
143143
{
144-
return new File(countMatrix.getParentFile(), "adtMetadata.txt");
144+
return new File(countMatrixDir, "adtMetadata.txt");
145145
}
146146

147147
@Override
@@ -160,8 +160,7 @@ protected Chunk createDataChunk(Map<Integer, File> hashingData, File outputDir)
160160
}
161161
else
162162
{
163-
File meta = getAdtMetadata(hashingData.get(key));
164-
lines.add("\t'" + key + "' = '" + getRelativePath(meta, outputDir) + "',");
163+
lines.add("\t'" + key + "' = '" + getRelativePath(getAdtMetadata(hashingData.get(key)), outputDir) + "',");
165164
}
166165
}
167166

0 commit comments

Comments
 (0)