import { Component, For } from "solid-js"; import { VcfRecord } from "@molgenis/vip-report-vcf"; import { Table } from "./Table.tsx"; import { Item } from "@molgenis/vip-report-api"; import { RecordsTableCell, RecordsTableHeaderCell } from "./RecordsTable.tsx"; import { initConfigCells } from "../utils/config/configCells.ts"; import { MetadataContainer } from "../utils/api.ts"; import { VariantType } from "../utils/variantType.ts"; export const VariantInfoTable: Component<{ variantType: VariantType; metadata: MetadataContainer; record: Item; }> = (props) => { const configCells = () => initConfigCells( [ { type: "info", name: "((?!CSQ).)*", }, ], props.variantType, props.metadata, null, ).filter((configCell) => configCell.type !== "group"); return ( {(fieldConfig) => ( )}
); };