Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
master_project_JLU2018/bin/3.1_create_gtf/Modules/Ensembl/checksums.py
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
23 lines (18 sloc)
565 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import hashlib | |
# Python implementation of linux sum (BSD 16-bit Checksum) commandline tool. | |
""" | |
Unused script with checksum implementations in Python | |
""" | |
def bsdchecksum(infile): | |
with open(infile, 'rb') as f: | |
file_bytes = f.read() | |
c_sum = 0 | |
for char in file_bytes: | |
c_sum = (c_sum >> 1) + ((c_sum & 1) << 15) | |
c_sum += char | |
c_sum &= 0xffff | |
return c_sum | |
def md5_checksum(infile): | |
with open(infile, 'rb') as f: | |
file_bytes = f.read() | |
return hashlib.md5(file_bytes).hexdigest() |