File: __init__.py

package info (click to toggle)
python-cgecore 1.5.6%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 220 kB
  • sloc: python: 2,112; makefile: 6
file content (25 lines) | stat: -rw-r--r-- 736 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/usr/bin/env python
"""
The CGE functions module
"""
from .utility import (adv_dict, copy_dir, copy_file, create_zip_dir, debug,
                      open_, file_unzipper, file_zipper, mkpath, move_file,
                      seqs_from_file, Reg, REGroup, sort2groups, load_json,
                      sort_and_distribute
                      )
from .cmdline import Program, proglist, cmd2list
from .argumentparsing import (check_file_type, get_arguments, get_string,
                              make_file_list
                              )

#####################
__version__ = "1.5.6"
__all__ = [
    "argumentparsing",
    "cmdline",
    "utility"
]

# Initiate Shared Objects
# debug = Debug()
# proglist = programlist_obj()