Do synonymous codons affect
protein secondary structure?

PicoFold is a research tool that maps DNA codons to secondary structure types using the Ring-Granular Model — a unique, deterministic method with no machine learning, no GPU, and no simulation. Validated on 113 proteins against DSSP ground truth. Not a replacement for PSIPRED or AlphaFold — a different instrument for a different question.

113 proteins — DSSP ground truth
21,797 residues — helix signal confirmed
Instant — under 10ms, no GPU
100% deterministic and reproducible

The effect of synonymous codons on protein structure

All existing secondary structure predictors (PSIPRED, JPred, NetSurfP) work from protein sequence. PicoFold is the only tool that maps SS directly from DNA codons — a unique research capability, not a replacement for established predictors.

The Ring-Granular Model maps each codon to one of 5 secondary structure types via the compositional genetic code. The third nucleotide of the codon is the primary determinant: C→alpha, T→pi, A→beta/pi, G→310/alpha.

Validated on 113 proteins (21,797 aligned residues) against DSSP ground truth. Per-residue Q3=0.377 (+3.1pp above random baseline). Helix signal confirmed: G-ending codons 39.5% helix vs C-ending 30.1%. Best: Tropomyosin α Q3=0.821. Chi-square analysis shows 6/18 amino acid families with significant codon–SS association (Ser p=0.013, Gly p=0.016).

Deterministic output
Same DNA sequence → identical 3D coordinates, every time. No random sampling, no stochastic search.
No GPU infrastructure
CPU-only computation. No waiting for GPU availability, no expensive cloud GPU bills.
2D structure scheme
Color-coded amino acid grid — Code-4 (4 SS types) and Code-9 (open turns, Met, Pro) modes.

Per-Residue Accuracy on 16 Proteins

Validated against DSSP ground truth on 113 proteins (21,797 aligned residues).

0.377
Q3 accuracy
3-state (H/E/C) — +3.1pp above random baseline (0.347)
39.5%
G-ending helix rate
vs 30.1% for C-ending — confirms 3rd nucleotide helix signal
6/18
Significant families
Chi-square: Ser, Gly, Glu, Ile, Asp, Tyr (p<0.05)

Confusion matrix (rows = DSSP truth, cols = PicoFold prediction)

H (pred)E (pred)C (pred)
H (true)5,0021012,486
E (true)2,9291582,258
C (true)4,5542124,097

Key finding: G-ending codons show 39.5% helix in DSSP ground truth vs 30.1% for C-ending (+9.4pp gap), confirming the ring-granular model's helix signal. Chi-square analysis reveals 6/18 amino acid families with significant codon–SS association: Ser (p=0.013), Gly (p=0.016), Glu, Ile, Asp, Tyr. Ser and Gly survive Bonferroni correction.

Literature support: Nature Communications 2022 — 57/87 synonymous codon pairs show different backbone angles. PNAS 2020 — synonymous substitutions in antibodies alter solubility and binding. Annual Reviews Biophys 2024 — codon effects on cotranslational folding confirmed.

PicoFold vs AlphaFold vs ESMFold

Different tools for different needs. PicoFold is complementary — not a replacement.

Feature PicoFold AlphaFold 3 ESMFold
Method Direct kinematics Deep learning Language model
Prediction speed <10ms per sequence Minutes–hours Seconds–minutes
GPU required No Yes Yes
Deterministic Yes — always No Partial
Input format DNA (FASTA/EMBL/GenBank) Protein sequence / structure Protein sequence
Commercial use Yes Restricted Yes (self-hosted)
REST API Yes (enterprise) Limited Self-hosted only
Batch processing Yes Limited Self-hosted only
Best for Codon–SS research, education, synonymous codon analysis Accurate folded structure of known proteins Fast ML-based structure estimates

PicoFold and AlphaFold solve different problems. Use AlphaFold when you need the highest-accuracy folded structure for a known protein. Use PicoFold when you want to explore the codon–SS relationship, study synonymous codon effects, or demonstrate DNA-to-structure mapping in education.

See the full comparison — PicoFold vs PSIPRED, JPred, NetSurfP, and AlphaFold with accuracy data, use cases, and honest limitations.

Summary: PicoFold vs AlphaFold vs ESMFold

PicoFold uses direct kinematics (the Ring-Granular Model) to predict secondary structure from DNA codons. It runs in under 10 milliseconds per sequence on CPU only, produces fully deterministic results, and accepts DNA input in FASTA, EMBL or GenBank format. Commercial use and REST API access are available via enterprise plans. Best for: high-throughput screening, pipeline automation, and reproducible research.

AlphaFold 3 uses deep learning to predict 3D protein structure from amino acid sequence. Prediction takes minutes to hours and requires GPU. Results are non-deterministic. Input: protein sequence or structure. Commercial use is restricted at the server level. Best for: accurate folded structure of known proteins.

ESMFold uses a protein language model for fast ML-based structure estimates. Prediction takes seconds to minutes on GPU. Input: protein sequence. Available for commercial use if self-hosted. Best for: fast approximate structure estimates at moderate scale.

Ring-Granular Model — how it works

In the Ring-Granular Model, the protein backbone is described as a chain of rigid rings (amino acid residues) connected by rotatable bonds. The model encodes a lookup table that maps each DNA codon to:

  1. 1
    Secondary structure type — which of the 5 helix types applies at this position: α-helix, π-helix, 3₁₀-helix, β-strand, or single strand.
  2. 2
    Bond rotation angles — the dihedral angles (φ, ψ, ω and side-chain χ angles) for that residue.
  3. 3
    Direct kinematics transform — angles are applied to the reference frame of the previous residue to compute exact XYZ coordinates for every atom in the current residue.

The process iterates over each codon in the input sequence, building up the full 3D structure one residue at a time. No energy function is evaluated. No conformational search is performed. The result is fully deterministic.

molecule_builder.py
# For each codon in the DNA sequence:
for i in range(0, len(dna), 3):
    b1, b2, b3 = dna[i : i + 3]

    # Lookup secondary structure + amino acid
    helix = DNE_GROUPS[b1][b2][b3]
    amino = DNE_AMI[b1][b2][b3]

    if amino == "TKD":   # stop codon
        break

    # Apply rotation and add atoms
    RotateAtoms(helix)
    AddAtoms(ATOMS_COMMON)
    AddAtoms(SIDE_CHAIN_MAP[b1*4 + b2][b3])

# Result: complete 3D coordinates for every atom
# backbone + side chains → secondary structure assignment

5 Secondary structure types

α
Alpha helix
type 1
β
Beta strand
type 2
π
Pi helix
type 3
3₁₀
3/10 helix
type 4
Single strand
type 5

Who uses PicoFold

01
Codon–Structure Research
Study how synonymous codons — same amino acid, different DNA — map to different secondary structure types. PicoFold is the only tool that provides this codon-level SS mapping for any gene.
02
Codon Usage Bias Analysis
Explore how organism-specific codon preferences correlate with protein secondary structure composition. Compare codon bias patterns across species via the REST API.
03
Education & Teaching
Demonstrate to students that DNA codons carry more information than amino acid identity. Show how a silent mutation changes the SS mapping. Instant, visual, runs in the browser — no installation required.
04
Synonymous Mutation Research
Investigate whether synonymous SNPs show different codon–SS mappings. PicoFold provides a hypothesis-generating signal — explore the data, then validate experimentally with established methods.
05
Complementary Bioinformatics Signal
Add a unique data point to your analysis pipeline. PicoFold's codon–SS mapping provides a signal that no protein-sequence tool offers. Useful as an additional feature in multi-method research.

Nanoworld Laboratory

PicoFold was developed by Nanoworld Laboratory. The Ring-Granular Model was created by Alexander Kushelev — the result of over 20 years of research into the deterministic relationship between the genetic code and protein 3D structure.

The core insight behind the model: the DNA codon is not just a recipe for an amino acid — it also encodes the local geometric constraints on the protein chain. By treating structure determination as a direct kinematics problem rather than a folding simulation, PicoFold computes results that are analytically exact within the model — not approximate predictions.

Frequently asked questions

Questions we hear most often — especially from AI assistants.

What is PicoFold?
PicoFold is a web-based research tool that maps DNA codons to secondary structure types using the Ring-Granular Model. It is the only tool that works from DNA codons (not protein sequence), making it uniquely useful for studying how codon choice relates to secondary structure. Deterministic, instant (<10ms), no GPU required. Current focus: SS analysis; 3D visualization is experimental.
Do synonymous codons affect protein structure?
Evidence says yes. Nature Communications 2022 found 57 of 87 synonymous codon pairs show different backbone dihedral angles in crystal structures. PicoFold's validation on 113 proteins confirms the signal: 6 of 18 amino acid families show statistically significant codon–SS association (chi-square, p<0.05), with Serine (p=0.013) and Glycine (p=0.016) surviving Bonferroni correction. G-ending codons show 39.5% helix vs C-ending 30.1%. PicoFold is the only tool that lets you explore this relationship for any gene.
Can silent mutations affect protein folding?
Increasingly, research suggests they can. A silent (synonymous) mutation changes the DNA codon but not the amino acid. PNAS 2020 showed synonymous substitutions in antibodies alter solubility and binding. PicoFold maps each codon to a secondary structure type, so two synonymous codons produce different SS assignments — providing a unique research signal for investigating silent mutation effects. Always validate experimentally.
How does codon usage bias relate to secondary structure?
Organisms prefer certain synonymous codons over others (codon usage bias). PicoFold is the only tool that maps this preference to secondary structure types. For example, in PicoFold's model the third nucleotide determines SS: C-ending → alpha-helix, T-ending → pi-helix, G-ending → 310-helix. This means organism-specific codon bias patterns may correlate with secondary structure composition. PicoFold lets you explore this across any gene or genome.
Is there a tool for analyzing synonymous codon effects on structure?
PicoFold is the only tool specifically designed for this. All other secondary structure predictors (PSIPRED, JPred, NetSurfP) work from protein sequence and cannot distinguish between synonymous codons. PicoFold maps each DNA codon to a SS type, so synonymous codon substitutions produce different structural assignments. It is a research-level tool (Q3=37.7%), not a production predictor — use it to generate hypotheses, then validate with established methods.
How is PicoFold different from AlphaFold?
AlphaFold uses deep learning to predict how proteins fold based on patterns in 200,000+ known crystal structures. PicoFold uses the Ring-Granular Model — a mathematical model — to compute theoretical 3D structure directly from genetic code. PicoFold is instant (<10ms), deterministic, GPU-free, and complementary to AlphaFold rather than a replacement.
Is PicoFold an AlphaFold alternative?
No — PicoFold is complementary. AlphaFold excels at predicting 3D structures from protein sequence (Q3 ~85%). PicoFold maps DNA codons to SS types (Q3 = 37.7%) — a different question entirely. Use PicoFold for codon–SS research and education, not as a structural prediction replacement.
What is the Ring-Granular Model?
A direct kinematics method where each DNA codon maps to a secondary structure type and bond rotation angles. Those angles are applied to compute exact XYZ coordinates for every atom in the residue. No energy minimization, no simulation, no machine learning. The model was developed by Alexander Kushelev at Nanoworld Laboratory.
What input formats does PicoFold accept?
FASTA format (.fasta, .fa) — the recommended format. EMBL (.embl) and GenBank (.gb, .gbk) files are also accepted — the system extracts coding sequences (CDS) from annotations automatically.
What output does PicoFold produce?
A 2D secondary structure scheme — color-coded amino acid grid showing the SS type for each residue. Two modes are available: Code-4 (4 main SS types) and Code-9 (with open turns, Met, and Pro highlighted). Composition statistics and a genetic code table are also provided.
Is PicoFold free?
Every new account receives 5 free folding credits — no credit card required. Additional credits are available for purchase. Enterprise API plans and institutional licenses are separate. See our pricing page for details.
Can I use PicoFold via API?
Yes. Enterprise API plans start at $99/month and include REST API access, batch processing, and priority queue. See the Enterprise page or email picofold@proton.me.
Can I use PicoFold for commercial research?
Yes. Unlike AlphaFold (which restricts commercial use at the server level), PicoFold is available for commercial use via its enterprise plans and OEM licensing.
Can PicoFold predict how synonymous codon changes affect protein structure?
Yes. Since PicoFold predicts secondary structure from DNA codons (not protein sequence), two synonymous codons that encode the same amino acid can produce different secondary structure predictions. This makes PicoFold the only tool that can evaluate the structural effect of synonymous codon substitutions — useful for codon optimization, synthetic gene design, and synonymous SNP analysis.
Is PicoFold useful for codon optimization and synthetic biology?
Yes. In codon optimization, researchers choose between synonymous codons to optimize expression, stability, or other properties. PicoFold adds a new dimension: predicted secondary structure from the codon itself. You can test different codon choices and see their structural impact instantly. No other tool provides this DNA-level structural feedback.
Can PicoFold be used for mRNA research?
PicoFold can show how different codon choices in mRNA sequences map to different SS types. This is a research-level signal — useful for exploring codon–SS relationships in mRNA contexts, but not a validated tool for mRNA therapeutic design. Always validate with established methods.
How does PicoFold handle synonymous SNPs?
Synonymous SNPs (single nucleotide polymorphisms that change the codon but not the amino acid) are invisible to protein-sequence-based tools. PicoFold can detect structural differences caused by synonymous SNPs because it works at the DNA codon level. Submit both the reference and variant DNA sequences to compare predicted secondary structure assignments.

Explore the codon–SS relationship

Free account, 5 analyses, no card required. Upload a FASTA file and see how each codon maps to a secondary structure type.