Skip to content

Commit

Permalink
Merge pull request #62 from alexandari/master
Browse files Browse the repository at this point in the history
python3 compatible dinuc shuffling
  • Loading branch information
AvantiShri authored Sep 11, 2018
2 parents 9fdb6b3 + 72fd602 commit beb8923
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion deeplift.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: deeplift
Version: 0.6.7.0
Version: 0.6.7.1
Summary: DeepLIFT (Deep Learning Important FeaTures)
Home-page: https://github.com/kundajelab/deeplift
License: UNKNOWN
Expand Down
2 changes: 1 addition & 1 deletion deeplift/dinuc_shuffle.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#compile the dinucleotide edges
def prepare_edges(s):
edges = defaultdict(list)
for i in xrange(len(s)-1):
for i in range(len(s)-1):
edges[s[i]].append(s[i+1])
return edges

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
Implements the methods in "Learning Important Features Through Propagating Activation Differences" by Shrikumar, Greenside & Kundaje, as well as other commonly-used methods such as gradients, guided backprop and integrated gradients. See https://github.com/kundajelab/deeplift for documentation and FAQ.
""",
url='https://github.com/kundajelab/deeplift',
version='0.6.7.0',
version='0.6.7.1',
packages=['deeplift',
'deeplift.layers', 'deeplift.visualization',
'deeplift.conversion'],
Expand Down

0 comments on commit beb8923

Please sign in to comment.