用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/lamm-mit/scienceclaw --skill sequence命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Onboard and manage Paperclip AI for research-paper knowledge and agent orchestration
Generate a structured scientific post and publish it to Infinite. Runs a focused single-agent investigation (PubMed search → LLM analysis → hypothesis/method/findings/conclusion) and posts the result. Faster than scienceclaw-investigate — best for targeted, single-topic posts.
Infinite platform integration for AI agent collaboration
基于 SOC 职业分类
正在显示 SKILL.md
| name | sequence |
| description | Analyze biological sequences using Biopython - translate, align, parse FASTA/GenBank |
| metadata | null |
Analyze biological sequences using Biopython. Translate DNA, compute statistics, parse sequence files, and perform basic alignments.
This skill provides sequence analysis capabilities including:
python3 {baseDir}/scripts/sequence_tools.py translate --sequence "ATGCGATCGATCGATCG"
python3 {baseDir}/scripts/sequence_tools.py stats --sequence "ATGCGATCGATCGATCG"
python3 {baseDir}/scripts/sequence_tools.py revcomp --sequence "ATGCGATCGATCG"
python3 {baseDir}/scripts/sequence_tools.py parse --file sequences.fasta --format fasta
python3 {baseDir}/scripts/sequence_tools.py orfs --sequence "ATGCGATCGATCGATCGTAG"
python3 {baseDir}/scripts/sequence_tools.py motif --sequence "ATGCGATCGATCG" --pattern "GATC"
Translate DNA/RNA sequence to protein.
| Parameter | Description | Default |
|---|---|---|
--sequence | DNA/RNA sequence or file | Required |
--table | Codon table (1=standard, 2=mitochondrial, etc.) | 1 |
--frame | Reading frame (1, 2, 3, -1, -2, -3) | 1 |
--all-frames | Translate all 6 reading frames | False |
--to-stop | Translate until first stop codon | False |
Compute sequence statistics.
| Parameter | Description | Default |
|---|---|---|
--sequence | Sequence or file | Required |
--type | Sequence type: dna, rna, protein, auto | auto |
Output includes:
Get reverse complement of DNA sequence.
| Parameter | Description |
|---|---|
--sequence | DNA sequence or file |
Parse sequence files (FASTA, GenBank, etc.).
| Parameter | Description | Default |
|---|---|---|
--file | Input file path | Required |
--format | File format: fasta, genbank, embl | auto |
--output | Output format: summary, fasta, json | summary |
Find Open Reading Frames.
| Parameter | Description | Default |
|---|---|---|
--sequence | DNA sequence or file | Required |
--min-length | Minimum ORF length (codons) | 30 |
--table | Codon table | 1 |
Search for sequence motifs/patterns.
| Parameter | Description | Default |
|---|---|---|
--sequence | Sequence to search | Required |
--pattern | Pattern to find (supports IUPAC codes) | Required |
python3 {baseDir}/scripts/sequence_tools.py translate --sequence "ATGCGATCG" --table 2
python3 {baseDir}/scripts/sequence_tools.py stats --sequence "MTEYKLVVVGAGGVGKSALTIQLIQ" --type protein
python3 {baseDir}/scripts/sequence_tools.py parse --file gene.gb --format genbank --output fasta
python3 {baseDir}/scripts/sequence_tools.py orfs --file genome.fasta --min-length 50
python3 {baseDir}/scripts/sequence_tools.py translate --sequence "ATGCGATCGATCGATCG" --all-frames
| ID | Description |
|---|---|
| 1 | Standard |
| 2 | Vertebrate Mitochondrial |
| 3 | Yeast Mitochondrial |
| 4 | Mold/Protozoan Mitochondrial |
| 5 | Invertebrate Mitochondrial |
| 6 | Ciliate Nuclear |
| 11 | Bacterial/Archaeal/Plant Plastid |