Skip to content

Commit ff035ae

Browse files
Merge 22.12 to develop
2 parents ead74d8 + 9abb3ab commit ff035ae

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

primeseq/src/org/labkey/primeseq/pipeline/MhcMigrationPipelineJob.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ private void syncAssay(String providerName, String assayName, List<String> runCo
279279
continue;
280280
}
281281

282-
File assayTmp = File.createTempFile("assay-upload", ".txt").getAbsoluteFile();
282+
File assayTmp = FileUtil.createTempFile("assay-upload", ".txt").getAbsoluteFile();
283283
ViewBackgroundInfo info = getJob().getInfo();
284284
ViewContext vc = ViewContext.getMockViewContext(info.getUser(), workbookMap.get(wb), info.getURL(), false);
285285
final Set<Object> missingAnalyses = new HashSet<>();

tcrdb/src/org/labkey/tcrdb/TCRdbController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ public ModelAndView getView(ExportAlignmentsForm form, BindException errors) thr
163163
SimpleDateFormat fmt = new SimpleDateFormat("yyyy-MM-dd");
164164
for (File f : VDJMap.keySet())
165165
{
166-
File tmp = File.createTempFile("mixcr", ".txt");
166+
File tmp = FileUtil.createTempFile("mixcr", ".txt");
167167
MiXCRWrapper wrapper = new MiXCRWrapper(_log);
168168
//TODO:
169169
//wrapper.setLibraryPath();

0 commit comments

Comments
 (0)