Skip to content

Commit e3d78a6

Browse files
authored
Merge pull request #114 from UBC-MDS/docker_branch
Uploading Docker file
2 parents a81b51a + 320e7c1 commit e3d78a6

File tree

2 files changed

+20
-4
lines changed

2 files changed

+20
-4
lines changed

Dockerfile

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
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

src/github_analysis/make_report.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
import seaborn as sns
77
import os
88
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
1212
from google.oauth2.service_account import Credentials
1313
from matplotlib.ticker import FuncFormatter
1414
from decimal import Decimal
@@ -19,7 +19,7 @@
1919
import seaborn as sns; sns.set(color_codes=True)
2020
from pdf2image import convert_from_path
2121
import joypy
22-
from github_analysis.nxutils import git_graph
22+
from nxutils import git_graph
2323
import scipy.stats as st
2424

2525
from sklearn import preprocessing

0 commit comments

Comments
 (0)