Skip to content

Commit

Permalink
Merge pull request #44 from KPMP/KPMP-4872_fix_argument_order
Browse files Browse the repository at this point in the history
KPMP-4872: put packageTypeAbbr before stainType in arg list
  • Loading branch information
rlreamy authored Mar 4, 2024
2 parents 02884fe + b11c971 commit 3903e9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/generateDPRCommands.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ async function generate_scripts() {
stainType = slideTypeMap[key];
}
}
updateCommands = updateCommands.concat('\n', './run-wsi-worker.sh ' + kpmpId + ' ' + fileName + ' ' + fileInfo._id + ' ' + stainType + ' ' + packageTypeAbbreviation );
updateCommands = updateCommands.concat('\n', './run-wsi-worker.sh ' + kpmpId + ' ' + fileName + ' ' + fileInfo._id + ' ' + packageTypeAbbreviation + ' ' + stainType );
});

fs.writeFile('dprUpdate_' + packageId + '.sh', updateCommands, { flag: 'a'}, function(err) {
Expand Down

0 comments on commit 3903e9d

Please sign in to comment.