Skip to content
Snippets Groups Projects
Commit 706dabeb authored by Skander Hatira's avatar Skander Hatira
Browse files

fixed directory unlock + configComparison value types

parent c5fc0b52
No related branches found
No related tags found
No related merge requests found
Pipeline #40794 passed
Subproject commit 091d41959a74f4a7ed665627d8c073a06800c727
Subproject commit 25d55faba65ccf4d3a50cc493633e494250c9444
......@@ -26,18 +26,18 @@ const createConfigComparison = (body, uniqueDir, uniqueDirRemote) => {
},
params: {
method: body.method,
binSize: body.binsize,
binSize: Number(body.binsize),
kernelFunction: body.kernelFunction,
test: body.stat,
context: body.contexts,
pseudocountM: body.pseudocountM,
pseudocountN: body.pseudocountN,
pValueThreshold: body.pValueThreshold,
minCytosinesCount: body.minCytosinesCount,
minProportionDifference: body.minProportionDifference,
pseudocountM: Number(body.pseudocountM),
pseudocountN: Number(body.pseudocountN),
pValueThreshold: Number(body.pValueThreshold),
minCytosinesCount: Number(body.minCytosinesCount),
minProportionDifference: Number(body.minProportionDifference),
minGap: parseInt(body.minGap),
minSize: parseInt(body.minSize),
minReadsPerCytosine: body.minReadsPerCytosine,
minReadsPerCytosine: Number(body.minReadsPerCytosine),
cores: body.remote ? 10 : cpuCount,
},
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment