Skip to content

Commit

Permalink
fix oriC/V statistic
Browse files Browse the repository at this point in the history
  • Loading branch information
oschwengers committed Dec 22, 2021
1 parent ca3449d commit 90bfe99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bakta/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ def main():
print(f"\tCDSs: {len(cdss)}, hypotheticals: {len([cds for cds in cdss if 'hypothetical' in cds])}")
print(f"\tsORFs: {len([f for f in features if f['type'] == bc.FEATURE_SORF])}")
print(f"\tgaps: {len([f for f in features if f['type'] == bc.FEATURE_GAP])}")
print(f"\toriCs/oriVs: {len([f for f in features if f['type'] == bc.FEATURE_ORIC])}")
print(f"\toriCs/oriVs: {len([f for f in features if (f['type'] == bc.FEATURE_ORIC or f['type'] == bc.FEATURE_ORIV)])}")
print(f"\toriTs: {len([f for f in features if f['type'] == bc.FEATURE_ORIT])}")

############################################################################
Expand Down

0 comments on commit 90bfe99

Please sign in to comment.