Skip to content

Commit

Permalink
Merge branch 'release/0.2.14'
Browse files Browse the repository at this point in the history
  • Loading branch information
buehlere committed Nov 23, 2022
2 parents 64dffcb + fc75ce4 commit 1e87bd5
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion biometrics/cluster.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def cluster(self, comparisons):
max_occurence = occurences.most_common()
max_occurence_val = max_occurence[0][1]
most_common_group = list(filter(lambda x: x[1] == max_occurence_val, max_occurence))
most_common_group = ','.join([i[0] for i in most_common_group])
most_common_group = ':'.join([i[0] for i in most_common_group])

for i, sample in enumerate(samples_in_group):

Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ networkx
numpy
pandas
plotly
pysam==0.16.0.1
PyVCF==0.6.8
pysam
pyvcf3
python-dateutil
pytz
retrying
Expand Down
Binary file added tests/test_data/test_sample1.pickle
Binary file not shown.
Binary file added tests/test_data/test_sample2.pickle
Binary file not shown.

0 comments on commit 1e87bd5

Please sign in to comment.