File size: 5,636 Bytes
44459bb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 |
extra_css:
- css/main.css
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.superfences:
custom_fences:
- class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format ''
name: mermaid
- pymdownx.tabbed:
alternate_style: true
- attr_list
- md_in_html
- pymdownx.emoji:
emoji_generator: !!python/name:material.extensions.emoji.to_svg ''
emoji_index: !!python/name:material.extensions.emoji.twemoji ''
nav:
- index.md
- Tutorials:
- tutorials/index.md
- Install Folding Studio: tutorials/installation.md
- Run AlphaFold2 on a protein sequence: tutorials/single_folding_job_af2.md
- Perform a Multiple Sequence Alignment (MSA) search: tutorials/msa_search.md
- Preview - Run folding jobs with AlphaFold3-like models: tutorials/single_folding_job_af3.md
- How-to guides:
- how-to-guides/index.md
- AlphaFold2/OpenFold:
- Provide Input Data: how-to-guides/af2_openfold/provide_input_data.md
- Launch a Folding Job using AlphaFold2: how-to-guides/af2_openfold/single_af2_job.md
- Launch a Folding Job using OpenFold: how-to-guides/af2_openfold/single_openfold_job.md
- Launch a Folding Job with custom parameters: how-to-guides/af2_openfold/set_af_folding_parameters.md
- Launch a batch Folding Job from a configuration file: how-to-guides/af2_openfold/batch_job_from_configuration_file.md
- Launch a batch Folding Job from a directory of fasta files: how-to-guides/af2_openfold/batch_job_from_directory.md
- Check Job Status: how-to-guides/af2_openfold/fetch_folding_job_status.md
- Download Job Logs: how-to-guides/af2_openfold/download_logs.md
- Cancel a Folding Job submission: how-to-guides/af2_openfold/cancel_experiment.md
- Retrieve Features from a Folding Job: how-to-guides/af2_openfold/get_experiment_features.md
- Download results of a folding job: how-to-guides/af2_openfold/download_prediction_results.md
- Advanced Algorithms:
- Launch a Folding Job using MSA subsampling: how-to-guides/af2_openfold/advanced_algorithms/msa_subsampling_job.md
- Launch a Folding Job using the Gap Trick for Folding Multimer Complexes: how-to-guides/af2_openfold/advanced_algorithms/gap_trick_job.md
- Launch a Folding Job using an Initial Guess Structure in AlphaFold2: how-to-guides/af2_openfold/advanced_algorithms/initial_guess_af2.md
- Launch a Folding Job applying Template Masking in Gap Trick Mode: how-to-guides/af2_openfold/advanced_algorithms/template_masking_job.md
- Preview - Launch a folding job using SoloSeq model: how-to-guides/af2_openfold/soloseq_job.md
- Preview - AlphaFold3-like:
- Provide Input Data: how-to-guides/af3/provide_input_data.md
- Launch a Single Job using Boltz-1: how-to-guides/af3/single_job_boltz.md
- Launch a Single Job using Chai-1: how-to-guides/af3/single_job_chai.md
- Launch a Single Job using Protenix: how-to-guides/af3/single_job_protenix.md
- Launch a Single Job from a YAML file using Boltz-1: how-to-guides/af3/boltz_single_yaml_job.md
- Launch a Batch Job from a directory: how-to-guides/af3/batch_job_from_directory.md
- Launch a Single Job from a Protein Sequence: how-to-guides/af3/single_job_from_protein_sequence.md
- Post-processing recipes:
- Calculate Interface pLDDT and pAE: how-to-guides/other/pLDDT_pAE_calculation.md
- Multiple Sequence Alignment Search:
- Provide Input Data for MSA: how-to-guides/msa_search/provide_input_data.md
- Launch an MSA Search with MMSeqs2: how-to-guides/msa_search/msa_search_mmseqs2.md
- Launch an MSA Search ignoring cache: how-to-guides/msa_search/msa_no_cache.md
- Check an MSA Job Status: how-to-guides/msa_search/fetch_msa_job_status.md
- Download MSA Job Logs: how-to-guides/msa_search/download_msa_logs.md
- Download Results of an MSA Search: how-to-guides/msa_search/download_msa_search_results.md
- Explanation:
- explanation/index.md
- Supported models: explanation/supported_models.md
- Advanced algorithms: explanation/advanced_algorithms.md
- Reference:
- CLI: reference/cli.md
- Python Library: reference/python_lib_docs.md
plugins:
- swagger-ui-tag
- search
site_name: Folding Studio
site_url: https://int-bio-foldingstudio-gcp.nw.r.appspot.com
theme:
colormode: auto
features:
- content.code.select
- content.code.copy
- navigation.indexes
- navigation.tracking
- navigation.sections
- navigation.top
highlightjs: true
hljs_languages:
- python
- bash
icon:
admonition:
abstract: octicons/checklist-16
bug: octicons/bug-16
danger: octicons/zap-16
example: octicons/beaker-16
failure: octicons/x-circle-16
info: octicons/info-16
note: octicons/tag-16
question: octicons/question-16
quote: octicons/quote-16
success: octicons/check-16
tip: octicons/squirrel-16
warning: octicons/alert-16
logo: material/dna
name: material
nav_style: primary
palette:
- media: '(prefers-color-scheme: light)'
scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: '(prefers-color-scheme: dark)'
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode
user_color_mode_toggle: true
|