Skip to content

Commit

Permalink
Removed cadet.py from CADETMatch and now used the CADET-python packag…
Browse files Browse the repository at this point in the history
…e that has just been uploaded to PyPi
  • Loading branch information
Immudzen committed Sep 19, 2019
1 parent eb0feed commit 49b98f5
Show file tree
Hide file tree
Showing 19 changed files with 16 additions and 207 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -303,3 +303,4 @@ __pycache__/
/dist
/CADETMatch_kosh.egg-info
/Examples/Example1/Dextran/fit_nsga3_deap
/build/lib/CADETMatch
2 changes: 1 addition & 1 deletion CADETMatch.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: CADETMatch
Version: 0.2
Version: 0.3
Summary: CADETMatch is a parameter estimation and error modeling library for CADET
Home-page: https://github.com/modsim/CADET-Match
Author: William Heymann
Expand Down
1 change: 0 additions & 1 deletion CADETMatch.egg-info/SOURCES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ setup.py
CADETMatch/__init__.py
CADETMatch/autocorr.py
CADETMatch/cache.py
CADETMatch/cadet.py
CADETMatch/calc_coeff.py
CADETMatch/checkpoint_algorithms.py
CADETMatch/evo.py
Expand Down
3 changes: 0 additions & 3 deletions CADETMatch/CADETMatch.pyproj
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,6 @@
<Compile Include="cache.py">
<SubType>Code</SubType>
</Compile>
<Compile Include="cadet.py">
<SubType>Code</SubType>
</Compile>
<Compile Include="jupyter.py">
<SubType>Code</SubType>
</Compile>
Expand Down
2 changes: 1 addition & 1 deletion CADETMatch/cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from pathlib import Path
import json
from CADETMatch.cadet import Cadet
from cadet import Cadet

import numpy

Expand Down
187 changes: 0 additions & 187 deletions CADETMatch/cadet.py

This file was deleted.

2 changes: 1 addition & 1 deletion CADETMatch/evo.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from deap import creator
from deap import tools

from CADETMatch.cadet import Cadet
from cadet import Cadet

import CADETMatch.cache as cache

Expand Down
1 change: 0 additions & 1 deletion CADETMatch/generate_corner_graphs.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
import scipy.interpolate
import itertools

import CADETMatch.cadet as cadet
from cadet import H5
from addict import Dict

Expand Down
2 changes: 1 addition & 1 deletion CADETMatch/generate_graphs.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
import scipy.interpolate
import itertools

from CADETMatch.cadet import Cadet, H5
from cadet import Cadet, H5
from addict import Dict

#parallelization
Expand Down
1 change: 0 additions & 1 deletion CADETMatch/grad.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
import subprocess
import csv
import time
import CADETMatch.cadet as cadet
import scoop
import CADETMatch.cache as cache

Expand Down
2 changes: 1 addition & 1 deletion CADETMatch/graph_spearman.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from matplotlib import figure
from matplotlib.backends.backend_agg import FigureCanvasAgg as FigureCanvas

import CADETMatch.cadet as cache
from CADETMatch.cache import cache

from pathlib import Path
import warnings
Expand Down
2 changes: 1 addition & 1 deletion CADETMatch/jacobian.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from scipy.optimize._numdiff import approx_derivative
import CADETMatch.cadet as cadet
from CADETMatch.cache import cache
from pathlib import Path
import CADETMatch.util as util
import numpy
Expand Down
2 changes: 1 addition & 1 deletion CADETMatch/kde_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

import itertools
import CADETMatch.score as score
from CADETMatch.cadet import Cadet, H5
from cadet import Cadet, H5
from pathlib import Path
import numpy
import scoop
Expand Down
2 changes: 1 addition & 1 deletion CADETMatch/match.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import numpy
import shutil
import csv
from CADETMatch.cadet import Cadet
from cadet import Cadet
from pathlib import Path

from deap import creator
Expand Down
2 changes: 1 addition & 1 deletion CADETMatch/mcmc_plot_tube.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from scoop import futures
import sys

import CADETMatch.cadet as cadet
import cadet
import CADETMatch.util as util
import CADETMatch.evo as evo
import pandas
Expand Down
2 changes: 1 addition & 1 deletion CADETMatch/mle.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from scoop import futures
import sys

import CADETMatch.cadet as cadet
import cadet
import CADETMatch.util as util
import CADETMatch.evo as evo
import pandas
Expand Down
2 changes: 1 addition & 1 deletion CADETMatch/search/mcmc.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from pathlib import Path
import time
import csv
import CADETMatch.cadet as cadet
import cadet

import emcee
import SALib.sample.sobol_sequence
Expand Down
2 changes: 1 addition & 1 deletion CADETMatch/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

import tempfile
import os
from CADETMatch.cadet import Cadet, H5
from cadet import Cadet, H5
import subprocess
import sys
import json
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="CADETMatch",
version="0.2",
version="0.3",
author="William Heymann",
author_email="[email protected]",
description="CADETMatch is a parameter estimation and error modeling library for CADET",
Expand All @@ -27,7 +27,8 @@
'scipy',
'matplotlib',
'pandas',
'h5py'
'h5py',
'CADET'
],
classifiers=[
"Programming Language :: Python :: 3",
Expand Down

0 comments on commit 49b98f5

Please sign in to comment.