Skip to content

Commit

Permalink
upd coveralls
Browse files Browse the repository at this point in the history
  • Loading branch information
rasbt committed Nov 22, 2015
1 parent 934b234 commit 0d9c4df
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .coveragerc
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,7 @@
branch = True
source = biopandas
include = */biopandas/*

omit =
*/biopandas/testutils.py
*/biopandas/engine.py*
*/setup.py
2 changes: 1 addition & 1 deletion biopandas/pandas_pdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def rmsd(df1, df2, s='no hydrogen'):

total = ((df1['x_coord'] - df2['x_coord'])**2 +
(df1['y_coord'] - df2['y_coord'])**2 +
+ (df1['z_coord'] - df2['z_coord'])**2) +
(df1['z_coord'] - df2['z_coord'])**2) +
rmsd = round(( total.sum() / df1.shape[0] )**0.5, 4)
return rmsd

Expand Down

0 comments on commit 0d9c4df

Please sign in to comment.