boltznet 0.3.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
boltznet/__init__.py ADDED
@@ -0,0 +1,3 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Only export the public submodule name
3
+ __all__ = ["boltznet_tf"]
@@ -0,0 +1,51 @@
1
+ #!/usr/bin/env python3
2
+ # -*- coding: utf-8 -*-
3
+ """
4
+ Configuration file that can be modified for each user
5
+ Primarily to indicate locations of files etc
6
+
7
+ @author: jgalag
8
+ """
9
+
10
+ # SERVER LOCATIONS
11
+
12
+ server_data_root = '/Volumes/eng_research_galagan/seqdata/projects/ecoli'
13
+ '''Mounted server location of seqdata/projects/ecoli'''
14
+ server_projects_root = '/Volumes/eng_research_galagan/seqdata/projects/'
15
+ '''Mounted server location of seqdata/projects/'''
16
+
17
+ server_meme_root = '%s/downstream_files/analysis/meme' % server_data_root
18
+ '''Mounted server location of meme analysis directory'''
19
+
20
+ boltznet_comparison_server='/Volumes/eng_research_galagan/seqdata/projects/boltzNetComparisons/'
21
+
22
+ new_regulon_dir='/Volumes/eng_research_galagan/seqdata/projects/ecoli/downstream_files/analysis/known_motifs/Regulon-v12-confirmed'
23
+ '''Location of regulonDB meme file'''
24
+
25
+
26
+ # LOCAL PLACES
27
+
28
+ model_dir = '/Users/jgalag/Dropbox/Python/CNNModels/models'
29
+ '''Location for models'''
30
+
31
+ model_json_dir = '%s/json'%model_dir
32
+ '''Location for model json files'''
33
+
34
+
35
+ bokeh_temp_dir = '/Users/jgalag/Dropbox/Python/CNNModels/bokeh_temp'
36
+ '''Temp dir for browsers'''
37
+
38
+ browser_dir = '/Users/jgalag/Dropbox/Python/CNNModels/browsers'
39
+ '''Standard location for TF genome browsers and model browsers'''
40
+
41
+ data_dir = '/Users/jgalag/Dropbox/Python/CNNModels/source/datafiles'
42
+ '''Location of datafiles including genome files and geneview files'''
43
+
44
+ # figpath='/Users/jgalag/Dropbox/Projects/Papers/Ecoli Papers/Model Paper/resub'
45
+ figpath='/Users/jgalag/Dropbox/Projects/Papers/Ecoli Papers/Boltznet/NatureFormat/Nat Comm Files/Final Submission/figures'
46
+
47
+ file_dir = '/Users/jgalag/Dropbox/Python/CNNModels/input_files'
48
+ '''Loction of Files for import and export'''
49
+
50
+ source_dir ='/Users/jgalag/Dropbox/Python/CNNModels/source'
51
+ '''Location of source folder'''