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
def read_single_cossmo_example(serialized_example, n_tissues=1, coord_sys='rna1'): | |
"""Decode a single COSSMO example | |
coord_sys must be one of 'rna1' or 'dna0', if 'dna0' then an extra 'strand' field | |
must exist in the tfrecord and is extracted. | |
""" | |
assert coord_sys in ['dna0', 'rna1'] | |
context_features = { |