Skip to content

Commit

Permalink
fix unittest that kept r
Browse files Browse the repository at this point in the history
RNA
  • Loading branch information
nickp60 committed Mar 5, 2019
1 parent de0c50f commit 7b8df47
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM continuumio/miniconda3
MAINTAINER Nick Waters <nickp60@gmail.com>
RUN conda install -c BioBuilds blast biopython
RUN git clone https://github.com/nickp60/annofilt.git #####
ADD . annofilt
RUN git clone https://github.com/nickp60/annofilt.git ######
# ADD . annofilt
WORKDIR annofilt
RUN python setup.py install
ENTRYPOINT [ "annofilt" ]
2 changes: 1 addition & 1 deletion tests/test_annofilt.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def test_loop_through_genbank(self):
with open(newf, "r") as inf:
for line in inf:
nlines = nlines + 1
self.assertEqual(nlines, 1521)
self.assertEqual(nlines, 1516)

def test_BLAST_tab_to_df(self):
self.assertEqual(
Expand Down

0 comments on commit 7b8df47

Please sign in to comment.