From 085420fc4278e847c87b9cb71e06cce87d62851a Mon Sep 17 00:00:00 2001 From: Oliver Schwengers Date: Mon, 27 Nov 2023 12:03:36 +0100 Subject: [PATCH] add acknowledgements & comments to auxiliary scripts #246 --- scripts/collect-annotation-stats.py | 10 ++++++++++ scripts/extract-region.py | 8 ++++++++ 2 files changed, 18 insertions(+) diff --git a/scripts/collect-annotation-stats.py b/scripts/collect-annotation-stats.py index cffc0b1b..7a772a31 100755 --- a/scripts/collect-annotation-stats.py +++ b/scripts/collect-annotation-stats.py @@ -1,5 +1,15 @@ #!/usr/bin/python3 +################################################################################## +# +# This script collects annotation information from multiple JSON files +# and exports key metrics as TSV +# +# Thanks to Ahmed M. A. Elsherbini (https://github.com/AhmedElsherbini), for contributing. +# +################################################################################## + + import argparse import json import os diff --git a/scripts/extract-region.py b/scripts/extract-region.py index 6ddb90b1..303b07f5 100755 --- a/scripts/extract-region.py +++ b/scripts/extract-region.py @@ -1,5 +1,13 @@ #!/usr/bin/python3 +################################################################################## +# +# This script extract requested subregions of a genome +# and exports contained features as regular Bakta outputs. +# +################################################################################## + + import argparse import json import os