Skip to content

Commit

Permalink
now prints get_rep and removerep command
Browse files Browse the repository at this point in the history
  • Loading branch information
mshakya committed Aug 4, 2020
1 parent 5c95036 commit 056f79f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/runNUCmer.pl
Original file line number Diff line number Diff line change
Expand Up @@ -160,10 +160,12 @@ sub run_self_nucmer {

my $command =
"get_repeat_coords.pl -l $len_cutoff -i $repeat_identity -o $coords -s $stat $reference";
print "[RUNNING:]$command\n";
if ( system($command) ) { die "Error running $command.\n"; }

my $remove_repeats =
"removeRepeats.pl -f $reference -c $coords -o $fasta";
print "[RUNNING:]$remove_repeats\n";
if ( system($remove_repeats) ) {
die "Error running $remove_repeats.\n";
}
Expand Down

0 comments on commit 056f79f

Please sign in to comment.