Skip to content

Commit

Permalink
correct genome sequence number in the TEanno.sum file #73
Browse files Browse the repository at this point in the history
  • Loading branch information
oushujun committed Apr 3, 2020
1 parent 7cf1214 commit 5b9b9fe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion EDTA.pl
Original file line number Diff line number Diff line change
Expand Up @@ -607,7 +607,7 @@
`perl $make_masked -genome $genome -rmout $genome.out -maxdiv 30 -minscore 1000 -minlen 1000 -hardmask 1 -misschar N -threads $threads -exclude $exclude`;
`mv $genome.new.masked $genome.MAKER.masked`;
my $maker_TE = `perl $count_base $genome.MAKER.masked`;
$maker_TE = (split /\s+/, $maker_TE)[-1];
$maker_TE = (split /\s+/, $maker_TE)[3];
$maker_TE = sprintf("%.2f%%", $maker_TE*100);

# check results and report status
Expand Down
2 changes: 1 addition & 1 deletion util/buildSummary.pl
Original file line number Diff line number Diff line change
Expand Up @@ -691,7 +691,7 @@ sub usage {
##
print "Repeat Stats\n";
print "============\n";
print "Total Sequences: " . scalar( keys( %seqs ) ) . "\n";
print "Total Sequences: " . $totalSeqNum . "\n";
print "Total Length: $totalSeqLen bp\n";
if ( $taxDB ) {
print "Ancestral Repeats: $ancestralCount ( $ancestralBPMasked bp )\n";
Expand Down

0 comments on commit 5b9b9fe

Please sign in to comment.