返回顶部
f

fastqc-report-interpreterFASTQC报告解析

Use when analyzing FASTQC quality reports from sequencing data, identifying quality issues in NGS datasets, or troubleshooting sequencing problems. Interprets quality metrics and provides actionable recommendations for RNA-seq, DNA-seq, and ChIP-seq data.

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 0.1.0
安全检测
已通过
110
下载量
免费
免费
0
收藏
概述
安装方式
版本历史

fastqc-report-interpreter

技能名称: fastqc-report-interpreter
详细描述:

FASTQC 报告解读器

分析新一代测序(NGS)数据的FASTQC质量控制报告,以评估数据质量并识别问题。

快速开始

python
from scripts.fastqc_interpreter import FASTQCInterpreter

interpreter = FASTQCInterpreter()

分析报告

analysis = interpreter.analyze(sample_fastqc.html) print(f整体质量: {analysis.quality_status}) print(f发现的问题: {analysis.issues})

核心功能

1. 质量指标分析

python
metrics = interpreter.parsemetrics(fastqcdata.txt)

关键指标:

指标良好警告失败
每碱基序列质量Q > 28Q 20-28Q < 20
每条序列质量得分
峰值在Q30 | 峰值Q20-30 | 峰值 < Q20 |
| 每碱基N含量 | < 5% | 5-20% | > 20% |
| 序列重复率 | < 20% | 20-50% | > 50% |
| 接头含量 | < 5% | 5-10% | > 10% |

2. 问题诊断

python
issues = interpreter.diagnose_issues(metrics)
for issue in issues:
print(f{issue.severity}: {issue.description})
print(f建议: {issue.recommendation})

常见问题:

读段末端低质量

  • - 原因: 相位效应、试剂消耗
  • 解决方案: 修剪最后10-20个碱基

接头污染

  • - 原因: 接头去除不彻底
  • 解决方案: 使用更严格的参数重新运行cutadapt/Trimmomatic

高重复率

  • - 原因: PCR过度扩增、起始量低
  • 解决方案: 使用去重复工具;考虑优化文库制备

每碱基序列含量偏差

  • - 原因: 接头二聚体、非随机引物
  • 解决方案: 检查接头污染;随机化引物

3. 批量分析

python
batchresults = interpreter.analyzebatch(
fastqcfiles=[sample1fastqc.html, sample2_fastqc.html, ...],
outputsummary=batchsummary.csv
)

4. 建议生成

python
recommendations = interpreter.get_recommendations(
analysis,
application=rnaseq, # 或 dnaseq, chip_seq
quality_threshold=high
)

特定应用阈值:

  • - RNA-seq: 可接受重复率高达40%(转录本丰度)
  • DNA-seq: 严格质量要求(变异检测)
  • ChIP-seq: 中等质量,重点关注富集指标

命令行使用

bash

分析单个报告


python scripts/fastqcinterpreter.py --input samplefastqc.html

批量分析

python scripts/fastqc_interpreter.py --batch *fastqc.html --output report.pdf

使用自定义阈值

python scripts/fastqcinterpreter.py --input fastqc.html --application rnaseq

输出解读

通过(绿色): 可继续分析
警告(黄色): 需检查但通常可接受
失败(红色): 在下游分析前需要处理

故障排除指南

参见 references/troubleshooting.md 了解:

  • - 平台特定问题(Illumina、PacBio、Oxford Nanopore)
  • 文库制备问题诊断
  • 下游分析影响评估



技能ID: 205 | 版本: 1.0 | 许可证: MIT

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 fastqc-report-interpreter-1776125522 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 fastqc-report-interpreter-1776125522 技能

通过命令行安装

skillhub install fastqc-report-interpreter-1776125522

下载

⬇ 下载 fastqc-report-interpreter v0.1.0(免费)

文件大小: 4.12 KB | 发布时间: 2026-4-14 13:19

v0.1.0 最新 2026-4-14 13:19
Initial release of fastqc-report-interpreter.

- Interprets FASTQC quality reports for sequencing data (RNA-seq, DNA-seq, ChIP-seq).
- Identifies common quality issues and provides actionable recommendations.
- Supports both single and batch analysis through Python API and CLI.
- Offers application-specific thresholds and guidance.
- Includes output interpretation and troubleshooting resources.

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部