-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy path__init__.py
More file actions
50 lines (38 loc) · 1.05 KB
/
__init__.py
File metadata and controls
50 lines (38 loc) · 1.05 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
"""
scona
=====
scona is a Python package for the analysis
of structural covariance brain networks.
Website (including documentation)::
http://whitakerlab.github.io/scona
Source::
https://github.com/WhitakerLab/scona
Bug reports::
https://github.com/WhitakerLab/scona/issues
Simple example
--------------
FILL
Bugs
----
Please report any bugs that you find in an issue on `our GitHub repository <https://github.com/WhitakerLab/scona/issues>`_.
Or, even better, fork the repository and create a pull request.
License
-------
`scona is licensed under the MIT License <https://github.com/WhitakerLab/scona/blob/master/LICENSE>`_.
"""
# Release data
__author__ = "Kirstie Whitaker and Isla Staden"
__license__ = "MIT"
__date__ = ""
__version__ = 0.1
__bibtex__ = """ FILL
"""
from scona.make_corr_matrices import *
from scona.make_graphs import *
from scona.graph_measures import *
from scona.classes import *
from scona.analyses import *
from scona.wrappers import *
from scona.visualisations_helpers import *
import scona.datasets
from scona import *