Skip to content

Commit

Permalink
index error in count indels
Browse files Browse the repository at this point in the history
  • Loading branch information
Бабин Юрий Юрьевич committed Jul 15, 2019
1 parent 45b92d5 commit 633ad9c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
2 changes: 2 additions & 0 deletions crispr_cas9/count_indels.py
Original file line number Diff line number Diff line change
Expand Up @@ -373,6 +373,8 @@ def main():
application which doesn't allow it to be processed
Now this file is skipped
""".format(f))
except IndexError as inderr:
print("something wrong with {0}, error: {1}".format(f, inderr))
try:
df_dels = _create_df(ref_seq, total_dels)
df_ins = _create_df(ref_seq, total_ins)
Expand Down
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@
download_url = 'https://github.com/babinyurii/crispr_cas9/archive/v_0.3.tar.gz',
keywords = ['bioinformatics', 'indels', 'sequencing', 'NGS'],
install_requires=[
'pandas==0.23.0',
'biopython==1.73',
'matplotlib==2.2.2',
'numpy==1.11.3',
'seaborn==0.8.1'
'pandas',
'biopython',
'matplotlib',
'numpy',
'seaborn'
],
classifiers=[
'Development Status :: 4 - Beta',
Expand Down

0 comments on commit 633ad9c

Please sign in to comment.