Protein Sequence Valid Check
SkillDev toolsCheck if the input protein sequence is valid.
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 Protein Sequence Valid Check skill
What this skill tells your AI
The instructions your AI receives, as published by internscience/molclaw in skills/L1_tools/molclaw-sequence-valid-check/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 is_valid_protein_sequence.
Check if the input protein sequence string is valid.
Args:
sequences (List[str]): List of input protein sequences
Return:
status (str): success/partial_success/error
msg (str): message
valid_res (List[dict]): List of dict, each containing the keys 'sequence' and 'is_valid'.
--sequence (str): A protein sequence of the input sequences list
--is_valid (bool): Is the protein sequence valid or not
How to use tool is_valid_protein_sequence :
response = await client.session.call_tool(
"is_valid_protein_sequence",
arguments={
"sequences": sequence_list
}
)
result = client.parse_result(response)
valid_res = result["valid_res"]
Signals
- GitHub stars
- 33
- Forks
- 3
- Last commit
- Aug 2026
Advanced
- Catalog kind
- skill
- Gateway key
molclaw-sequence-valid-check- Source
- github.com/internscience/molclaw