Skip to content

Commit

Permalink
Fix overlap store stash
Browse files Browse the repository at this point in the history
  • Loading branch information
skoren committed May 10, 2018
1 parent 021a471 commit 3a163ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pipelines/canu/Grid_Cloud.pm
Original file line number Diff line number Diff line change
Expand Up @@ -585,7 +585,7 @@ sub stashOvlStore ($$) {
for (my $bIdx="0001"; (-e "./$base/$asm.ovlStore/$bIdx<001>"); $bIdx++) {
for (my $sIdx="001"; (-e "./$base/$asm.ovlStore/$bIdx<$sIdx>"); $sIdx++) {
if (! fileExists("$base/$asm.ovlStore/$bIdx.$sIdx", 1)) {
runCommandSilently(".", "$client cat \"./$base/$asm.ovlStore/$bIdx<$sIdx>\" | $client upload --wait --parents --path $pr:$ns/$base/$asm.ovlStore/$bIdx.$sIdx -", 1);
runCommandSilently(".", "cat \"./$base/$asm.ovlStore/$bIdx<$sIdx>\" | $client upload --wait --parents --path $pr:$ns/$base/$asm.ovlStore/$bIdx.$sIdx -", 1);
}
}
}
Expand Down

0 comments on commit 3a163ac

Please sign in to comment.