-
Notifications
You must be signed in to change notification settings - Fork 27
/
bigscape.py
37 lines (24 loc) · 977 Bytes
/
bigscape.py
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
26
27
28
29
30
31
32
33
34
35
36
37
#!/usr/bin/env python3
"""
BiG-SCAPE
PI: Marnix Medema [email protected]
Maintainers:
Arjan Draisma [email protected]
Catarina Loureiro [email protected]
Nico Louwen [email protected]
Developers:
Arjan Draisma [email protected]
Catarina Loureiro [email protected]
Nico Louwen [email protected]
Usage: Please see `python bigscape.py -h`
`python bigscape.py cluster -h`
Example: python bigscape.py cluster -i ./inputfiles -o ./results -c 8 -p ./Pfam-A.hmm
Official repository:
https://github.com/medema-group/BiG-SCAPE
License: GNU Affero General Public License v3 or later
A copy of GNU AGPL v3 should have been included in this software package in
LICENSE.txt.
"""
if __name__ == "__main__":
from big_scape import __main__
__main__.main()