This file contains hidden or 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 itertools | |
| from dataclasses import dataclass | |
| from pathlib import Path | |
| import modal | |
| from fastapi import FastAPI | |
| from fastapi.responses import FileResponse | |
This file contains hidden or 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
| # ipsae.py | |
| # script for calculating the ipSAE score for scoring pairwise protein-protein interactions in AlphaFold2 and AlphaFold3 models | |
| # https://www.biorxiv.org/content/10.1101/2025.02.10.637595v1 | |
| # Also calculates: | |
| # pDockQ: Bryant, Pozotti, and Eloffson. https://www.nature.com/articles/s41467-022-28865-w | |
| # pDockQ2: Zhu, Shenoy, Kundrotas, Elofsson. https://academic.oup.com/bioinformatics/article/39/7/btad424/7219714 | |
| # LIS: Kim, Hu, Comjean, Rodiger, Mohr, Perrimon. https://www.biorxiv.org/content/10.1101/2024.02.19.580970v1 | |
| # Roland Dunbrack |
This file contains hidden or 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
| <!doctype html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> | |
| <title>reveal.js</title> | |
| <link rel="stylesheet" href="dist/reset.css"> | |
| <link rel="stylesheet" href="dist/reveal.css"> |
This file contains hidden or 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
| const App = new Vue({ | |
| el: '#app', | |
| components: { | |
| }, | |
| data: { | |
| title: "", | |
| dynamic_para: "This sentence is generated dynamically.", | |
| selected_items: [], |
This file contains hidden or 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
| # this script shows a few residues and then records a movie changing the isovalue for the loaded cube file | |
| show #1:187 | |
| show #1:92 | |
| show #1:94 | |
| show #1:117 | |
| show #1:185 | |
| show #1:8 | |
| show #1:162 | |
| show #1:2 |
This file contains hidden or 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
| libgl1-mesa-dev | |
| xvfb |
This file contains hidden or 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
| name: plotmol-example | |
| channels: | |
| - conda-forge | |
| - simonboothroyd | |
| dependencies: | |
| - plotmol |
This file contains hidden or 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
| name: plotmol-example | |
| channels: | |
| - conda-forge | |
| - simonboothroyd | |
| dependencies: | |
| - plotmol |
This file contains hidden or 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
| name: p3d | |
| dependencies: | |
| - py3Dmol |
This file contains hidden or 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 numpy as np | |
| import matplotlib.pyplot as plt | |
| from sklearn.linear_model import LinearRegression | |
| from sklearn.ensemble import BaggingRegressor | |
| #Integrate pipeline to preprocess data in features and Y and perform regression | |
| # Either predict: individual Scores such as 1.UPPER_EXTREMITY_REFLEX_ACTIVITY | |
| # or predict the UPPER EXTREMITY SCORE (FMA-UE)(/66) |
NewerOlder