Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计提醒

tooluniverse-electron-microscopytooluniverse Electron microscopy 搜索

Agent Skill

tooluniverse-electron-microscopy 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,091

周安装

45

GitHub Stars

1,339

下载量

356
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:tooluniverse-electron-microscopy(tooluniverse Electron microscopy 搜索)
来源仓库:https://github.com/mims-harvard/tooluniverse
仓库路径:skills/tooluniverse-electron-microscopy
安装命令:
npx skills add https://github.com/mims-harvard/tooluniverse --skill tooluniverse-electron-microscopy
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/mims-harvard/tooluniverse --skill tooluniverse-electron-microscopy

简介

用于查找、检索和筛选相关信息。tooluniverse-electron-microscopy 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适合根据关键词或任务场景快速定位候选研究资料。
  • 通过调用工具执行搜索任务并返回匹配结果列表。
  • 需结合来源仓库 README 核验具体用法和参数格式。
  • 安装前建议确认是否触发联网及文件读写权限。

SKILL.md

Electron Microscopy Structure Analysis

Pipeline for discovering and analyzing electron microscopy data across the full resolution spectrum: from 3D density maps (EMDB) to fitted atomic models (PDB), raw micrograph datasets (EMPIAR), and cryo-electron tomography volumes (CryoET Data Portal). Connects EM data to structural biology context via PDB and AlphaFold.

Guiding principles:

  1. Resolution awareness -- always report and interpret map resolution; sub-4A enables atomic modeling, 4-8A enables domain fitting, >8A is shape-level
  2. Map before model -- the density map is the primary experimental data; fitted models are interpretations
  3. Method matters -- single particle analysis, tomography, 2D crystallography, and helical reconstruction have different strengths and limitations
  4. Raw data value -- EMPIAR raw data enables reprocessing with newer algorithms; always note availability
  5. Cross-reference structures -- connect EMDB maps to PDB entries and AlphaFold predictions for completeness
  6. English-first queries -- use English terms in tool calls

EM resolution determines what you can see. TEM resolves individual protein complexes (~2nm). Cryo-EM achieves near-atomic resolution (<4Å) for large complexes. SEM shows surface topology. Choose the right EM modality for the question.

LOOK UP, DON'T GUESS

When uncertain about any scientific fact, SEARCH databases first rather than reasoning from memory. A database-verified answer is always more reliable than a guess.


COMPUTE, DON'T DESCRIBE

When analysis requires computation (statistics, data processing, scoring, enrichment), write and run Python code via Bash. Don't describe what you would do — execute it and report actual results. Use ToolUniverse tools to retrieve data, then Python (pandas, scipy, statsmodels, matplotlib) to analyze it.

When to Use

Typical triggers:

  • "Find cryo-EM structures of [protein/complex]"
  • "What EMDB maps are available for [target]?"
  • "Get raw micrograph data for [structure]"
  • "Find tomography datasets for [organelle/cell type]"
  • "What is the resolution of [EMDB entry]?"
  • "Cross-reference this EM map with PDB models"
  • "Find cryo-ET datasets for [sample]"

Not this skill: For X-ray crystallography or NMR structures, use PDB search tools directly. For protein structure prediction, use tooluniverse-protein-structure.


Core Databases

DatabaseContentBest For
EMDB3D EM density maps (>40K entries)Finding processed maps, resolution data, fitting info
EMPIARRaw micrograph/tilt series datasetsAccessing original image data for reprocessing
CryoET Data PortalCryo-electron tomography dataTomographic volumes, cellular context, in-situ structures
PDB (RCSB)Atomic models fitted to EM mapsStructural models derived from EM data
AlphaFoldAI-predicted protein structuresComplementary models when EM resolution is limited

Workflow Overview

Phase 0: Query Parsing
  Identify target protein/complex, method preference, resolution needs
    |
Phase 1: Map & Image Search (EMDB)
  Find EM density maps, resolution, method, sample details
    |
Phase 2: Structure Fitting (EMDB + PDB)
  Identify fitted atomic models, fitting quality
    |
Phase 3: Raw Data Access (EMPIAR)
  Find raw micrographs, tilt series, particle stacks
    |
Phase 4: Tomography (CryoET Data Portal)
  Search cryo-ET datasets, reconstructed volumes
    |
Phase 5: Cross-Reference & Context (PDB + AlphaFold)
  Connect to atomic models, predicted structures, literature
    |
Phase 6: Report Synthesis
  Integrated EM data landscape for the target

Phase Details

Phase 0: Query Parsing

Identify from the user's request:

  • Target: protein name, complex name, or organism
  • Method preference: single particle, tomography, micro-ED, helical
  • Resolution needs: atomic modeling (<4A), domain fitting (4-8A), shape (>8A)
  • Data type: processed maps, raw data, fitted models, or all

Phase 1: Map & Image Search (EMDB)

Objective: Find EM density maps matching the query.

Tools:

  • EMDB_search_structures -- search EMDB by keyword, organism, resolution

- Input: query (search term), optional resolution_min, resolution_max, method, limit - Output: entries with EMDB ID, title, resolution, method, sample

  • EMDB_get_structure -- get full details for an EMDB entry

- Input: emdb_id (e.g., "EMD-1234") - Output: map details, resolution, sample, processing info, citations

  • EMDB_get_map_info -- get map-specific info (resolution, contour, dimensions)

- Input: emdb_id

  • EMDB_get_sample_info -- get sample preparation details

- Input: emdb_id

Workflow:

  1. Search EMDB for the target protein/complex
  2. Sort results by resolution (best first)
  3. For top entries, get full details including sample preparation and processing
  4. Note the EM method used (single particle, tomography, helical, etc.)
  5. Record associated PDB and EMPIAR accessions

Resolution interpretation:

  • < 2.5A: near-atomic; side chains visible
  • 2.5-4.0A: atomic; backbone and large side chains traceable
  • 4.0-8.0A: domain level; secondary structure elements visible
  • 8.0A: shape; overall architecture only

Phase 2: Structure Fitting (EMDB + PDB)

Objective: Find atomic models fitted into EM maps and assess fitting quality.

Tools:

  • EMDB_get_validation -- get fitting/validation data for an EMDB entry

- Input: emdb_id - Output: fitted PDB models, fitting statistics, validation scores

  • RCSBData_get_entry -- get PDB entry details

- Input: entry_id (PDB ID) - Output: structure details, resolution, method, citation

  • RCSBAdvSearch_search_structures -- advanced PDB search

- Input: query (search term), optional experimental_method, resolution_max, limit - Output: PDB entries matching criteria

Workflow:

  1. For each EMDB entry from Phase 1, check for fitted atomic models
  2. Get fitting statistics (cross-correlation, real-space R-factor if available)
  3. Retrieve the PDB entry for structural details
  4. If no model is fitted, search PDB for related structures by name

Fitting quality indicators:

  • Cross-correlation coefficient > 0.7 suggests reasonable fit
  • Multiple independently fitted models increase confidence
  • Map-model FSC consistency check validates the fit

Phase 3: Raw Data Access (EMPIAR)

Objective: Locate raw micrograph data for potential reprocessing.

Tools:

  • EMPIAR_search_entries -- search EMPIAR archive

- Input: query (search term), optional limit - Output: entries with EMPIAR ID, title, data type, size

  • EMPIAR_get_entry -- get detailed entry information

- Input: empiar_id (e.g., "EMPIAR-10028") - Output: data description, file formats, associated EMDB entries, download links

Workflow:

  1. Search EMPIAR for entries related to the target
  2. Cross-reference with EMDB entries found in Phase 1 (many EMDB entries link to EMPIAR)
  3. Note data types: micrographs, particle stacks, tilt series, gain references
  4. Record dataset size (can be 100s of GB to TBs)

Data types in EMPIAR:

  • Micrographs: raw detector frames or motion-corrected images
  • Particle stacks: extracted particle images
  • Tilt series: serial images at different tilt angles (for tomography)
  • Reconstructed volumes: 3D volumes from tomographic reconstruction

Phase 4: Tomography (CryoET Data Portal)

Objective: Find cryo-electron tomography datasets for cellular and in-situ structural biology.

Tools:

  • CryoET_list_datasets -- search CryoET Data Portal

- Input: query (search term), optional organism, limit - Output: datasets with ID, title, organism, sample type

  • CryoET_get_dataset -- get dataset details

- Input: dataset_id - Output: sample details, tilt series parameters, tomogram info

  • CryoET_list_runs -- search individual tomography runs

- Input: dataset_id or query, optional limit - Output: run details, tilt parameters, voxel spacing

Workflow:

  1. Search CryoET Data Portal for the target organism/structure
  2. Get dataset details including sample preparation and imaging parameters
  3. Explore individual runs for tilt series specifications
  4. Note voxel spacing and tomogram dimensions

Tomography vs single particle: Tomography preserves cellular context (in situ) but typically achieves lower resolution. Single particle gives higher resolution but requires purified samples.

Phase 5: Cross-Reference & Context

Objective: Connect EM data to broader structural biology context.

Tools:

  • alphafold_get_prediction -- get AlphaFold predicted structure

- Input: qualifier (UniProt accession) - Output: predicted structure coordinates, confidence scores (pLDDT)

  • PubMed_search_articles -- find publications describing the EM work

- Input: query (search term), optional limit - Output: articles with title, abstract, PMID

Workflow:

  1. For proteins with EM structures, get AlphaFold predictions for comparison
  2. Note regions where AlphaFold confidence is low (pLDDT < 70) -- these may be flexible and harder to resolve by EM
  3. Search PubMed for methodological papers and biological insights from the EM studies
  4. Cross-reference EMDB/PDB/EMPIAR accessions in publications

Phase 6: Interpretation & Recommendations

Don't just list maps — help the user choose the RIGHT map for their purpose.

Decision matrix: Which map should I use?

PurposeBest ResolutionMethodPriority Criteria
Atomic model building< 3.5ASingle particleHighest resolution with fitted PDB model
Drug binding site analysis< 3.0ASingle particleMust resolve side chains in binding pocket
Domain architecture4-8ASingle particle or subtomogram avgLarge complexes where domains need fitting
Conformational states< 4.5ASingle particle (multiple classes)Look for entries with multiple maps from same dataset
Cellular context15-40ACryo-ETTomographic datasets showing in-situ arrangement
ReprocessingAnyAnyMust have EMPIAR raw data; prefer recent datasets (better detectors)

Quality assessment checklist:

  • Resolution reported is the "gold standard" FSC 0.143 cutoff? (some older entries use 0.5 cutoff — inflates resolution)
  • Map sharpened appropriately? (over-sharpened maps can look better but contain artifacts)
  • Fitting statistics available? (cross-correlation > 0.7 is acceptable)
  • Multiple maps from same sample? (suggests conformational heterogeneity — important for drug design)

Resolution trend analysis: If multiple maps exist over time, note the resolution trajectory. Improvement from 6A (2015) to 2.8A (2023) suggests the sample is amenable to high-resolution single particle analysis with modern hardware.

Phase 7: Report Synthesis

Assemble findings into an actionable report:

  1. Target Overview -- protein/complex identity, biological significance
  2. EM Map Landscape -- available maps with resolution, method, and year
  3. Best Available Structures -- highest resolution maps with fitted models, with quality assessment
  4. Recommendation -- which specific map/model to use for the user's purpose (with reasoning)
  5. Raw Data Availability -- EMPIAR datasets for reprocessing, with dataset sizes
  6. Tomography Data -- cellular context datasets if available
  7. Structural Context -- comparison with X-ray/NMR/AlphaFold structures
  8. Key Publications -- methods papers, biological discoveries
  9. Data Gaps -- missing conformational states, unresolved regions, need for higher resolution

Common Analysis Patterns

PatternDescriptionKey Phases
Structure DiscoveryFind all EM data for a protein0, 1, 2, 5
Reprocessing PrepFind raw data for re-analysis0, 1, 3
Tomography SurveyExplore in-situ structural data0, 4
Resolution ComparisonTrack resolution improvements over time0, 1, 2
Map-Model ValidationAssess quality of fitted atomic models0, 1, 2, 5

Edge Cases & Fallbacks

  • No EMDB entries: The complex may only have X-ray or NMR structures. Search PDB via RCSBAdvSearch_search_structures with method filter
  • EMDB entry without PDB model: Common for lower-resolution maps. Note the gap; suggest AlphaFold for approximate modeling
  • No EMPIAR data: Raw data deposition is newer and not universal. The processed map in EMDB may be the only available data
  • Large complexes: Ribosomes, viruses, etc. may have hundreds of EMDB entries. Use resolution filters to narrow results

Limitations

  • No map visualization: This skill retrieves metadata and statistics, not 3D renderings. Use UCSF ChimeraX or IMOD for visualization
  • No reprocessing: Finding raw data is supported; actual cryo-EM data processing requires specialized software (RELION, cryoSPARC)
  • Resolution is not accuracy: A 3A map processed with errors may be less reliable than a well-validated 4A map. Fitting statistics matter
  • Deposition lag: Structures may be published months before EMDB deposition, or vice versa

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.88%
按下载量换算124

Claude

31.58%
按下载量换算112

Cursor

18.86%
按下载量换算67

Gemini CLI

10.13%
按下载量换算36

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills