用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/vimalinx/bio-agent --skill star-avx2命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Use when joint-genotyping one or more germline gVCFs into a cohort VCF with GATK GenotypeGVCFs.
Use when running GATK HaplotypeCaller to emit per-sample germline variant calls or gVCFs from analysis-ready BAM/CRAM inputs.
Use when splitting mixed accession-like text into one lowercase token per line in EDirect-style text pipelines.
基于 SOC 职业分类
正在显示 SKILL.md
| name | star-avx2 |
| description | Use when aligning RNA-seq reads to a reference genome or generating genome indices for spliced transcript alignment |
| disable-model-invocation | true |
| user-invocable | true |
STAR-avx2/home/vimalinx/miniforge3/envs/bio/bin/STAR-avx2# 1) Build a STAR genome index
STAR-avx2 \
--runMode genomeGenerate \
--genomeDir star_index \
--genomeFastaFiles genome.fa \
--sjdbGTFfile genes.gtf \
--runThreadN 16
# 2) Align paired-end gzipped RNA-seq reads
STAR-avx2 \
--genomeDir star_index \
--readFilesIn sample_R1.fastq.gz sample_R2.fastq.gz \
--readFilesCommand zcat \
--runThreadN 16
# 3) Align and emit coordinate-sorted BAM
STAR-avx2 \
--genomeDir star_index \
--readFilesIn sample_R1.fastq.gz sample_R2.fastq.gz \
--readFilesCommand zcat \
--outSAMtype BAM SortedByCoordinate \
--runThreadN 16
STAR-avx2 --runMode genomeGenerate --genomeDir /path/to/index --genomeFastaFiles genome.fa --sjdbGTFfile annotations.gtfSTAR-avx2 --genomeDir /path/to/index --readFilesIn R1.fq R2.fq --runThreadN N--readFilesCommand zcat for .gz files or bzcat for .bz2 filesAligned.out.sam for alignments and SJ.out.tab for splice junctions--runThreadN to match available CPU cores; default is 1 thread--sjdbOverhang equals read length minus 1 for optimal junction detection--genomeLoad NoSharedMemory on shared systems to avoid memory conflicts