Peptide Molecule Generation
SkillDev toolsGenerate new peptide molecules sampling from the input peptide sequence.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the Peptide Molecule Generation skill
What this skill tells your AI
The instructions your AI receives, as published by internscience/molclaw in skills/L1_tools/molclaw-peptide-sampling/SKILL.md and read by ahel’s review.
Note:
- Local files are not directly accessible by the server. Please upload them to the server using
molclaw-file-transferbefore execution. - For PDB file inputs, it is recommended to preprocess them using
molclaw-pdbfixerbefore execution. - Please refer to skill
molclaw-scp-serverto complete tool invocation.
The description of tool pepinvent_peptide_sampling_by_peptide.
Generate new peptide molecules sampling from the input peptide sequence.
Args:
peptide (str): SMILES representation of a peptide sequence, with amino acid residues separated by '|?|', e.g., 'N[C@@H](CCCCN)C(=O)|?|N[C@@H](CC(C)C)C(=O)|?|N[C@@H](CCCNC(=N)N)C(=O)'
n (int): Number of molecules for sampling
filter_preset (str): Required filter preset; options: ['none', 'minimal', 'default', 'strict'] (commonly 'default')
mw_min (float): Required minimum molecular weight (use 0.0 for no lower bound)
mw_max (float): Required maximum molecular weight (use 0.0 for no upper bound)
Return:
status (str): success/error
msg (str): message
save_smiles_file (str): Path to the saved SMILES file
output_smiles_list (List[str]): List of generated SMILES strings
How to use tool pepinvent_peptide_sampling_by_peptide :
response = await client.session.call_tool(
"pepinvent_peptide_sampling_by_peptide",
arguments={
"peptide": smiles,
"n": n,
"filter_preset": filter_type,
"mw_min": mw_min,
"mw_max": mw_max
}
)
result = client.parse_result(response)
output_smiles_list = result["output_smiles_list"]
Signals
- GitHub stars
- 33
- Forks
- 3
- Last commit
- Aug 2026
Advanced
- Catalog kind
- skill
- Gateway key
molclaw-peptide-sampling- Source
- github.com/internscience/molclaw