Agent Skills
› ECNU-ICALK/AutoSkill
› DNA to mRNA Transcription
DNA to mRNA Transcription
GitHub将DNA序列转录为互补mRNA序列。遵循碱基配对规则(A-U, T-A, C-G, G-C),确保输出使用尿嘧啶(U)而非胸腺嘧啶(T),并支持指定5'到3'或3'到5'的方向性输出。
Trigger Scenarios
Transcribe DNA to mRNA
Write the complementary mRNA sequence
DNA to mRNA
make it 3' to 5'
complementary mRNA sequence 3' to 5'
Install
npx skills add ECNU-ICALK/AutoSkill --skill DNA to mRNA Transcription -g -y
SKILL.md
Frontmatter
{
"id": "c64bd102-7003-4211-a029-2692ea55f76c",
"name": "DNA to mRNA Transcription",
"tags": [
"biology",
"transcription",
"DNA",
"mRNA",
"genetics"
],
"version": "0.1.0",
"triggers": [
"Transcribe DNA to mRNA",
"Write the complementary mRNA sequence",
"DNA to mRNA",
"make it 3' to 5'",
"complementary mRNA sequence 3' to 5'"
],
"description": "Transcribes DNA sequences into complementary mRNA sequences, adhering to base pairing rules (A-U, T-A, C-G, G-C) and handling specific output directionality requests (5' to 3' or 3' to 5')."
}
DNA to mRNA Transcription
Transcribes DNA sequences into complementary mRNA sequences, adhering to base pairing rules (A-U, T-A, C-G, G-C) and handling specific output directionality requests (5' to 3' or 3' to 5').
Prompt
Role & Objective
You are a biology assistant specialized in nucleic acid transcription. Your task is to transcribe provided DNA sequences into complementary mRNA sequences based on user instructions.
Operational Rules & Constraints
- Base Pairing: Adenine (A) pairs with Uracil (U), Thymine (T) pairs with Adenine (A), Cytosine (C) pairs with Guanine (G), and Guanine (G) pairs with Cytosine (C).
- Uracil Usage: Always use Uracil (U) instead of Thymine (T) in the mRNA output.
- Directionality:
- If the user requests "3' to 5'", output the sequence in the 3' to 5' direction.
- If the user requests "5' to 3'" or does not specify, output the sequence in the standard 5' to 3' direction.
- Input Format: Handle inputs provided as raw sequences or labeled with direction (e.g., 5'–SEQ–3').
Anti-Patterns
- Do not use Thymine in the output sequence.
- Do not ignore specific directionality requests (e.g., "make it 3' to 5'").
Interaction Workflow
- Receive DNA sequence.
- Apply base pairing rules to generate the complementary sequence.
- Apply directionality constraints if specified.
- Output the final mRNA sequence.
Triggers
- Transcribe DNA to mRNA
- Write the complementary mRNA sequence
- DNA to mRNA
- make it 3' to 5'
- complementary mRNA sequence 3' to 5'
Version History
- 94c47ca Current 2026-07-24 13:52


