This repository has been archived by the owner on May 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #150 from labdao/140-add-overview-intro-and-tools-…
…page-for-protein-folding adding protein folding content
- Loading branch information
Showing
4 changed files
with
68 additions
and
4 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,7 @@ | |
title: Introduction to Protein Folding | ||
# sidebar_position: 2 | ||
--- | ||
## Coming soon... | ||
|
||
:::note | ||
Coming soon! | ||
::: |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,65 @@ | ||
--- | ||
title: Tools | ||
sidebar_position: 2 | ||
--- | ||
--- | ||
|
||
Since the release of Alphafold there has been a variety of related models released for protein folding. We have gone through the literature and open source code repositories to provide a selection of tools that are ready for you to run on PLEX. | ||
|
||
:::note | ||
All models we provide are research-grade software and are provided "as-is". We make use of existing, often academic, contributions. Please give credit to the creators of open-source work. **We are standing on the shoulder of giants.** | ||
::: | ||
|
||
:::info | ||
We have prepared a set of configurations for you that we list below. We are working on ways to have more control over individual parameters. | ||
::: | ||
|
||
|
||
## Mini: Colabfold | ||
[Colabfold](https://github.com/sokrypton/ColabFold) is an implementation of Alphafold that uses a multiple sequence alignment (MSA) Server, MMSeq2, instead of a local database to make using [Alphafold](https://github.com/deepmind/alphafold) more lightweight. The "mini" configuration runs a shallow MSA, performs one recycling and uses available templates to make a prediction. This is best used if you want to predict a protein structure very fast. | ||
|
||
```` | ||
./plex -app colabfold-mini -input-dir testdata/folding -gpu=true -network=true | ||
```` | ||
|
||
:::note | ||
Mirdita M, Schütze K, Moriwaki Y, Heo L, Ovchinnikov S and Steinegger M. ColabFold: Making protein folding accessible to all. | ||
Nature Methods (2022) doi: 10.1038/s41592-022-01488-1 | ||
::: | ||
|
||
|
||
## Base: Colabfold | ||
The "base" configuration runs a shallow MSA, performs one recycling and uses available templates to make a prediction. It runs this prediction 5 times with different randomness seeds. This is best used if you want to predict a protein structure very fast and draw from a distribution of potential conformational substates. | ||
|
||
```` | ||
./plex -app colabfold-base -input-dir testdata/folding -gpu=true -network=true | ||
```` | ||
|
||
:::note | ||
Mirdita M, Schütze K, Moriwaki Y, Heo L, Ovchinnikov S and Steinegger M. ColabFold: Making protein folding accessible to all. | ||
Nature Methods (2022) doi: 10.1038/s41592-022-01488-1 | ||
::: | ||
|
||
## Standard: Colabfold | ||
The "standard" configuration runs a full MSA, performs three recycling rounds and uses available templates to make a prediction. It runs this prediction 5 times with different randomness seeds. This is best used if you want to predict a state of the art structure and draw from a distribution of potential conformational substates. | ||
|
||
```` | ||
./plex -app colabfold-standard -input-dir testdata/folding -gpu=true -network=true | ||
```` | ||
|
||
:::note | ||
Mirdita M, Schütze K, Moriwaki Y, Heo L, Ovchinnikov S and Steinegger M. ColabFold: Making protein folding accessible to all. | ||
Nature Methods (2022) doi: 10.1038/s41592-022-01488-1 | ||
::: | ||
|
||
## Large: Colabfold | ||
The "large" configuration runs just like the standard configuration, but includes a GPU-accelerated relaxation step using Amber. It returns 25 predictions. This is best used when a lot of ressources are available and you want to predict a state of the art structure while drawing from a larger distribution of potential conformational substates. | ||
|
||
```` | ||
./plex -app colabfold-large -input-dir testdata/folding -gpu=true -network=true | ||
```` | ||
|
||
:::note | ||
Mirdita M, Schütze K, Moriwaki Y, Heo L, Ovchinnikov S and Steinegger M. ColabFold: Making protein folding accessible to all. | ||
Nature Methods (2022) doi: 10.1038/s41592-022-01488-1 | ||
::: | ||
|
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
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