원클릭으로
parquet-feature-loading
How to load krewlyzer parquet feature files with correct suffixes and schemas per feature type.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
How to load krewlyzer parquet feature files with correct suffixes and schemas per feature type.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Testing conventions, patterns, and best practices for kreview. MANDATORY reading before adding or modifying tests.
nbdev cell directives, module export conventions, editing workflow, and testing patterns for notebook-first development. MANDATORY reading before editing any kreview Python module.
5-tier ctDNA labeling hierarchy with IMPACT tissue rescue, CH hotspot filtering, configurable VAF/variant thresholds, and continuous VAF regression stats.
How to parse cBioPortal MAF, SV, CNA, and clinical files for the labeling pipeline.
Structured debugging framework for kreview data pipeline issues
DuckDB glob scan patterns, connection management, and performance for kreview
| name | parquet-feature-loading |
| description | How to load krewlyzer parquet feature files with correct suffixes and schemas per feature type. |
from kreview.core import load_sample_feature
# Load a feature parquet for one sample
df = load_sample_feature(
sample_id="P-0000280-T02-XS1",
feature_suffix=".FSC.gene.parquet", # exact suffix from §4 table
results_dir="/path/to/results/",
)
| Evaluator | source_file |
|---|---|
| FSC.gene | .FSC.gene.parquet |
| FSC bin-level | .FSC.ontarget.parquet |
| FSC.regions | .FSC.regions.parquet |
| FSD | .FSD.ontarget.parquet |
| FSR | .FSR.ontarget.parquet |
| OCF ontarget | .OCF.ontarget.parquet |
| OCF offtarget | .OCF.offtarget.parquet |
| ATAC | .ATAC.ontarget.parquet |
| TFBS | .TFBS.ontarget.parquet |
| MDS | .MDS.ontarget.parquet |
| MDS.gene | .MDS.gene.parquet |
| MDS.exon | .MDS.exon.parquet |
| EndMotif | .EndMotif.ontarget.parquet |
| BreakPointMotif | .BreakPointMotif.ontarget.parquet |
| EndMotif1mer | .EndMotif1mer.parquet |
| WPS.panel | .WPS.panel.parquet |
| WPS genome | .WPS.parquet |
| WPS background | .WPS_background.parquet |
| metadata | .metadata.parquet |
.tsv.gz or .features.jsonload_sample_feature().correction_factors.parquet or .fsc_counts.parquet (excluded)