File tree Expand file tree Collapse file tree 2 files changed +20
-4
lines changed Expand file tree Collapse file tree 2 files changed +20
-4
lines changed Original file line number Diff line number Diff line change
1
+ FROM continuumio/anaconda3
2
+
3
+ RUN apt-get install -y cmake
4
+
5
+ RUN conda install --quiet --yes -c conda-forge \
6
+ multicore-tsne \
7
+ pandas-gbq \
8
+ panel \
9
+ networkx \
10
+ joblib \
11
+ gensim \
12
+ tqdm
13
+
14
+ RUN conda install --quiet --yes -c pyviz pyviz
15
+
16
+ RUN conda install --quiet --yes -c bioconda snakemake
Original file line number Diff line number Diff line change 6
6
import seaborn as sns
7
7
import os
8
8
import pandas_gbq
9
- import github_analysis . data_layer as dl
10
- import github_analysis . motif_finder as mf
11
- import github_analysis . freq_graph as fg
9
+ import data_layer as dl
10
+ import motif_finder as mf
11
+ import freq_graph as fg
12
12
from google .oauth2 .service_account import Credentials
13
13
from matplotlib .ticker import FuncFormatter
14
14
from decimal import Decimal
19
19
import seaborn as sns ; sns .set (color_codes = True )
20
20
from pdf2image import convert_from_path
21
21
import joypy
22
- from github_analysis . nxutils import git_graph
22
+ from nxutils import git_graph
23
23
import scipy .stats as st
24
24
25
25
from sklearn import preprocessing
You can’t perform that action at this time.
0 commit comments