We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.
You must be logged in to block users.
Contact GitHub support about this user’s behavior. Learn more about reporting abuse.
pmUE (Protein Modelling Unreal Engine) - a repo for constructing a molecule visualizer plugin in Unreal
C++ 7 3
Python 4 2
My attempts at problems 1-100 from the Project Euler Archives (projecteuler.net)
Python
import matplotlib.pyplot as plt
plt.style.use('seaborn-v0_8') # I personally prefer seaborn for the graph style, but you may choose whichever you want.
params = {"ytick.color" : "black",
"xtick.color" : "black",
resdict = {"ALA": "A","CYS": "C","ASP": "D","GLU": "E","PHE": "F","GLY": "G","HIS": "H","ILE": "I","LYS": "K","LEU": "L","MET": "M","ASN": "N","PRO": "P","GLN": "Q","ARG": "R","SER": "S","THR": "T","VAL": "V","TRP": "W","TYR": "Y"}
resdict_inv = {one_let: three_let for three_let, one_let in resdict.items()}
# %%file build_dimer.py
import os
from PeptideBuilder import Geometry
import PeptideBuilder
import Bio.PDB
There was an error while loading. Please reload this page.