Mercurial > repos > mheinzl > hd
comparison hd.py @ 9:c81bc96bea1c draft
planemo upload for repository https://github.com/monikaheinzl/galaxyProject/tree/master/tools/hd commit 772695137fbccb155da4cdd1e0492333b94d0b06
author | mheinzl |
---|---|
date | Tue, 15 May 2018 11:19:07 -0400 |
parents | e2596a4e1c56 |
children | 69aa17354a6e |
comparison
equal
deleted
inserted
replaced
8:e2596a4e1c56 | 9:c81bc96bea1c |
---|---|
496 else: # half1, corrects the variable of the HD from both halfs if it is a or b | 496 else: # half1, corrects the variable of the HD from both halfs if it is a or b |
497 d = d_1 | 497 d = d_1 |
498 d2 = d_2 | 498 d2 = d_2 |
499 min_valueList.append(d + d2) | 499 min_valueList.append(d + d2) |
500 min_tagsList.append(tag) | 500 min_tagsList.append(tag) |
501 ham1.append.append(d) | 501 ham1.append(d) |
502 ham2.append.append(d2) | 502 ham2.append(d2) |
503 difference1 = abs(d - d2) | 503 difference1 = abs(d - d2) |
504 diff11.append(difference1) | 504 diff11.append(difference1) |
505 rel_difference = round(float(difference1) / (d + d2), 1) | 505 rel_difference = round(float(difference1) / (d + d2), 1) |
506 relativeDiffList.append(rel_difference) | 506 relativeDiffList.append(rel_difference) |
507 | 507 |