Skip to content

Instantly share code, notes, and snippets.

@jakul
Created February 14, 2014 15:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jakul/9003546 to your computer and use it in GitHub Desktop.
Save jakul/9003546 to your computer and use it in GitHub Desktop.
if __name__ == '__main__':
print('a')
# check PCTs are consistent
print(set(PCT_TO_CCG.keys()).difference(set(PCTS)))
print(set(PCTS).difference(PCT_TO_CCG.keys()))
# check CCGs are consistent
# print(set(CCGS).difference(PCT_TO_CCG.values()))
print(set(PCT_TO_CCG.values()).difference(set(CCGS)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment