Skip to content

Commit

Permalink
pass props to config object
Browse files Browse the repository at this point in the history
  • Loading branch information
chgibb committed Oct 11, 2017
1 parent f2f5e9a commit e06426e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/req/main/main.ts
Expand Up @@ -476,7 +476,10 @@ ipc.on(
}
else if(arg.opName == "inputBamFile")
{
atomicOp.addOperation("inputBamFile",arg.filePath);
atomicOp.addOperation("inputBamFile",{
bamPath : arg.filePath,
fasta : arg.fasta
});
}
else if(arg.opName == "linkRefSeqToAlignment")
{
Expand Down

0 comments on commit e06426e

Please sign in to comment.