API documentation index.
01 Namespaces
Emily
Emily.eQuilibrator.Core
| Type | Summary | Package | Members |
|---|---|---|---|
| ComponentContribution | Main class for predicting Gibbs free energies of biochemical reactions. | Emily.eQuilibrator 1.0.9753.39349 |
23 |
| CompoundCache | 化合物缓存。内置质子/水,并可按需从 eQuilibrator CSV 数据源懒加载化合物 (结构、微物种、基团向量、镁解离常数、标识符)。 | Emily.eQuilibrator 1.0.9753.39349 |
11 |
| Numerics | 数值计算辅助模块,替代被删除的 Python NumPy 桩代码。 提供 log-sum-exp / log-add-exp,用于微物种 Legendre 变换的分区函数计算。 | Emily.eQuilibrator 1.0.9753.39349 |
2 |
Emily.eQuilibrator.Core.Constants
| Type | Summary | Package | Members |
|---|---|---|---|
| ThermodynamicConstants | Thermodynamic constants used in Gibbs free energy calculations. | Emily.eQuilibrator 1.0.9753.39349 |
66 |
Emily.eQuilibrator.Core.Data
| Type | Summary | Package | Members |
|---|---|---|---|
| EquilibratorCsvLoader | eQuilibrator CSV 数据源加载器。 首遍扫描构建「compound_id → 字节偏移」索引,之后按化合物 ID 懒加载并解析对应行, 反序列化 base64 编码的 pickle 字段(atom_bag / dissociation_constants / group_vector), 避免将超大 CSV 整文件驻留内存。 | Emily.eQuilibrator 1.0.9753.39349 |
10 |
Emily.eQuilibrator.Core.Exceptions
| Type | Summary | Package | Members |
|---|---|---|---|
| CompoundNotFoundException | Exception thrown when a compound is not found in the cache | Emily.eQuilibrator 1.0.9753.39349 |
1 |
| ModelValidationException | Exception thrown when a model is invalid | Emily.eQuilibrator 1.0.9753.39349 |
1 |
| ReactionParseException | Exception thrown when a reaction cannot be parsed | Emily.eQuilibrator 1.0.9753.39349 |
1 |
| ThermodynamicCalculationException | Exception thrown when thermodynamic calculation fails | Emily.eQuilibrator 1.0.9753.39349 |
1 |
| UnitConversionException | Exception thrown when unit conversion fails | Emily.eQuilibrator 1.0.9753.39349 |
2 |
Emily.eQuilibrator.Core.Extensions
| Type | Summary | Package | Members |
|---|---|---|---|
| CollectionExtensions | Extension methods for collections | Emily.eQuilibrator 1.0.9753.39349 |
6 |
| MatrixExtensions | Extension methods for matrix operations | Emily.eQuilibrator 1.0.9753.39349 |
8 |
| StringExtensions | Extension methods for string manipulation | Emily.eQuilibrator 1.0.9753.39349 |
2 |
| ThermodynamicExtensions | Extension methods for thermodynamic calculations | Emily.eQuilibrator 1.0.9753.39349 |
6 |
Emily.eQuilibrator.Core.Models
| Type | Summary | Package | Members |
|---|---|---|---|
| Bounds | Defines lower and upper bounds on compound concentrations. | Emily.eQuilibrator 1.0.9753.39349 |
20 |
| BoundsExtensions | Extension methods for Bounds | Emily.eQuilibrator 1.0.9753.39349 |
2 |
| Compound | 统一的生化化合物模型(合并 EquilibratorApi.Core 与 EquilibratorCache 两套重复定义)。 包含结构信息、微物种、基团向量(组贡献法)、镁解离常数与标识符, 支持从 eQuilibrator CSV 数据源按需加载。 | Emily.eQuilibrator 1.0.9753.39349 |
38 |
| CompoundIdentifier | 化合物标识符模型。 等价于 Python equilibrator_cache/models/compound_identifier.py。 表示化合物在特定注册表中的标识符(如 KEGG ID、BiGG ID 等)。 | Emily.eQuilibrator 1.0.9753.39349 |
7 |
| CompoundMicrospecies | 化合物微物种模型。 等价于 Python equilibrator_cache/models/compound_microspecies.py。 表示化合物在不同质子化和镁离子结合状态下的微物种,是热力学计算的核心数据模型。 | Emily.eQuilibrator 1.0.9753.39349 |
9 |
| GibbsEnergyResult | Represents the result of a Gibbs energy calculation | Emily.eQuilibrator 1.0.9753.39349 |
9 |
| MagnesiumDissociationConstant | 镁离子解离常数模型。 等价于 Python equilibrator_cache/models/magnesium_dissociation_constant.py。 表示化合物特定伪异构体的 Mg2+ 解离常数。 | Emily.eQuilibrator 1.0.9753.39349 |
6 |
| PhasedCompound | Represents a compound with phase information for thermodynamic calculations. | Emily.eQuilibrator 1.0.9753.39349 |
41 |
| PhasedReaction | Represents a chemical reaction with phase information for thermodynamic calculations. | Emily.eQuilibrator 1.0.9753.39349 |
28 |
| Quantity | Represents a quantity with a unit of measurement. | Emily.eQuilibrator 1.0.9753.39349 |
27 |
| QuantityExtensions | Extension methods for creating quantities | Emily.eQuilibrator 1.0.9753.39349 |
6 |
| ReactionDirection | 反应在给定条件下自发进行的方向。 | Emily.eQuilibrator 1.0.9753.39349 |
6 |
| Registry | 化合物注册表模型(MIRIAM 注册表,如 KEGG、BiGG、ChEBI 等)。 等价于 Python equilibrator_cache/models/registry.py。 | Emily.eQuilibrator 1.0.9753.39349 |
10 |
| StoichiometricModel | A basic stoichiometric model with thermodynamic constraints. | Emily.eQuilibrator 1.0.9753.39349 |
28 |
| StoichiometricModelExtensions | Extension methods for StoichiometricModel | Emily.eQuilibrator 1.0.9753.39349 |
1 |
| TimeStampMixin | 时间戳混入模块。 等价于 Python equilibrator_cache/models/mixins.py,定义创建/更新时间列。 | Emily.eQuilibrator 1.0.9753.39349 |
3 |
| UnitConverter | Provides unit conversion functionality | Emily.eQuilibrator 1.0.9753.39349 |
3 |
| UnitRegistry | Pint 物理单位库的 VB.NET 占位实现。 提供带单位的物理量(Quantity)的简单封装。 由于不引入第三方 NuGet 包,此处仅实现最小功能集。 | Emily.eQuilibrator 1.0.9753.39349 |
4 |
Emily.eQuilibrator.Core.Parsers
| Type | Summary | Package | Members |
|---|---|---|---|
| ParsedCompound | Represents a parsed compound with its coefficient and optional phase information | Emily.eQuilibrator 1.0.9753.39349 |
4 |
| ParsedReaction | Represents a parsed reaction with reactants, products, and arrow type | Emily.eQuilibrator 1.0.9753.39349 |
6 |
| ReactionParser | A parser for chemical reaction formulae. | Emily.eQuilibrator 1.0.9753.39349 |
10 |
| ReactionParserExtensions | Extension methods for reaction parsing | Emily.eQuilibrator 1.0.9753.39349 |
2 |
Emily.eQuilibrator.EquilibratorThermodynamics
| Type | Summary | Package | Members |
|---|---|---|---|
| GroupContributionParameters | 基团贡献参数 存储每个基团对标准生成能的贡献值 | Emily.eQuilibrator 1.0.9753.39349 |
11 |
| MicrospeciesBuilder | 由 pKa 预测结果构造微物种列表(组件贡献法 / Legendre 分区函数用)。 | Emily.eQuilibrator 1.0.9753.39349 |
1 |
| MicrospeciesDistributionCalculator | 微物种分布计算器 计算在不同pH下各微物种的分布比例 | Emily.eQuilibrator 1.0.9753.39349 |
3 |
| StandardFormationEnergyCalculator | 化合物标准生成能计算器。 - 组件贡献法 StandardFormationEnergyCalculator.StandardFormationEnergyTransformed()):基于微物种的 Legendre 变换分区函数(log-sum-exp)计算 ΔfG'°。 - 组贡献法 StandardFormationEnergyCalcula… | Emily.eQuilibrator 1.0.9753.39349 |
24 |
Emily.eQuilibrator.SmilesChem
| Type | Summary | Package | Members |
|---|---|---|---|
| FunctionalGroup | 官能团/片段识别结果。 记录识别出的基团名称、简写符号、所涉及的原子序号列表, 以及该基团属于"基团"还是"片段"。 | Emily.eQuilibrator 1.0.9753.39349 |
6 |
| FunctionalGroupDetector | 官能团与片段识别器。 对分子图进行模式匹配,将分子"拆解"为预定义的基团和片段。 | Emily.eQuilibrator 1.0.9753.39349 |
36 |
| GroupCategory | 基团分类枚举,区分"基团"和"片段"两大类。 基团指简单的官能团(如 -OH, -CH3), 片段指较复杂的结构单元(如苯环、环己烷、特定侧链等)。 | Emily.eQuilibrator 1.0.9753.39349 |
4 |
| PkaPrediction | 单条 pKa 预测结果。 | Emily.eQuilibrator 1.0.9753.39349 |
5 |
| PkaPredictor | 基于官能团识别的 pKa 预测器。 将已识别的功能团列表映射为一组经验 pKa;对环上下文(酚/醇、吡啶/吡咯)做修正。 | Emily.eQuilibrator 1.0.9753.39349 |
2 |
| SmilesAtom | SMILES 原子节点。 每个原子记录其元素符号、是否芳香、电荷、显式氢原子数等信息, 并维护与其相连的所有化学键引用,方便图遍历。 | Emily.eQuilibrator 1.0.9753.39349 |
13 |
| SmilesBond | SMILES 化学键。 记录键的两个端点原子、键类型(单/双/三/芳香)、键级, 以及该键是否为环闭合键。 | Emily.eQuilibrator 1.0.9753.39349 |
6 |
| SmilesMolecule | 分子图:包含所有原子和化学键的完整分子结构表示。 由 SmilesParser 解析 SMILES 字符串后构建。 | Emily.eQuilibrator 1.0.9753.39349 |
16 |
| SmilesParser | SMILES 解析器:将 SMILES 字符串解析为 SmilesMolecule 分子图。 采用逐字符扫描方式,处理原子、化学键、分支和环闭合。 | Emily.eQuilibrator 1.0.9753.39349 |
8 |
Emily.eQuilibrator.SmilesChem.SmilesParser
| Type | Summary | Package | Members |
|---|---|---|---|
| RingClosureInfo | 环闭合临时信息:记录环编号对应的第一个原子和待定键类型 | Emily.eQuilibrator 1.0.9753.39349 |
0 |
Emily.gromacs
| Type | Summary | Package | Members |
|---|---|---|---|
| pdbFilter | removes the un-expected atoms from the pdb file by matches rtp file atoms | Emily.ZDock 1.0.9753.39349 |
1 |
| rtpResidue | GROMACS (GROningen MAchine for Chemical Simulations) is a widely-used molecular dynamics simulation package. | Emily.ZDock 1.0.9753.39349 |
4 |
Emily.PDB_Canvas
| Type | Summary | Package | Members |
|---|---|---|---|
| AA | Amino acid. | Emily.PDB_canvas 1.0.9753.39349 |
0 |
| BondConnectionModel | Emily.PDB_canvas 1.0.9753.39349 |
1 | |
| ChainModel | 多肽链的绘图模型 | Emily.PDB_canvas 1.0.9753.39349 |
1 |
| CPKColors | CPK着色方案(以Robert Corey, Linus Pauling, Walter Kolen三位科学家命名),这是分子模型中使用最广泛的颜色系统,用于区分不同元素。 | Emily.PDB_canvas 1.0.9753.39349 |
4 |
| DrawingPDB | Visualize the protein 3D structure from the PDB file. | Emily.PDB_canvas 1.0.9753.39349 |
1 |
EmilyPkg
| Type | Summary | Package | Members |
|---|---|---|---|
| cast | Emily 1.0.9753.39349 |
1 | |
| imageDriverHandler | Emily 1.0.9753.39349 |
2 | |
| InteropArgumentHelper | R# graphics argument scripting helper | Emily 1.0.9753.39349 |
4 |
| RColorPalette | Emily 1.0.9753.39349 |
4 | |
| Rscript | Emily 1.0.9753.39349 |
2 |
JSql.Engine
| Type | Summary | Package | Members |
|---|---|---|---|
| ExpressionEvaluator | JSql 1.0.0 |
6 | |
| ExpressionEvaluator | JSql 1.0.2.123 |
6 | |
| ResultSet | execution result: either a tabular result set or a row-count message | JSql 1.0.0 |
7 |
| ResultSet | execution result: either a tabular result set or a row-count message | JSql 1.0.2.123 |
7 |
| SqlEngine | the sql engine facade: sql text -> ast -> result set, owns the database catalog and the search index manager. | JSql 1.0.0 |
17 |
| SqlEngine | the sql engine facade: sql text -> ast -> result set, owns the database catalog and the search index manager. | JSql 1.0.2.123 |
17 |
| SqlExecutor | executes parsed sql statements against the file based storage layer | JSql 1.0.0 |
11 |
| SqlExecutor | executes parsed sql statements against the file based storage layer | JSql 1.0.2.123 |
11 |
JSql.Engine.SqlExecutor
JSql.Indexing
| Type | Summary | Package | Members |
|---|---|---|---|
| ColumnIndexInfo | JSql 1.0.0 |
5 | |
| ColumnIndexInfo | JSql 1.0.2.123 |
5 | |
| IndexArchive | persisted form of one column index. | JSql 1.0.0 |
10 |
| IndexArchive | persisted form of one column index. | JSql 1.0.2.123 |
10 |
| IndexKind | JSql 1.0.0 |
6 | |
| IndexKind | JSql 1.0.2.123 |
6 | |
| IndexManager | index facade of the sql engine: maintains the search index of every table, probes usable indexes for a WHERE clause and keeps the index files in sync with the table data files. | JSql 1.0.0 |
15 |
| IndexManager | index facade of the sql engine: maintains the search index of every table, probes usable indexes for a WHERE clause and keeps the index files in sync with the table data files. | JSql 1.0.2.123 |
15 |
| IndexPersistence | JSql 1.0.0 |
7 | |
| IndexPersistence | JSql 1.0.2.123 |
7 | |
| JsonMemoryIndex | adapts the json table rows onto the LINQ in-memory search index engine, this type is the json counterpart of the LINQ MemoryTable. | JSql 1.0.0 |
7 |
| JsonMemoryIndex | adapts the json table rows onto the LINQ in-memory search index engine, this type is the json counterpart of the LINQ MemoryTable. | JSql 1.0.2.123 |
7 |
| TableIndexSet | JSql 1.0.0 |
6 | |
| TableIndexSet | JSql 1.0.2.123 |
6 |
JSql.Indexing.IndexManager
| Type | Summary | Package | Members |
|---|---|---|---|
| IndexProbe | translate the top level AND conditions of a WHERE clause into the LINQ search index queries. | JSql 1.0.0 |
2 |
| IndexProbe | translate the top level AND conditions of a WHERE clause into the LINQ search index queries. | JSql 1.0.2.123 |
2 |
JSql.Sql
| Type | Summary | Package | Members |
|---|---|---|---|
| BinaryOp | binary operators in expressions | JSql 1.0.0 |
13 |
| BinaryOp | binary operators in expressions | JSql 1.0.2.123 |
13 |
| CheckpointStatement | CHECKPOINT [TABLE t]: merge the pending write ahead log back into the data file | JSql 1.0.0 |
1 |
| CheckpointStatement | CHECKPOINT [TABLE t]: merge the pending write ahead log back into the data file | JSql 1.0.2.123 |
1 |
| CreateStatement | JSql 1.0.0 |
9 | |
| CreateStatement | JSql 1.0.2.123 |
9 | |
| DropStatement | JSql 1.0.0 |
4 | |
| DropStatement | JSql 1.0.2.123 |
4 | |
| FunctionCallExpression | JSql 1.0.0 |
3 | |
| FunctionCallExpression | JSql 1.0.2.123 |
3 | |
| IdentifierExpression | JSql 1.0.0 |
2 | |
| IdentifierExpression | JSql 1.0.2.123 |
2 | |
| InsertStatement | JSql 1.0.0 |
3 | |
| InsertStatement | JSql 1.0.2.123 |
3 | |
| JoinClause | JSql 1.0.0 |
4 | |
| JoinClause | JSql 1.0.2.123 |
4 | |
| SelectItem | JSql 1.0.0 |
2 | |
| SelectItem | JSql 1.0.2.123 |
2 | |
| SelectStatement | JSql 1.0.0 |
11 | |
| SelectStatement | JSql 1.0.2.123 |
11 | |
| ShowKind | JSql 1.0.0 |
6 | |
| ShowKind | JSql 1.0.2.123 |
6 | |
| ShowStatement | JSql 1.0.0 |
2 | |
| ShowStatement | JSql 1.0.2.123 |
2 | |
| SqlError | sql syntax error with character position info | JSql 1.0.0 |
1 |
| SqlError | sql syntax error with character position info | JSql 1.0.2.123 |
1 |
| SqlParser | recursive-descent parser for the mysql-compatible sql subset supported by JSql | JSql 1.0.0 |
5 |
| SqlParser | recursive-descent parser for the mysql-compatible sql subset supported by JSql | JSql 1.0.2.123 |
5 |
| SqlTokenizer | hand-written sql lexer: identifiers (and back-quoted quoted identifiers), numbers, single-quoted strings, operators and punctuation. | JSql 1.0.0 |
1 |
| SqlTokenizer | hand-written sql lexer: identifiers (and back-quoted quoted identifiers), numbers, single-quoted strings, operators and punctuation. | JSql 1.0.2.123 |
1 |
| Token | JSql 1.0.0 |
6 | |
| Token | JSql 1.0.2.123 |
6 | |
| UnaryExpression | JSql 1.0.0 |
2 | |
| UnaryExpression | JSql 1.0.2.123 |
2 |
JSql.Sqlite
| Type | Summary | Package | Members |
|---|---|---|---|
| SqliteSchemaMapper | JSql 表结构 / 行值与 SQLite 之间的映射: - JSql 规范类型 <-> SQLite 声明类型; - <-> ; - 由 SQLite 的 CREATE TABLE DDL 反解出 (用于读取外部 sqlite 文件); - 行对象 <-> 定位子有序的值数组,并归一为 JSql 规范类型的 CLR 值。 | Sqlite 1.0.0 |
6 |
| SqliteSchemaMapper | JSql 表结构 / 行值与 SQLite 之间的映射: - JSql 规范类型 <-> SQLite 声明类型; - <-> ; - 由 SQLite 的 CREATE TABLE DDL 反解出 (用于读取外部 sqlite 文件); - 行对象 <-> 定位子有序的值数组,并归一为 JSql 规范类型的 CLR 值。 | JSql.Sqlite 1.0.2.123 |
6 |
| SqliteStorage | 基于 SQLite 数据库文件的存储后端:一个 JSql 数据库 = 一个 .sqlite 文件, 库内所有表共存于同一个 SQLite 文件。 行数据写入 SQLite 文件的表;JSql 的完整模式元数据(列类型原始文本、COMMENT、 DEFAULT、表级 UNIQUE KEY/KEY 等 SQLite DDL 无法承载的信息)与列… | Sqlite 1.0.0 |
31 |
| SqliteStorage | 基于 SQLite 数据库文件的存储后端:一个 JSql 数据库 = 一个 .sqlite 文件, 库内所有表共存于同一个 SQLite 文件。 行数据写入 SQLite 文件的表;JSql 的完整模式元数据(列类型原始文本、COMMENT、 DEFAULT、表级 UNIQUE KEY/KEY 等 SQLite DDL 无法承载的信息)与列… | JSql.Sqlite 1.0.2.123 |
10 |
| SqliteTableSession | 以 SQLite 数据库文件为物理载体的表级会话。 桥接托管 SQLite3 写入引擎(Sqlite3Writer / Sqlite3TableWriter):读路径直接从共享的内存表模型枚举; 写路径把 JSql 的整表行集翻译为底层行级原语(纯追加走 AddRow 快路径, 其余情况整表重建),实际落盘由 SqliteTableSessi… | Sqlite 1.0.0 |
21 |
| SqliteTableSession | 以 SQLite 数据库文件为物理载体的表级会话。 桥接托管 SQLite3 写入引擎(Sqlite3Writer / Sqlite3TableWriter):读路径直接从共享的内存表模型枚举; 写路径把 JSql 的整表行集翻译为底层行级原语(纯追加走 AddRow 快路径, 其余情况整表重建),实际落盘由 SqliteTableSessi… | JSql.Sqlite 1.0.2.123 |
8 |
JSql.Storage
| Type | Summary | Package | Members |
|---|---|---|---|
| ColumnDef | JSql 1.0.0 |
7 | |
| ColumnDef | JSql 1.0.2.123 |
7 | |
| CsvRowCodec | CSV 行编解码:数据文件的物理结构为「第 1 行表头 + 后续数据行」。 - 表头:用 解析列名并建立「列名 -> 物理序号」映射, 以支持外部 CSV 的列序与 schema 列序不一致;生成行时按 schema 列序输出。 - 解析:用 单遍字符扫描切分单元格, 再经 按列类型还原为强类型的值。 - 生成:用 逐… | JSql 1.0.0 |
12 |
| CsvRowCodec | CSV 行编解码:数据文件的物理结构为「第 1 行表头 + 后续数据行」。 - 表头:用 解析列名并建立「列名 -> 物理序号」映射, 以支持外部 CSV 的列序与 schema 列序不一致;生成行时按 schema 列序输出。 - 解析:用 单遍字符扫描切分单元格, 再经 按列类型还原为强类型的值。 - 生成:用 逐… | JSql 1.0.2.123 |
12 |
| CsvTableSession | CSV 表会话:数据文件为「表头行 + 数据行」,是 TextTableSession 在 CSV 编解码器上的薄封装。列类型/NOT NULL/键/注释等元数据仍存放于 <表>.schema.json,CSV 文件本身只承载表头与行数据。 | JSql 1.0.0 |
0 |
| CsvTableSession | CSV 表会话:数据文件为「表头行 + 数据行」,是 TextTableSession 在 CSV 编解码器上的薄封装。列类型/NOT NULL/键/注释等元数据仍存放于 <表>.schema.json,CSV 文件本身只承载表头与行数据。 | JSql 1.0.2.123 |
0 |
| IDbFileStorageProvider | 数据库文件存储后端抽象:一个实现代表一种物理存储引擎,负责管理整库的 目录/文件、库内表的枚举与建删、表会话的获取以及表数据的加载/保存/删除。 默认实现是 TextFileStorage(一个文件夹 = 一个数据库, 表数据以 JSONL / CSV 文本行存放并带 WAL);外部实现(例如基于 SQLite 数据库文件的引擎)可在宿主构造… | JSql 1.0.0 |
20 |
| IDbFileStorageProvider | 数据库文件存储后端抽象:一个实现代表一种物理存储引擎,负责管理整库的 目录/文件、库内表的枚举与建删、表会话的获取以及表数据的加载/保存/删除。 默认实现是 TextFileStorage(一个文件夹 = 一个数据库, 表数据以 JSONL / CSV 文本行存放并带 WAL);外部实现(例如基于 SQLite 数据库文件的引擎)可在宿主构造… | JSql 1.0.2.123 |
20 |
| IdleMergeScheduler | periodically merges the pending write ahead logs back into the data files while the engine is idle. | JSql 1.0.0 |
28 |
| IdleMergeScheduler | periodically merges the pending write ahead logs back into the data files while the engine is idle. | JSql 1.0.2.123 |
28 |
| IRowCodec | 行编解码抽象:把一行数据在“内存行对象”与“磁盘上的单行文本”之间互相转换。 底层的 TextLineStore 只负责按行存放不透明文本, 具体是 JSONL 还是 CSV 由本接口的实现决定,从而让会话层与存储格式解耦。 | JSql 1.0.0 |
6 |
| IRowCodec | 行编解码抽象:把一行数据在“内存行对象”与“磁盘上的单行文本”之间互相转换。 底层的 TextLineStore 只负责按行存放不透明文本, 具体是 JSONL 还是 CSV 由本接口的实现决定,从而让会话层与存储格式解耦。 | JSql 1.0.2.123 |
6 |
| ITableSession | a table storage session backed by one open data file. | JSql 1.0.0 |
19 |
| ITableSession | a table storage session backed by one open data file. | JSql 1.0.2.123 |
19 |
| ITableStore | storage format abstraction: reads/writes a single table file. | JSql 1.0.0 |
4 |
| ITableStore | storage format abstraction: reads/writes a single table file. | JSql 1.0.2.123 |
4 |
| JsonColumn | JSql 1.0.0 |
6 | |
| JsonColumn | JSql 1.0.2.123 |
6 | |
| JsonlTableSession | JSONL 表会话:以「一行一个 JSON 对象」的方式存取,是 TextTableSession 在 JSONL 编解码器上的薄封装,保持既有 JSONL 表的行为与文件布局不变。 | JSql 1.0.0 |
0 |
| JsonlTableSession | JSONL 表会话:以「一行一个 JSON 对象」的方式存取,是 TextTableSession 在 JSONL 编解码器上的薄封装,保持既有 JSONL 表的行为与文件布局不变。 | JSql 1.0.2.123 |
0 |
| JsonRowCodec | JSONL 行编解码:一行一个紧凑的 JSON 对象。实现委托给既有的 RowJson, 以保证与历史数据文件字节级一致。 | JSql 1.0.0 |
6 |
| JsonRowCodec | JSONL 行编解码:一行一个紧凑的 JSON 对象。实现委托给既有的 RowJson, 以保证与历史数据文件字节级一致。 | JSql 1.0.2.123 |
6 |
| JsonTableFile | JSql 1.0.0 |
5 | |
| JsonTableFile | JSql 1.0.2.123 |
5 | |
| JsonTableStore | json table storage: one physical *.json file contains the table schema plus all row data. | JSql 1.0.0 |
5 |
| JsonTableStore | json table storage: one physical *.json file contains the table schema plus all row data. | JSql 1.0.2.123 |
5 |
| RowJson | jsonl row codec: one table row is stored as one compact json object line, the columns are written in schema order so that the file stays diff friendly. | JSql 1.0.0 |
3 |
| RowJson | jsonl row codec: one table row is stored as one compact json object line, the columns are written in schema order so that the file stays diff friendly. | JSql 1.0.2.123 |
3 |
| SchemaStore | reads and writes the standalone table schema file <table>.schema.json. | JSql 1.0.0 |
7 |
| SchemaStore | reads and writes the standalone table schema file <table>.schema.json. | JSql 1.0.2.123 |
7 |
| SqlTypes | sql canonical data types: INT, DOUBLE, VARCHAR, DATE, DATETIME, BOOLEAN | JSql 1.0.0 |
6 |
| SqlTypes | sql canonical data types: INT, DOUBLE, VARCHAR, DATE, DATETIME, BOOLEAN | JSql 1.0.2.123 |
6 |
| StorageFactory | dispatch table file io by file extension. | JSql 1.0.0 |
3 |
| StorageFactory | dispatch table file io by file extension. | JSql 1.0.2.123 |
3 |
| StorageFormat | 新建表所使用的物理存储格式。 | JSql 1.0.0 |
4 |
| StorageFormat | 新建表所使用的物理存储格式。 | JSql 1.0.2.123 |
4 |
| StorageLayout | file naming rules of the table storage layout: <table>.schema.json the table schema (columns, comment, keys) <table>.jsonl the row data, one json object per line (… | JSql 1.0.0 |
24 |
| StorageLayout | file naming rules of the table storage layout: <table>.schema.json the table schema (columns, comment, keys) <table>.jsonl the row data, one json object per line (… | JSql 1.0.2.123 |
24 |
| StorageOptions | runtime switches of the table storage layer. | JSql 1.0.0 |
8 |
| StorageOptions | runtime switches of the table storage layer. | JSql 1.0.2.123 |
8 |
| StoredTable | an in-memory representation of one physical table file: schema plus row data. | JSql 1.0.0 |
3 |
| StoredTable | an in-memory representation of one physical table file: schema plus row data. | JSql 1.0.2.123 |
3 |
| TableKeyInfo | a table level key definition: PRIMARY KEY / UNIQUE KEY / KEY as declared inside the CREATE TABLE statement. | JSql 1.0.0 |
5 |
| TableKeyInfo | a table level key definition: PRIMARY KEY / UNIQUE KEY / KEY as declared inside the CREATE TABLE statement. | JSql 1.0.2.123 |
5 |
| TableSchema | JSql 1.0.0 |
7 | |
| TableSchema | JSql 1.0.2.123 |
7 | |
| TableSessionPool | caches the open table sessions. | JSql 1.0.0 |
17 |
| TableSessionPool | caches the open table sessions. | JSql 1.0.2.123 |
17 |
| TextFileStorage | 文本文件存储后端:一个子目录 = 一个数据库,表以 schema 文件加行数据文件的形式存放, 行数据可以是 JSONL(一行一个 JSON)或 CSV(表头行 + 数据行),并带写前日志。 旧版单文件 json 布局仍可读取,并在第一次写入时迁移。 本类即原 DatabaseCatalog,行为与文件布局保持不变,只是实现了 IDbFile… | JSql 1.0.0 |
23 |
| TextFileStorage | 文本文件存储后端:一个子目录 = 一个数据库,表以 schema 文件加行数据文件的形式存放, 行数据可以是 JSONL(一行一个 JSON)或 CSV(表头行 + 数据行),并带写前日志。 旧版单文件 json 布局仍可读取,并在第一次写入时迁移。 本类即原 DatabaseCatalog,行为与文件布局保持不变,只是实现了 IDbFile… | JSql 1.0.2.123 |
23 |
| TextTableSession | 通用表会话:schema 文件 + 由 TextLineStore 管理的行式数据文件(含 WAL)。 行的具体格式(JSONL / CSV …)由注入的 IRowCodec 决定, 所有修改都被翻译为底层的行级 splice 原语。 | JSql 1.0.0 |
22 |
| TextTableSession | 通用表会话:schema 文件 + 由 TextLineStore 管理的行式数据文件(含 WAL)。 行的具体格式(JSONL / CSV …)由注入的 IRowCodec 决定, 所有修改都被翻译为底层的行级 splice 原语。 | JSql 1.0.2.123 |
22 |
JSql.Storage.TextFileStorage
| Type | Summary | Package | Members |
|---|---|---|---|
| TableLayout | JSql 1.0.0 |
3 | |
| TableLayout | JSql 1.0.2.123 |
3 |
Microsoft.VisualBasic
| Type | Summary | Package | Members |
|---|---|---|---|
| AnonymousTypeHelper | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 | |
| AnonymousTypeHelper | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 | |
| App | Provides information about, and means to manipulate, the current environment Application information collection. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
113 |
| App | Provides information about, and means to manipulate, the current environment Application information collection. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
113 |
| BucketOperators | 进行集合分块切割或者合并等操作 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
8 |
| BucketOperators | 进行集合分块切割或者合并等操作 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
8 |
| CategoryOperations | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 | |
| CategoryOperations | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 | |
| CollectionValueGetter | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
25 | |
| CollectionValueGetter | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
25 | |
| DelimiterLocation | 分隔符对象在分块之中的位置 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
8 |
| DelimiterLocation | 分隔符对象在分块之中的位置 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
8 |
| DynamicType | Build dynamics clr runtime type | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
10 |
| DynamicType | Build dynamics clr runtime type | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
10 |
| EmitReflection | Some common used reflection operation extension at here. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
28 |
| EmitReflection | Some common used reflection operation extension at here. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
28 |
| EnumHelpers | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
7 | |
| EnumHelpers | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
7 | |
| Extensions | Common extension methods library for convenient the programming job. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
117 |
| Extensions | Common extension methods library for convenient the programming job. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
117 |
| Globals | global constants | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
7 |
| Globals | global constants | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
7 |
| HttpGet | Tools for http get | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 |
| HttpGet | Tools for http get | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 |
| IEnumerations | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
25 | |
| IEnumerations | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
25 | |
| IOExtensions | The extension API for system file io. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
15 |
| IOExtensions | The extension API for system file io. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
15 |
| IsNullOrEmptyExtensions | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
12 | |
| IsNullOrEmptyExtensions | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
12 | |
| LargeTextFile | Wrapper for the file operations. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
8 |
| LargeTextFile | Wrapper for the file operations. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
8 |
| LICENSE | Information about this VisualBasic App framework code module. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| LICENSE | Information about this VisualBasic App framework code module. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
| ListExtensions | Initializes a new instance of the LanguageAPI.list())1 class that contains elements copied from the specified collection and has sufficient capacity to accommodate the number of… | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
37 |
| ListExtensions | Initializes a new instance of the LanguageAPI.list())1 class that contains elements copied from the specified collection and has sufficient capacity to accommodate the number of… | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
37 |
| LLMs | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 | |
| LLMs | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 | |
| MethodsExtension | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
7 | |
| MethodsExtension | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
7 | |
| NumericFormatHelper | C货币 vbnet 2.5.ToString("C") ' ¥2.50 ###### D十进制数 vbnet 25.ToString("D5") ' 00025 ###### E科学型 vbnet 25000.ToString("E") ' 2.500000E+005 ###### F固定点 vbnet 25… | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 |
| NumericFormatHelper | C货币 vbnet 2.5.ToString("C") ' ¥2.50 ###### D十进制数 vbnet 25.ToString("D5") ' 00025 ###### E科学型 vbnet 25000.ToString("E") ' 2.500000E+005 ###### F固定点 vbnet 25… | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 |
| PathExtensions | Search the path from a specific keyword.(通过关键词来推测路径) | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
43 |
| PathExtensions | Search the path from a specific keyword.(通过关键词来推测路径) | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
43 |
| PrimitiveParser | Simple type parser extension function for String | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
20 |
| PrimitiveParser | Simple type parser extension function for String | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
20 |
| RegexExtensions | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
15 | |
| RegexExtensions | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
15 | |
| ScriptMeta | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
7 | |
| ScriptMeta | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
7 | |
| SerializationIO | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 | |
| SerializationIO | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 | |
| StreamHelper | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
9 | |
| StreamHelper | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
9 | |
| StringBuilders | StringBuilder helpers | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 |
| StringBuilders | StringBuilder helpers | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 |
| StringFormats | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
7 | |
| StringFormats | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
7 | |
| StringHelpers | The extensions module for facilities the string operations. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
86 |
| StringHelpers | The extensions module for facilities the string operations. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
86 |
| StrUtils | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
39 | |
| StrUtils | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
39 | |
| TextDoc | Extension helper function for the text documents | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
23 |
| TextDoc | Extension helper function for the text documents | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
23 |
| TupleHelper | Deconstruct of the tuple data via byref out | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| TupleHelper | Deconstruct of the tuple data via byref out | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
| ValueReader | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
6 | |
| ValueReader | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
6 | |
| VBDebugger | Debugger helper module for VisualBasic Enterprises System. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
30 |
| VBDebugger | Debugger helper module for VisualBasic Enterprises System. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
30 |
| VectorExtensions | Extension methods for the .NET object sequence | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
51 |
| VectorExtensions | Extension methods for the .NET object sequence | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
51 |
| WebServiceUtils | The extension module for web services works. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
38 |
| WebServiceUtils | The extension module for web services works. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
38 |
| XmlExtensions | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
21 | |
| XmlExtensions | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
21 |
Microsoft.VisualBasic.ApplicationServices
| Type | Summary | Package | Members |
|---|---|---|---|
| Application | Application information | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 |
| Application | Application information | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 |
| FileSystemTree | A virtual filesystem tree | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
14 |
| FileSystemTree | A virtual filesystem tree | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
14 |
| FileSystemView | A data view wrapper that used a specific subdir as workfolder | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
16 |
| FileSystemView | A data view wrapper that used a specific subdir as workfolder | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
16 |
| IFileSystemEnvironment | an abstract interface for union filesystem: 1. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
14 |
| IFileSystemEnvironment | an abstract interface for union filesystem: 1. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
14 |
| IWorkspace | A abstract reference to a workdir | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 |
| IWorkspace | A abstract reference to a workdir | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 |
| MemoryStreamPool | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
14 | |
| MemoryStreamPool | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
14 | |
| OSVersionInfo | Provides detailed information about the host operating system.(用于判断操作系统的具体版本信息的工具) | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
18 |
| OSVersionInfo | Provides detailed information about the host operating system.(用于判断操作系统的具体版本信息的工具) | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
18 |
| PerformanceCounter | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
8 | |
| PerformanceCounter | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
8 | |
| ProgramPathSearchTool | Program helper for search dir like C:\Program Files or C:\Program Files(x86) | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
8 |
| ProgramPathSearchTool | Program helper for search dir like C:\Program Files or C:\Program Files(x86) | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
8 |
| ResourcesSatellite | Represents a resource manager that provides convenient access to culture-specific resources at run time.Security Note: Calling methods in this class with untrusted data is a secu… | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
14 |
| ResourcesSatellite | Represents a resource manager that provides convenient access to culture-specific resources at run time.Security Note: Calling methods in this class with untrusted data is a secu… | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
14 |
| SubStream | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
16 | |
| SubStream | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
16 | |
| TarGzFileSystem | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
14 | |
| TarGzFileSystem | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
14 | |
| TempFileSystem | return name and handle of a temporary file safely | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 |
| TempFileSystem | return name and handle of a temporary file safely | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 |
| TimeCounter | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 | |
| TimeCounter | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 | |
| Utils | App utils | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
11 |
| Utils | App utils | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
11 |
Microsoft.VisualBasic.ApplicationServices.Debugging
| Type | Summary | Package | Members |
|---|---|---|---|
| DebuggerArgs | 调试器设置参数模块 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 |
| DebuggerArgs | 调试器设置参数模块 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 |
| DebuggerLevels | 默认的参数值是DebuggerLevels.On | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
12 |
| DebuggerLevels | 默认的参数值是DebuggerLevels.On | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
12 |
| ExceptionExtensions | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 | |
| ExceptionExtensions | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 | |
| ExceptionHandler | 处理错误的工作逻辑的抽象接口 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| ExceptionHandler | 处理错误的工作逻辑的抽象接口 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
| HeapSizeOf | How to get object size in memory | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
19 |
| HeapSizeOf | How to get object size in memory | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
19 |
| VisualBasicAppException | VisualBasic application exception wrapper | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 |
| VisualBasicAppException | VisualBasic application exception wrapper | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 |
Microsoft.VisualBasic.ApplicationServices.Debugging.Diagnostics
| Type | Summary | Package | Members |
|---|---|---|---|
| ExceptionData | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
10 | |
| ExceptionData | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
10 | |
| StackFrame | Contains the necessary function calls information, source file location information for traceback the runtime error | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
8 |
| StackFrame | Contains the necessary function calls information, source file location information for traceback the runtime error | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
8 |
Microsoft.VisualBasic.ApplicationServices.Debugging.Logging
| Type | Summary | Package | Members |
|---|---|---|---|
| ErrorLog | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 | |
| ErrorLog | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 | |
| LogEntry | 一条记录日志对象 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
6 |
| LogEntry | 一条记录日志对象 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
6 |
| LogFile | 日志文件记录模块。因为在Linux平台上面,Windows的日志记录API可能不会正常工作, 所以需要这个日志模块来接替Windows的日志模块的工作 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
20 |
| LogFile | 日志文件记录模块。因为在Linux平台上面,Windows的日志记录API可能不会正常工作, 所以需要这个日志模块来接替Windows的日志模块的工作 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
20 |
| LogReader | 分析服务器的问题原因所需要的日志分析工具 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 |
| LogReader | 分析服务器的问题原因所需要的日志分析工具 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 |
| MSG_TYPES | Logging levels, the types enumeration of the log file message. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
10 |
| MSG_TYPES | Logging levels, the types enumeration of the log file message. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
10 |
Microsoft.VisualBasic.ApplicationServices.Development
| Type | Summary | Package | Members |
|---|---|---|---|
| ApplicationInfoUtils | Parsing product assembly meta data | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
17 |
| ApplicationInfoUtils | Parsing product assembly meta data | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
17 |
| AssemblyInfo | My Project\AssemblyInfo.vb | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
18 |
| AssemblyInfo | My Project\AssemblyInfo.vb | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
18 |
Microsoft.VisualBasic.ApplicationServices.Development.NetCoreApp
| Type | Summary | Package | Members |
|---|---|---|---|
| deps | read deps.json for .net 5 assembly | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
10 |
| deps | read deps.json for .net 5 assembly | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
10 |
| MSBuild | .NET core msbuild command wrapper dotnet msbuild | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| MSBuild | .NET core msbuild command wrapper dotnet msbuild | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio
| Type | Summary | Package | Members |
|---|---|---|---|
| Correlation | Represents activity correlation information for a WCF trace event. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
1 |
| Correlation | Represents activity correlation information for a WCF trace event. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
1 |
| E2ETraceEvent | Represents an End-to-End (E2E) trace event from a WCF trace log. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
2 |
| E2ETraceEvent | Represents an End-to-End (E2E) trace event from a WCF trace log. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
2 |
| Execution | Represents the execution context information for a trace event. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
3 |
| Execution | Represents the execution context information for a trace event. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
3 |
| SystemEvent | Represents the system-level event metadata for a WCF trace event. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
10 |
| SystemEvent | Represents the system-level event metadata for a WCF trace event. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
10 |
| SystemTime | Represents a system timestamp value, serialized as an XML attribute. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
1 |
| SystemTime | Represents a system timestamp value, serialized as an XML attribute. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
1 |
| TagValue | Represents a key-value pair where the name is stored as an XML attribute and the value is stored as the XML element's text content. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
2 |
| TagValue | Represents a key-value pair where the name is stored as an XML attribute and the value is stored as the XML element's text content. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
2 |
| WCFTraceFile | Utility class for reading and parsing Windows Communication Foundation (WCF) trace log files (.svclog). | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
1 |
| WCFTraceFile | Utility class for reading and parsing Windows Communication Foundation (WCF) trace log files (.svclog). | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
1 |
Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio.CodeSign
| Type | Summary | Package | Members |
|---|---|---|---|
| CodeSignHelpers | 使用AES加密进行代码的签名操作 | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
2 |
| CodeSignHelpers | 使用AES加密进行代码的签名操作 | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
1 |
| CodeStatics | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
12 | |
| CodeStatics | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
12 | |
| LicenseMgr | Source code license banner | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
6 |
| LicenseMgr | Source code license banner | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
6 |
| VBCodeSignature | 在这个模块之中对VB的代码文件进行大纲摘要的提取操作 | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
2 |
| VBCodeSignature | 在这个模块之中对VB的代码文件进行大纲摘要的提取操作 | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
2 |
Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio.IL
| Type | Summary | Package | Members |
|---|---|---|---|
| ArrayIndexExpression | 数组取元素(ldelem.*) | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
3 |
| ArrayIndexExpression | 数组取元素(ldelem.*) | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
3 |
| ArrayLengthExpression | 数组长度(ldlen) | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
2 |
| ArrayLengthExpression | 数组长度(ldlen) | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
2 |
| AssignmentStatement | 赋值:target = value | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
3 |
| AssignmentStatement | 赋值:target = value | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
3 |
| AstInterpreter | 在 CPU 上直接执行一棵 MethodSyntax | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
3 |
| AstInterpreter | 在 CPU 上直接执行一棵 MethodSyntax | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
3 |
| BasicBlock | 控制流图中的一个基本块 | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
24 |
| BasicBlock | 控制流图中的一个基本块 | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
24 |
| BinaryExpression | 二元运算 | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
4 |
| BinaryExpression | 二元运算 | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
4 |
| BinaryOperator | 二元运算符 | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
18 |
| BinaryOperator | 二元运算符 | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
18 |
| BlockStatement | 语句块(同时用作方法体与 if / while / for 的 body) | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
1 |
| BlockStatement | 语句块(同时用作方法体与 if / while / for 的 body) | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
1 |
| CallExpression | 方法调用(call / callvirt,仅白名单内的纯函数) | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
9 |
| CallExpression | 方法调用(call / callvirt,仅白名单内的纯函数) | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
9 |
| ControlFlowGraph | 一个方法的控制流图 | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
16 |
| ControlFlowGraph | 一个方法的控制流图 | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
16 |
| ConvertExpression | 数值/引用转换(conv.r4 / conv.r8 / conv.i4 ...) | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
4 |
| ConvertExpression | 数值/引用转换(conv.r4 / conv.r8 / conv.i4 ...) | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
4 |
| DecompileDiagnostics | 反编译过程中产生的结构化诊断(框架层不写控制台) | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
5 |
| DecompileDiagnostics | 反编译过程中产生的结构化诊断(框架层不写控制台) | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
5 |
| DecompileException | 反编译失败 | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
0 |
| DecompileException | 反编译失败 | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
0 |
| DecompileOptions | 反编译选项 | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
2 |
| DecompileOptions | 反编译选项 | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
2 |
| Expression | 表达式节点基类 | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
0 |
| Expression | 表达式节点基类 | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
0 |
| ExpressionStatement | 只有副作用、丢弃结果的表达式语句(例如 stelem、无返回值的 call) | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
2 |
| ExpressionStatement | 只有副作用、丢弃结果的表达式语句(例如 stelem、无返回值的 call) | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
2 |
| ForStatement | for 循环(归纳变量形态的 while 提升而来) | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
5 |
| ForStatement | for 循环(归纳变量形态的 while 提升而来) | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
5 |
| Globals | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
8 | |
| Globals | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
8 | |
| IfStatement | if / else | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
3 |
| IfStatement | if / else | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
3 |
| ILInstruction | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
16 | |
| ILInstruction | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
16 | |
| IlOpcodeInfo | IL opcode 归类的静态助手(全部为纯函数) | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
12 |
| IlOpcodeInfo | IL opcode 归类的静态助手(全部为纯函数) | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
12 |
| LiteralExpression | 字面量常量(ldc.i4 / ldc.r4 / ldc.r8 / ldstr / ldnull ...) | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
2 |
| LiteralExpression | 字面量常量(ldc.i4 / ldc.r4 / ldc.r8 / ldstr / ldnull ...) | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
2 |
| LocalDeclaration | 一个局部变量的声明(方法级符号表) | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
4 |
| LocalDeclaration | 一个局部变量的声明(方法级符号表) | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
4 |
| LocalExpression | 局部变量引用(ldloc / ldloca) | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
5 |
| LocalExpression | 局部变量引用(ldloc / ldloca) | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
5 |
| MethodBodyReader | Parsing the IL of a Method Body > https://www.codeproject.com/articles/14058/parsing-the-il-of-a-method-body | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
19 |
| MethodBodyReader | Parsing the IL of a Method Body > https://www.codeproject.com/articles/14058/parsing-the-il-of-a-method-body | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
19 |
| MethodDecompiler | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
3 | |
| MethodDecompiler | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
3 | |
| MethodSyntax | 一个方法反编译之后的完整语法树。 | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
9 |
| MethodSyntax | 一个方法反编译之后的完整语法树。 | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
9 |
| NopStatement | 空语句(nop / 未归约出来的占位) | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
1 |
| NopStatement | 空语句(nop / 未归约出来的占位) | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
1 |
| OperatorPrecedence | 一个二元运算符的优先级(数字越大越紧),供发射器决定是否需要加括号。 | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
2 |
| OperatorPrecedence | 一个二元运算符的优先级(数字越大越紧),供发射器决定是否需要加括号。 | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
2 |
| ParameterDeclaration | 一个方法形参的声明 | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
5 |
| ParameterDeclaration | 一个方法形参的声明 | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
5 |
| ParameterExpression | 方法形参引用(ldarg / ldarga) | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
3 |
| ParameterExpression | 方法形参引用(ldarg / ldarga) | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
3 |
| PhiArgument | SSA phi 的一个入边:来自哪个基本块、取哪个值 | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
3 |
| PhiArgument | SSA phi 的一个入边:来自哪个基本块、取哪个值 | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
3 |
| PhiExpression | SSA phi 节点。结构化还原阶段会把它就地折叠成"分支末尾赋值 + 声明提升", 因此正常情况下最终 AST 里不应残留 phi。 | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
3 |
| PhiExpression | SSA phi 节点。结构化还原阶段会把它就地折叠成"分支末尾赋值 + 声明提升", 因此正常情况下最终 AST 里不应残留 phi。 | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
3 |
| ReturnStatement | return 语句;Value 为 Nothing 表示 Sub 的隐式返回 | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
2 |
| ReturnStatement | return 语句;Value 为 Nothing 表示 Sub 的隐式返回 | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
2 |
| SsaBuilder | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
11 | |
| SsaBuilder | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
11 | |
| StackSimulator | 把 IL 指令流归约成语句与表达式节点 | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
6 |
| StackSimulator | 把 IL 指令流归约成语句与表达式节点 | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
6 |
| Statement | 语句节点基类 | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
0 |
| Statement | 语句节点基类 | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
0 |
| StructureRecovery | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
5 | |
| StructureRecovery | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
5 | |
| SyntaxKind | AST 节点类型 | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
22 |
| SyntaxKind | AST 节点类型 | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
22 |
| SyntaxNode | 所有 AST 节点的基类 | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
3 |
| SyntaxNode | 所有 AST 节点的基类 | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
3 |
| SyntaxWriter | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
6 | |
| SyntaxWriter | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
6 | |
| TernaryExpression | 三元条件表达式(cond ? a : b) | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
4 |
| TernaryExpression | 三元条件表达式(cond ? a : b) | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
4 |
| UnaryExpression | 一元运算 | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
3 |
| UnaryExpression | 一元运算 | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
3 |
| UnaryOperator | 一元运算符 | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
6 |
| UnaryOperator | 一元运算符 | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
6 |
| VariableDeclarationStatement | 局部变量声明(可带初值) | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
5 |
| VariableDeclarationStatement | 局部变量声明(可带初值) | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
5 |
| WhileStatement | while 循环(由带单一回边的自然循环归约而来) | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
3 |
| WhileStatement | while 循环(由带单一回边的自然循环归约而来) | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
3 |
Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio.IL.SsaBuilder
Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio.IL.StructureRecovery
| Type | Summary | Package | Members |
|---|---|---|---|
| RegionOutput | 一段已归约好的语句 + 该段之后应该继续处理的块 | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
0 |
| RegionOutput | 一段已归约好的语句 + 该段之后应该继续处理的块 | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
0 |
Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio.Resource
Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio.sln
| Type | Summary | Package | Members |
|---|---|---|---|
| FolderWorkspace | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
5 | |
| FolderWorkspace | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
4 | |
| Solution | Microsoft Visual Studio Solution File, works for both classic .sln (text) and the new .slnx (XML) solution formats. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
16 |
| Solution | Microsoft Visual Studio Solution File, works for both classic .sln (text) and the new .slnx (XML) solution formats. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
16 |
Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio.sln.File
| Type | Summary | Package | Members |
|---|---|---|---|
| Global | Carries the content of the solution GlobalSection pairs (e.g. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
3 |
| Global | Carries the content of the solution GlobalSection pairs (e.g. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
3 |
| LegacySlnParser | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
3 | |
| LegacySlnParser | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
3 | |
| Parser | Parses Visual Studio solution files, both the classic .sln (text) format and the new .slnx (XML) format, into a unified Solution model. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
2 |
| Parser | Parses Visual Studio solution files, both the classic .sln (text) format and the new .slnx (XML) format, into a unified Solution model. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
2 |
| Project | A project or solution folder inside the solution. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
10 |
| Project | A project or solution folder inside the solution. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
10 |
| SlnxParser | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
1 | |
| SlnxParser | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
1 | |
| SlnxWriter | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
2 | |
| SlnxWriter | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
2 | |
| SolutionConfiguration | A solution level build configuration / platform pair, e.g. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
4 |
| SolutionConfiguration | A solution level build configuration / platform pair, e.g. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
4 |
| TypeId | Known Visual Studio project type GUIDs. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
10 |
| TypeId | Known Visual Studio project type GUIDs. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
10 |
Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio.SourceMap
| Type | Summary | Package | Members |
|---|---|---|---|
| base64VLQ | VLQ编码 > https://github.com/mozilla/source-map/blob/master/lib/base64-vlq.js | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
10 |
| base64VLQ | VLQ编码 > https://github.com/mozilla/source-map/blob/master/lib/base64-vlq.js | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
10 |
| mappingEncode | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
1 | |
| mappingEncode | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
1 | |
| mappingLine | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
7 | |
| mappingLine | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
5 | |
| sourceMap | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
6 | |
| sourceMap | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
6 |
Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio.VBProj
| Type | Summary | Package | Members |
|---|---|---|---|
| AssemblyInfoExtensions | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
2 | |
| AssemblyInfoExtensions | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
2 | |
| Extensions | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
8 | |
| Extensions | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
4 | |
| Imports | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
3 | |
| Imports | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
3 | |
| VBDocument | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
4 | |
| VBDocument | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
4 | |
| VBProject | vbproj file model | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
24 |
| VBProject | vbproj file model | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
17 |
Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio.VBProj.CodeDOM
| Type | Summary | Package | Members |
|---|---|---|---|
| CallableMemberSymbol | base for callable members that own parameters, a return type and a body with local variables: MethodSymbol and PropertySymbol. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
3 |
| CallableMemberSymbol | base for callable members that own parameters, a return type and a body with local variables: MethodSymbol and PropertySymbol. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
2 |
| DelegateSymbol | delegate declaration, e.g. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
3 |
| DelegateSymbol | delegate declaration, e.g. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
1 |
| EnumSymbol | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
2 | |
| EnumSymbol | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
2 | |
| EventSymbol | event symbol, e.g. Event XXX(x As XX) | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
2 |
| EventSymbol | event symbol, e.g. Event XXX(x As XX) | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
1 |
| LanguageSymbolType | the base class of all code symbol types in a VB language project. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
8 |
| LanguageSymbolType | the base class of all code symbol types in a VB language project. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
7 |
| MemberSymbol | category base: a declaration that lives inside a TypeContainerSymbol, e.g. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
0 |
| MemberSymbol | category base: a declaration that lives inside a TypeContainerSymbol, e.g. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
0 |
| MethodSymbol | function / sub / operator / sub new (constructor). | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
1 |
| MethodSymbol | function / sub / operator / sub new (constructor). | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
1 |
| PropertySymbol | property declaration, e.g. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
1 |
| PropertySymbol | property declaration, e.g. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
1 |
| Source | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
5 | |
| Source | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
4 | |
| SourceLocations | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
6 | |
| SourceLocations | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
3 | |
| TypeContainerSymbol | category base: a type declaration that can nest other types and members, e.g. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
4 |
| TypeContainerSymbol | category base: a type declaration that can nest other types and members, e.g. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
4 |
| VariableSymbol | a variable symbol. Per design, class/structure fields AND local method variables share this single type (Field is intentionally not split out). Use LanguageSymbolType.Parent to t… | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
2 |
| VariableSymbol | a variable symbol. Per design, class/structure fields AND local method variables share this single type (Field is intentionally not split out). Use LanguageSymbolType.Parent to t… | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
0 |
Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio.VBProj.CodeDOM.Syntax
| Type | Summary | Package | Members |
|---|---|---|---|
| Token | a single lexical token with its source text and line number. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
4 |
| Token | a single lexical token with its source text and line number. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
4 |
| TokenKind | the kind of a lexical token produced by VBScanner | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
8 |
| TokenKind | the kind of a lexical token produced by VBScanner | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
8 |
| TypeInfoHelper | helpers to build TypeInfo clr type references from the type name text that was extracted out of the VB.NET source code. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
1 |
| TypeInfoHelper | helpers to build TypeInfo clr type references from the type name text that was extracted out of the VB.NET source code. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
1 |
| VBParser | recursive descent parser for VB.NET source code. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
3 |
| VBParser | recursive descent parser for VB.NET source code. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
3 |
| VBScanner | lexical scanner for VB.NET source code. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
1 |
| VBScanner | lexical scanner for VB.NET source code. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
1 |
| VBStatement | a logical (already line-continued) source line together with the xml documentation comment that immediately precedes it. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
9 |
| VBStatement | a logical (already line-continued) source line together with the xml documentation comment that immediately precedes it. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
9 |
Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio.VBProj.NuGet
| Type | Summary | Package | Members |
|---|---|---|---|
| NuGetClient | 轻量 nuget 客户端: 基于 nuget.org flat-container 协议获取包, 并复用 NuGet 全局包目录(~/.nuget/packages)作为本地缓存。 | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
16 |
| NuGetDependency | 一条 nuget 依赖声明(来自目标包的 .nuspec)。 | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
4 |
| NuGetDependencyGroup | 一个 nuspec 的依赖组(<group targetFramework="...">)。 | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
2 |
| NuGetException | nuget 包解析过程中出现的可预期错误(包不存在、版本不存在、网络不可达等)。 | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
0 |
| NuGetFramework | 目标框架 moniker(TFM)的兼容性排序、最优匹配与当前运行平台识别。 | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
10 |
| NuGetPackage | 一个已经落到本地缓存目录的 nuget 包: 包含解析出的依赖与资产(托管 dll / 原生资产目录)。 | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
10 |
| NuGetResolver | nuget 依赖解析器: 读取包内 .nuspec, 递归展开传递依赖, 完成目标框架匹配、版本冲突消解与资产(托管 dll / 原生库目录)选择。 | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
13 |
| NuGetResolveResult | 一次 nuget 依赖解析的完整结果: 根包 + 全部传递依赖。 | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
5 |
| NuGetVersion | NuGet 所使用的语义化版本号: major.minor.patch[.revision][-prerelease][+build]。 | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
16 |
| VersionRange | NuGet 版本范围: 1.2.3(最小版本)、[1.2.3](精确)、[1.0,)、[1.0,2.0)、(,2.0] 等。 | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
10 |
Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio.VBProj.ProjectXml
| Type | Summary | Package | Members |
|---|---|---|---|
| VBBuildConfiguration | a single build configuration derived from a conditional PropertyGroup (e.g. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
8 |
| VBBuildConfiguration | a single build configuration derived from a conditional PropertyGroup (e.g. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
8 |
| VBNuGetMetadata | nuget / packaging metadata parsed from PropertyGroup elements. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
16 |
| VBNuGetMetadata | nuget / packaging metadata parsed from PropertyGroup elements. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
16 |
| VBPackageReference | nuget package reference (PackageReference item) | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
6 |
| VBPackageReference | nuget package reference (PackageReference item) | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
6 |
| VBProjectMetadata | generic, non-packaging project metadata parsed from PropertyGroup elements. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
10 |
| VBProjectMetadata | generic, non-packaging project metadata parsed from PropertyGroup elements. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
10 |
| VBProjectReference | external project reference (ProjectReference item) | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
6 |
| VBProjectReference | external project reference (ProjectReference item) | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
6 |
| VBReference | external assembly reference: a Reference item carrying a HintPath. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
4 |
Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio.VBProj.Reflection
| Type | Summary | Package | Members |
|---|---|---|---|
| AssemblySymbolLoader | Loads a .NET assembly (dll) via read-only metadata reflection and maps every type and member into the VBLang symbol tree model. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
1 |
| AssemblySymbolLoader | Loads a .NET assembly (dll) via read-only metadata reflection and maps every type and member into the VBLang symbol tree model. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
1 |
Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio.VersionControl.Git
| Type | Summary | Package | Members |
|---|---|---|---|
| commitEntry | Represents a single commit entry parsed from git log --since="..." -p output, aggregating the commit metadata, the list of changed files with their diff content, and the added/… | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
4 |
| commitEntry | Represents a single commit entry parsed from git log --since="..." -p output, aggregating the commit metadata, the list of changed files with their diff content, and the added/… | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
4 |
| diff | Module for invoking git diff command and parsing its output into structured objects. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
2 |
| diff | Module for invoking git diff command and parsing its output into structured objects. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
2 |
| DiffHunk | Represents a contiguous section (hunk) of changes in a file diff. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
6 |
| DiffHunk | Represents a contiguous section (hunk) of changes in a file diff. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
5 |
| DiffLine | Represents a single line in a git diff output. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
3 |
| DiffLine | Represents a single line in a git diff output. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
3 |
| DiffLineType | Represents the type of a single diff line. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
6 |
| DiffLineType | Represents the type of a single diff line. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
6 |
| DiffResult | Represents the complete parsed result of a git diff command. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
3 |
| DiffResult | Represents the complete parsed result of a git diff command. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
3 |
| FileChange | Represents the diff changes for a single file. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
4 |
| FileChange | Represents the diff changes for a single file. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
3 |
| FileChangeKind | Represents the kind of change applied to a file. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
8 |
| FileChangeKind | Represents the kind of change applied to a file. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
8 |
| log | Represents a single log entry from a version control system, containing the commit identifier, author, timestamp, and commit message. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
6 |
| log | Represents a single log entry from a version control system, containing the commit identifier, author, timestamp, and commit message. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
6 |
| weeklyLog | Module for parsing git log --since="..." -p output into structured commit entries, combining the existing log metadata parser and the diff patch parser. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9753.4776 |
3 |
| weeklyLog | Module for parsing git log --since="..." -p output into structured commit entries, combining the existing log metadata parser and the diff patch parser. | Microsoft.VisualBasic.ApplicationServices.Development.VisualStudio 1.0.9762.11310 |
3 |
Microsoft.VisualBasic.ApplicationServices.Development.XmlDoc.Assembly
| Type | Summary | Package | Members |
|---|---|---|---|
| Project | Describes a Project, a collection of related types and namespaces. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 |
| Project | Describes a Project, a collection of related types and namespaces. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 |
| ProjectMember | Base class for a method or property. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
9 |
| ProjectMember | Base class for a method or property. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
9 |
| ProjectNamespace | A namespace within a project -- typically a collection of related types. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 |
| ProjectNamespace | A namespace within a project -- typically a collection of related types. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 |
| ProjectSpace | A collection of one or more projects put together, and their attendant namespaces. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
6 |
| ProjectSpace | A collection of one or more projects put together, and their attendant namespaces. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
6 |
| ProjectType | A type within a project namespace. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
13 |
| ProjectType | A type within a project namespace. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
13 |
| XmlDocs | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
7 | |
| XmlDocs | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
7 |
Microsoft.VisualBasic.ApplicationServices.Development.XmlDoc.Serialization
| Type | Summary | Package | Members |
|---|---|---|---|
| APIExtensions | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
14 | |
| APIExtensions | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
14 | |
| Doc | .NET assembly generated XML comments documents file. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| Doc | .NET assembly generated XML comments documents file. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
| memberTypes | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
10 | |
| memberTypes | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
10 | |
| NamespaceDocExtensions | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 | |
| NamespaceDocExtensions | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 | |
| param | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 | |
| param | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
Microsoft.VisualBasic.ApplicationServices.DynamicInterop
| Type | Summary | Package | Members |
|---|---|---|---|
| IDynamicLibraryLoader | An interface definition to hide the platform specific aspects of library loading | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 |
| IDynamicLibraryLoader | An interface definition to hide the platform specific aspects of library loading | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 |
| INativeHandle | Interface for native handle. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| INativeHandle | Interface for native handle. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
| MarshalExtra | Extra methods on top of System.Runtime.InteropServices.Marshal for allocating unmanaged memory, copying unmanaged memory blocks, and converting managed to unmanaged types | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 |
| MarshalExtra | Extra methods on top of System.Runtime.InteropServices.Marshal for allocating unmanaged memory, copying unmanaged memory blocks, and converting managed to unmanaged types | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 |
| NativeHandle | A stub implementation for the INativeHandle interface | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
13 |
| NativeHandle | A stub implementation for the INativeHandle interface | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
13 |
| PlatformUtility | Helper class with functions whose behavior may be depending on the platform | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
8 |
| PlatformUtility | Helper class with functions whose behavior may be depending on the platform | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
8 |
| SafeHandleUnmanagedDll | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 | |
| SafeHandleUnmanagedDll | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 | |
| UnixLibraryLoader | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
9 | |
| UnixLibraryLoader | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
9 | |
| UnmanagedDll | A proxy for unmanaged dynamic link library (DLL). | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
23 |
| UnmanagedDll | A proxy for unmanaged dynamic link library (DLL). | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
23 |
| Win32 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 | |
| Win32 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 | |
| WindowsLibraryLoader | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
6 | |
| WindowsLibraryLoader | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
6 |
Microsoft.VisualBasic.ApplicationServices.Globalization
| Type | Summary | Package | Members |
|---|---|---|---|
| LanguageAttribute | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 | |
| LanguageAttribute | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 | |
| LanguageHelper | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
8 | |
| LanguageHelper | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
8 | |
| StringResources | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 | |
| StringResources | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 |
Microsoft.VisualBasic.ApplicationServices.OSVersionInfo
| Type | Summary | Package | Members |
|---|---|---|---|
| WindowsNameList | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
40 | |
| WindowsNameList | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
40 |
Microsoft.VisualBasic.ApplicationServices.Plugin
| Type | Summary | Package | Members |
|---|---|---|---|
| FormattedDoubleConverter | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 | |
| FormattedDoubleConverter | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 | |
| Loader | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 | |
| Loader | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 |
Microsoft.VisualBasic.ApplicationServices.Terminal
| Type | Summary | Package | Members |
|---|---|---|---|
| AnsiColor | ANSI color definitions for the terminal. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
29 |
| AnsiColor | ANSI color definitions for the terminal. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
29 |
| AnsiEscapeCodes | https://en.wikipedia.org/wiki/ANSI_escape_code ANSI escape sequences are a standard for in-band signaling to control cursor location, color, font styling, and other options on… | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
20 |
| AnsiEscapeCodes | https://en.wikipedia.org/wiki/ANSI_escape_code ANSI escape sequences are a standard for in-band signaling to control cursor location, color, font styling, and other options on… | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
20 |
| BlockParser | The block level markdown parser: it splits the document into the block elements and then delegates the text of each block to the InlineParser or the TableRenderer. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
9 |
| BlockParser | The block level markdown parser: it splits the document into the block elements and then delegates the text of each block to the InlineParser or the TableRenderer. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
9 |
| ConsoleFormat | define the TextSpan.style for print on the console. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
19 |
| ConsoleFormat | define the TextSpan.style for print on the console. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
19 |
| HistoryStacks | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
12 | |
| HistoryStacks | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
12 | |
| InlineParser | The inline level markdown parser: it walks through one single line of text and then splits the line into a set of the styled text spans. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
11 |
| InlineParser | The inline level markdown parser: it walks through one single line of text and then splits the line into a set of the styled text spans. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
11 |
| InteractiveDevice | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
10 | |
| InteractiveDevice | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
10 | |
| MarkdownRender | A simple markdown render on console | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
11 |
| MarkdownRender | A simple markdown render on console | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
11 |
| MarkdownTheme | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
14 | |
| MarkdownTheme | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
14 | |
| PipelineCLI | a | b - 管道命令在读写方面更加适合于文本数据,由于省去了IO的时间,故而效率较高 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 |
| PipelineCLI | a | b - 管道命令在读写方面更加适合于文本数据,由于省去了IO的时间,故而效率较高 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 |
| PrintAsTable | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
8 | |
| PrintAsTable | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
8 | |
| Shell | Shell model for console. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
7 |
| Shell | Shell model for console. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
7 |
| STDIO | A standard input/output compatibility package that makes VisualBasic console program easily running on the Linux server or mac osx operating system. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
14 |
| STDIO | A standard input/output compatibility package that makes VisualBasic console program easily running on the Linux server or mac osx operating system. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
14 |
| TableRenderer | renders the pipe table block into a set of the plain text lines | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| TableRenderer | renders the pipe table block into a set of the plain text lines | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
| Terminal | Represents the standard input, output, and error streams for console applications. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
73 |
| Terminal | Represents the standard input, output, and error streams for console applications. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
73 |
| TerminalEvents | 这个终端事件会依赖于App.Running属性值来自动退出的 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 |
| TerminalEvents | 这个终端事件会依赖于App.Running属性值来自动退出的 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 |
| TextSpan | console print text with a specific styles | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
6 |
| TextSpan | console print text with a specific styles | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
6 |
Microsoft.VisualBasic.ApplicationServices.Terminal.LineEdit
| Type | Summary | Package | Members |
|---|---|---|---|
| Completion | Completion results returned by the completion handler. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 |
| Completion | Completion results returned by the completion handler. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 |
| HistoryType | Emulates the bash-like behavior, where edits done to the history are recorded | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
0 |
| HistoryType | Emulates the bash-like behavior, where edits done to the history are recorded | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
0 |
| LineEditor | Interactive line editor. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
12 |
| LineEditor | Interactive line editor. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
12 |
Microsoft.VisualBasic.ApplicationServices.Terminal.ProgressBar
| Type | Summary | Package | Members |
|---|---|---|---|
| AbstractBar | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 | |
| AbstractBar | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 | |
| AnimatedBar | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 | |
| AnimatedBar | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 | |
| ColorTheme | The ConsoleColor theme for the ProgressBar | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
7 |
| ColorTheme | The ConsoleColor theme for the ProgressBar | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
7 |
| Program | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 | |
| Program | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 | |
| SwayBar | 像乒乓球一样左右碰撞的进度条 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
7 |
| SwayBar | 像乒乓球一样左右碰撞的进度条 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
7 |
Microsoft.VisualBasic.ApplicationServices.Terminal.ProgressBar.ConsoleProgressBar
| Type | Summary | Package | Members |
|---|---|---|---|
| Element | An element of a ProgressBar | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
14 |
| Element | An element of a ProgressBar | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
14 |
| ElementList | A list of Elements of a ProgressBar | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| ElementList | A list of Elements of a ProgressBar | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
| Layout | Definition of a Layout for a ProgressBar representation | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
6 |
| Layout | Definition of a Layout for a ProgressBar representation | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
6 |
| ProgressBar | A ProgressBar for Console | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
37 |
| ProgressBar | A ProgressBar for Console | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
37 |
| Text | Definitions for Texts in a ProgressBar | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 |
| Text | Definitions for Texts in a ProgressBar | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 |
Microsoft.VisualBasic.ApplicationServices.Terminal.ProgressBar.ConsoleProgressBar.Extensions
| Type | Summary | Package | Members |
|---|---|---|---|
| ElementExtensions | Extensions for Element | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 |
| ElementExtensions | Extensions for Element | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 |
| StringExtensions | Extensions for String | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 |
| StringExtensions | Extensions for String | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 |
| TimeSpanExtensions | TimeSpan extensions | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 |
| TimeSpanExtensions | TimeSpan extensions | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 |
Microsoft.VisualBasic.ApplicationServices.Terminal.ProgressBar.ConsoleProgressBar.Layout
| Type | Summary | Package | Members |
|---|---|---|---|
| LayoutBody | Definition of the Layout used to Render the Body of the ProgressBar | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
10 |
| LayoutBody | Definition of the Layout used to Render the Body of the ProgressBar | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
10 |
| LayoutMargin | Definition of the Layout used to Render the Margins of the ProgressBar | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
12 |
| LayoutMargin | Definition of the Layout used to Render the Margins of the ProgressBar | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
12 |
| LayoutMarquee | Definition for the Marquee The Marquee is a char that moves around the ProgressBar | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
11 |
| LayoutMarquee | Definition for the Marquee The Marquee is a char that moves around the ProgressBar | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
11 |
Microsoft.VisualBasic.ApplicationServices.Terminal.ProgressBar.ConsoleProgressBar.Text
| Type | Summary | Package | Members |
|---|---|---|---|
| TextBody | Definition for the Texts in a ProgressBar | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
13 |
| TextBody | Definition for the Texts in a ProgressBar | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
13 |
| TextDescription | Definition for the Description lines in a ProgressBar | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
7 |
| TextDescription | Definition for the Description lines in a ProgressBar | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
7 |
Microsoft.VisualBasic.ApplicationServices.Terminal.ProgressBar.Tqdm
| Type | Summary | Package | Members |
|---|---|---|---|
| ProgressBar | The ProgressBar class offers a customizable console progress bar for tracking and displaying the progress of iterative tasks. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
18 |
| ProgressBar | The ProgressBar class offers a customizable console progress bar for tracking and displaying the progress of iterative tasks. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
18 |
| TqdmWrapper | The Tqdm class offers utility functions to wrap collections and enumerables with a ProgressBar, providing a simple and effective way to track and display progress in console appl… | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
12 |
| TqdmWrapper | The Tqdm class offers utility functions to wrap collections and enumerables with a ProgressBar, providing a simple and effective way to track and display progress in console appl… | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
12 |
Microsoft.VisualBasic.ApplicationServices.Terminal.STDIO__
| Type | Summary | Package | Members |
|---|---|---|---|
| IConsole | Represents the standard input, output, and error streams for console applications. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 |
| IConsole | Represents the standard input, output, and error streams for console applications. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 |
| IReadDevice | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 | |
| IReadDevice | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 | |
| IWriteDevice | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 | |
| IWriteDevice | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 | |
| Shell | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 | |
| Shell | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 |
Microsoft.VisualBasic.ApplicationServices.Terminal.TablePrinter
| Type | Summary | Package | Members |
|---|---|---|---|
| ConsoleTableBaseData | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 | |
| ConsoleTableBaseData | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 | |
| ConsoleTableBuilder | A fluent library to print out a nicely formatted table in a console application | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| ConsoleTableBuilder | A fluent library to print out a nicely formatted table in a console application | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
| ConsoleTableBuilderExtensions | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
24 | |
| ConsoleTableBuilderExtensions | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
24 |
Microsoft.VisualBasic.ApplicationServices.Terminal.TablePrinter.Flags
| Type | Summary | Package | Members |
|---|---|---|---|
| CharMapPositions | Check map here https://raw.githubusercontent.com/minhhungit/ConsoleTableExt/master/wiki/Images/CharMapPositions.png | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
15 |
| CharMapPositions | Check map here https://raw.githubusercontent.com/minhhungit/ConsoleTableExt/master/wiki/Images/CharMapPositions.png | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
15 |
| HeaderCharMapPositions | Check map here https://raw.githubusercontent.com/minhhungit/ConsoleTableExt/master/wiki/Images/HeaderCharMapPositions.png | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
11 |
| HeaderCharMapPositions | Check map here https://raw.githubusercontent.com/minhhungit/ConsoleTableExt/master/wiki/Images/HeaderCharMapPositions.png | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
11 |
Microsoft.VisualBasic.ApplicationServices.Terminal.TerminalEvents
| Type | Summary | Package | Members |
|---|---|---|---|
| AutoCompleteHandler | Method signature for auto completion handlers. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| AutoCompleteHandler | Method signature for auto completion handlers. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
Microsoft.VisualBasic.ApplicationServices.Terminal.Utility
| Type | Summary | Package | Members |
|---|---|---|---|
| CBusyIndicator | The console BusyIndicator | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| CBusyIndicator | The console BusyIndicator | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
| ConsolePasswordInput | Summary description for ConsolePasswordInput. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
7 |
| ConsolePasswordInput | Summary description for ConsolePasswordInput. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
7 |
| ConsoleUserTaskAction | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 | |
| ConsoleUserTaskAction | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 | |
| Constants | Constants used with PInvoke methods | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
6 |
| Constants | Constants used with PInvoke methods | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
6 |
| EventProc | Generates the task progress for the console output.(处理任务进度) | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
6 |
| EventProc | Generates the task progress for the console output.(处理任务进度) | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
6 |
| IndexedManual | 有显示标题的 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| IndexedManual | 有显示标题的 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
| KEY_EVENT_RECORD | ' The struct KEY_EVENT_RECORD is used to report keyboard input events ' in a console INPUT_RECORD structure. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
0 |
| KEY_EVENT_RECORD | ' The struct KEY_EVENT_RECORD is used to report keyboard input events ' in a console INPUT_RECORD structure. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
0 |
| ManIndex | the document index | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
6 |
| ManIndex | the document index | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
6 |
| ManParser | helper module for parse the unix man page text | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
0 |
| ManParser | helper module for parse the unix man page text | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
0 |
| ManualPages | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 | |
| ManualPages | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 | |
| uCharUnion | ' Struct uChar is meant to support the Windows Console API's uChar union. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
0 |
| uCharUnion | ' Struct uChar is meant to support the Windows Console API's uChar union. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
0 |
| UnixManPage | man手册页(manual pages,“手册”),是类UNIX系统最重要的手册工具。多数类UNIX都预装了它,这也包括Arch。使用man手册页的命令是:man。 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
21 |
| UnixManPage | man手册页(manual pages,“手册”),是类UNIX系统最重要的手册工具。多数类UNIX都预装了它,这也包括Arch。使用man手册页的命令是:man。 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
21 |
| UserTaskCancelAction | A finalize action after the user cancel current task operations.(ctrl + C) | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 |
| UserTaskCancelAction | A finalize action after the user cancel current task operations.(ctrl + C) | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 |
| UserTaskSaveAction | ctrl + S | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
0 |
| UserTaskSaveAction | ctrl + S | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
0 |
Microsoft.VisualBasic.ApplicationServices.Zip
| Type | Summary | Package | Members |
|---|---|---|---|
| ArchiveAction | Used to identify what we will do if we are trying to create a zip file and it already exists. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 |
| ArchiveAction | Used to identify what we will do if we are trying to create a zip file and it already exists. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 |
| Overwrite | Used to specify what our overwrite policy is for files we are extracting. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| Overwrite | Used to specify what our overwrite policy is for files we are extracting. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
| UnZip | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 | |
| UnZip | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 | |
| ZipLib | Creating Zip Files Easily in .NET 4.5 Tim Corey, 11 May 2012 http://www.codeproject.com/Articles/381661/Creating-Zip-Files-Easily-in-NET | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
9 |
| ZipLib | Creating Zip Files Easily in .NET 4.5 Tim Corey, 11 May 2012 http://www.codeproject.com/Articles/381661/Creating-Zip-Files-Easily-in-NET | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
9 |
| ZipStream | using a zip archive file as a virtual filesystem | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
22 |
| ZipStream | using a zip archive file as a virtual filesystem | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
22 |
| ZipStreamReader | zip file stream helper | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| ZipStreamReader | zip file stream helper | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
Microsoft.VisualBasic.CommandLine
| Type | Summary | Package | Members |
|---|---|---|---|
| CLIMapper | 从可写属性之中赋值 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| CLIMapper | 从可写属性之中赋值 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
| CliResCommon | CLI resources manager (将程序内部自身的资源数据释放到文件的帮助对象) | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| CliResCommon | CLI resources manager (将程序内部自身的资源数据释放到文件的帮助对象) | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
| CLITools | CLI parser and CommandLine object creates. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
17 |
| CLITools | CLI parser and CommandLine object creates. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
17 |
| CommandLine | A command line object that parse from the user input commandline string. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
61 |
| CommandLine | A command line object that parse from the user input commandline string. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
61 |
| ExecuteEmptyCLI | 假若所传入的命令行是空的,就会执行这个函数指针 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| ExecuteEmptyCLI | 假若所传入的命令行是空的,就会执行这个函数指针 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
| ExecuteFile | 假若所传入的命令行的name是文件路径,解释器就会执行这个函数指针 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| ExecuteFile | 假若所传入的命令行的name是文件路径,解释器就会执行这个函数指针 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
| ExecuteImpl | Executive implementation of Interpreter | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
0 |
| ExecuteImpl | Executive implementation of Interpreter | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
0 |
| ExecuteNotFound | 假若查找不到命令的话,执行这个函数 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| ExecuteNotFound | 假若查找不到命令的话,执行这个函数 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
| ExecuteQuery | Run query in syntax like: ? xxx | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| ExecuteQuery | Run query in syntax like: ? xxx | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
| GitBashEnvironment | Git bash environment helper module | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 |
| GitBashEnvironment | Git bash environment helper module | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 |
| Grouping | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 | |
| Grouping | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 | |
| IIORedirectAbstract | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
7 | |
| IIORedirectAbstract | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
7 | |
| InteractiveConsole | interactive console in /i mode, example: bash # This command will makes your CLI program enter # the interactive console mode. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 |
| InteractiveConsole | interactive console in /i mode, example: bash # This command will makes your CLI program enter # the interactive console mode. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 |
| Interpreter | Command line interpreter for your CLI program. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
49 |
| Interpreter | Command line interpreter for your CLI program. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
49 |
| IORedirect | A communication fundation class type for the commandline program interop. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
31 |
| IORedirect | A communication fundation class type for the commandline program interop. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
31 |
| IORedirectFile | Using this class object rather than IORedirect is more encouraged. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
15 |
| IORedirectFile | Using this class object rather than IORedirect is more encouraged. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
15 |
| PipelineProcess | How to found the process by CLI | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
10 |
| PipelineProcess | How to found the process by CLI | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
10 |
| ProcessExitCallback | A function pointer for process the events when the target invoked child process was terminated and exit. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| ProcessExitCallback | A function pointer for process the events when the target invoked child process was terminated and exit. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
| StreamExtensions | + file path: C://path/to/file + standard input: std_in:// + standard output: std_out:// + memory mapping file: memory://file/uri | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| StreamExtensions | + file path: C://path/to/file + standard input: std_in:// + standard output: std_out:// + memory mapping file: memory://file/uri | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
Microsoft.VisualBasic.CommandLine.Grouping
Microsoft.VisualBasic.CommandLine.InteropService
| Type | Summary | Package | Members |
|---|---|---|---|
| AppDriver | 应用程序的执行驱动抽象接口, 这个抽象接口是为了兼容命令行应用和Docker环境下的命令行应用而设置的 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 |
| AppDriver | 应用程序的执行驱动抽象接口, 这个抽象接口是为了兼容命令行应用和Docker环境下的命令行应用而设置的 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 |
| CLIAbstractor | 将函数的定义抽象为一个命令行,从而能够提供更好的命令行编写服务 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 |
| CLIAbstractor | 将函数的定义抽象为一个命令行,从而能够提供更好的命令行编写服务 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 |
| CLIBuildMethod | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
12 | |
| CLIBuildMethod | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
12 | |
| InCompatibleAttribute | 这个CLI方法是和.NET的Process调用不兼容的 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 |
| InCompatibleAttribute | 这个CLI方法是和.NET的Process调用不兼容的 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 |
| InteropService | The class object which can interact with the target commandline program. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
15 |
| InteropService | The class object which can interact with the target commandline program. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
15 |
Microsoft.VisualBasic.CommandLine.InteropService.CLIBuildMethod
Microsoft.VisualBasic.CommandLine.InteropService.Pipeline
| Type | Summary | Package | Members |
|---|---|---|---|
| RunSlavePipeline | wrapper for run a background task process | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
19 |
| RunSlavePipeline | wrapper for run a background task process | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
19 |
Microsoft.VisualBasic.CommandLine.ManView
| Type | Summary | Package | Members |
|---|---|---|---|
| CommandHelpExtensions | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 | |
| CommandHelpExtensions | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 | |
| ExceptionHelp | Defines the url or e-mail information for the exceptions. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 |
| ExceptionHelp | Defines the url or e-mail information for the exceptions. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 |
| ManualBuilder | 用来生成帮助信息 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 |
| ManualBuilder | 用来生成帮助信息 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 |
| SDKManual | Generates the help document in markdown format. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 |
| SDKManual | Generates the help document in markdown format. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 |
Microsoft.VisualBasic.CommandLine.Parsers
| Type | Summary | Package | Members |
|---|---|---|---|
| CliArgumentParsers | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 | |
| CliArgumentParsers | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 | |
| CLIParser | 命令行单词解析器 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| CLIParser | 命令行单词解析器 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
| DictionaryParser | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 | |
| DictionaryParser | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 |
Microsoft.VisualBasic.CommandLine.Reflection
| Type | Summary | Package | Members |
|---|---|---|---|
| ActiveViewsAttribute | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 | |
| ActiveViewsAttribute | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 | |
| ArgumentAttribute | Use for the detail description for a specific commandline switch.(用于对某一个命令的开关参数的具体描述帮助信息) | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
14 |
| ArgumentAttribute | Use for the detail description for a specific commandline switch.(用于对某一个命令的开关参数的具体描述帮助信息) | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
14 |
| ArgumentCollection | The help information for a specific command line parameter switch.(某一个指定的命令的开关的帮助信息) | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
8 |
| ArgumentCollection | The help information for a specific command line parameter switch.(某一个指定的命令的开关的帮助信息) | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
8 |
| Argv | 可以将这个自定义属性添加到类型的属性上面,添加额外的命名以及类型之类的标记 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 |
| Argv | 可以将这个自定义属性添加到类型的属性上面,添加额外的命名以及类型之类的标记 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 |
| CLIToken | A very basically type in the CommandLine | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| CLIToken | A very basically type in the CommandLine | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
| CLITypes | The data type enumeration of the target optional parameter switch. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
14 |
| CLITypes | The data type enumeration of the target optional parameter switch. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
14 |
| ExportAPIAttribute | A command object that with a specific name. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| ExportAPIAttribute | A command object that with a specific name. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
| ExportApiInformation | Data reader and view for ExportAPIAttribute | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
6 |
| ExportApiInformation | Data reader and view for ExportAPIAttribute | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
6 |
| ExportApiModel | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 | |
| ExportApiModel | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 | |
| GroupAttribute | 应用于方法之上的,标注当前的这个方法的功能分组 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
0 |
| GroupAttribute | 应用于方法之上的,标注当前的这个方法的功能分组 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
0 |
| GroupingDefineAttribute | 应用于命令行类型容器之上的,用于功能分组的详细描述信息 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 |
| GroupingDefineAttribute | 应用于命令行类型容器之上的,用于功能分组的详细描述信息 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 |
| IExportAPI | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 | |
| IExportAPI | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 | |
| LastUpdatedAttribute | 主要是用于帮助标记命令行命令的更新时间,了解哪些命令可能是已经过时了的 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 |
| LastUpdatedAttribute | 主要是用于帮助标记命令行命令的更新时间,了解哪些命令可能是已经过时了的 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 |
| Namespace | (CommandLine interpreter executation Entry and the ShellScript software packages namespace.)这是一个命令行解释器所使用的执行入口点的集合 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
7 |
| Namespace | (CommandLine interpreter executation Entry and the ShellScript software packages namespace.)这是一个命令行解释器所使用的执行入口点的集合 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
7 |
| NoteAttribute | 这个自定义属性与DescriptionAttribute的使用类似 只不过DescriptionAttribute是针对命令的简单说明 以及描述 这个自定义属性是针对命令内的某些注意事项的更加详细的描述,默认是不显示的 会在man模式下被显示出来 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 |
| NoteAttribute | 这个自定义属性与DescriptionAttribute的使用类似 只不过DescriptionAttribute是针对命令的简单说明 以及描述 这个自定义属性是针对命令内的某些注意事项的更加详细的描述,默认是不显示的 会在man模式下被显示出来 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 |
| OutputAttribute | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 | |
| OutputAttribute | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 | |
| PipelineTypes | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 | |
| PipelineTypes | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 | |
| Prefix | 这个自定义属性添加在Class申明上表示该class类的命令行参数的名称都会添加这个prefix | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 |
| Prefix | 这个自定义属性添加在Class申明上表示该class类的命令行参数的名称都会添加这个prefix | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 |
| RunDllEntryPoint | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 | |
| RunDllEntryPoint | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 |
Microsoft.VisualBasic.CommandLine.Reflection.EntryPoints
| Type | Summary | Package | Members |
|---|---|---|---|
| APIDelegate | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
9 | |
| APIDelegate | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
9 | |
| APIEntryPoint | The entry point data of the commands in the command line which was original loaded from the source meta data in the compiled target. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
13 |
| APIEntryPoint | The entry point data of the commands in the command line which was original loaded from the source meta data in the compiled target. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
13 |
Microsoft.VisualBasic.ComponentModel
| Type | Summary | Package | Members |
|---|---|---|---|
| Binding | Functioning the same as the KeyValuePair, but with more specific on the name. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
9 |
| Binding | Functioning the same as the KeyValuePair, but with more specific on the name. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
9 |
| BitSet | A replacement for BitArray.(BitSet in java) | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
46 |
| BitSet | A replacement for BitArray.(BitSet in java) | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
46 |
| Counter | The object counter | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
10 |
| Counter | The object counter | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
10 |
| CounterExtensions | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 | |
| CounterExtensions | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 | |
| DigitalSignature | helper for parse the .NET CLR type metadata inside a xml file content which is generated by XmlDataModel | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| DigitalSignature | helper for parse the .NET CLR type metadata inside a xml file content which is generated by XmlDataModel | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
| HashHandle | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
10 | |
| HashHandle | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
10 | |
| HashList | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
15 | |
| HashList | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
15 | |
| IAddress | This object gets a object handle value to indicated that the position this object exists in the list collection structure. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 |
| IAddress | This object gets a object handle value to indicated that the position this object exists in the list collection structure. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 |
| IAddressOf | This object gets a object handle value to indicated that the position this object exists in the list collection structure. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
0 |
| IAddressOf | This object gets a object handle value to indicated that the position this object exists in the list collection structure. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
0 |
| IDMap | 字符串类型的映射 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
7 |
| IDMap | 字符串类型的映射 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
7 |
| IFileReference | 表示一个对文件的引用接口 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 |
| IFileReference | 表示一个对文件的引用接口 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 |
| IIndexOf | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 | |
| IIndexOf | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 | |
| IOWorkModes | 'IOWorkModes' is only used to determine whether to return data length or capacity from the 'limit' method: | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 |
| IOWorkModes | 'IOWorkModes' is only used to determine whether to return data length or capacity from the 'limit' method: | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 |
| ISaveHandle | This is a file object which have a handle to save its data to the filesystem. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 |
| ISaveHandle | This is a file object which have a handle to save its data to the filesystem. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 |
| ITaskDriver | Driver abstract model | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 |
| ITaskDriver | Driver abstract model | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 |
| ITextWriter | TextWriter | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 |
| ITextWriter | TextWriter | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 |
| Lazy | The layze loader. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
6 |
| Lazy | The layze loader. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
6 |
| LazyLoader | 当所需要进行加载的数据的量非常大的时候,则可以使用本方法进行延时按需加载 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 |
| LazyLoader | 当所需要进行加载的数据的量非常大的时候,则可以使用本方法进行延时按需加载 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 |
| LinkNode | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 | |
| LinkNode | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 | |
| Map | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 | |
| Map | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 | |
| MapsHelper | 其实这个对象就是字典查询的一个简化操作而已 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 |
| MapsHelper | 其实这个对象就是字典查询的一个简化操作而已 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 |
| NameMapping | 将文件之中的字段名称映射为另一个名称的帮助模块 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 |
| NameMapping | 将文件之中的字段名称映射为另一个名称的帮助模块 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 |
| RelayCommand | Taken from http://msdn.microsoft.com/en-us/magazine/dd419663.aspx | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| RelayCommand | Taken from http://msdn.microsoft.com/en-us/magazine/dd419663.aspx | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
| TimeInterval | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
9 | |
| TimeInterval | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
9 | |
| Uid | The unique id generator. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
17 |
| Uid | The unique id generator. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
17 |
| XmlDataModel | 这个基类型对象主要是用来生成类型全称注释方便编写XML文件加载代码功能的 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 |
| XmlDataModel | 这个基类型对象主要是用来生成类型全称注释方便编写XML文件加载代码功能的 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 |
Microsoft.VisualBasic.ComponentModel.Algorithm
| Type | Summary | Package | Members |
|---|---|---|---|
| BinarySearchFunction | 精确查找某一个对象 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| BinarySearchFunction | 精确查找某一个对象 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
| Block | a data index block with boundary range for matches | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 |
| Block | a data index block with boundary range for matches | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 |
| BlockSearchFunction | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
9 | |
| BlockSearchFunction | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
9 | |
| QuickSortFunction | 快速排序基本上被认为是相同数量级的所有排序算法中,平均性能最好的。 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 |
| QuickSortFunction | 快速排序基本上被认为是相同数量级的所有排序算法中,平均性能最好的。 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 |
Microsoft.VisualBasic.ComponentModel.Algorithm.base
| Type | Summary | Package | Members |
|---|---|---|---|
| CartesianProduct | 笛卡尔积是集合论中的一个基本概念,它描述了如何从两个或多个集合中生成所有可能的有序组合。 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 |
| CartesianProduct | 笛卡尔积是集合论中的一个基本概念,它描述了如何从两个或多个集合中生成所有可能的有序组合。 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 |
| Comb | 对象类型的组合输出工具,即目标类型的集合之中的元素两两组合配对 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
8 |
| Comb | 对象类型的组合输出工具,即目标类型的集合之中的元素两两组合配对 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
8 |
| Combination | https://github.com/coderespawn/permutations | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
0 |
| Combination | https://github.com/coderespawn/permutations | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
0 |
| CombinationExtensions | 任意多个集合之间的对象之间相互组成组合输出 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 |
| CombinationExtensions | 任意多个集合之间的对象之间相互组成组合输出 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 |
| DistanceMap | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 | |
| DistanceMap | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 | |
| NDimensionCartesianProduct | Create a vs b vs c ... | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 |
| NDimensionCartesianProduct | Create a vs b vs c ... | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 |
| SlideWindow | A slide window data model.(滑窗操作的数据模型) | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
8 |
| SlideWindow | A slide window data model.(滑窗操作的数据模型) | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
8 |
| SlideWindowExtensions | Create a collection of slide Windows data for the target collection object. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 |
| SlideWindowExtensions | Create a collection of slide Windows data for the target collection object. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 |
Microsoft.VisualBasic.ComponentModel.Algorithm.BinaryTree
| Type | Summary | Package | Members |
|---|---|---|---|
| AVLClusterTree | A binary tree model for do data clustering | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
6 |
| AVLClusterTree | A binary tree model for do data clustering | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
6 |
| AVLSupports | Binary tree balance helper | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 |
| AVLSupports | Binary tree balance helper | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 |
| AVLTree | The AVL binary tree operator. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 |
| AVLTree | The AVL binary tree operator. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 |
| BinaryTree | The binary tree node. (如果执行的是聚类操作的话,可以通过!values字典属性来获取簇的结果) 在这里只是二叉树的节点实现,具体的二叉树构建可以通过使用下面的算法来完成: + AVLTree | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
13 |
| BinaryTree | The binary tree node. (如果执行的是聚类操作的话,可以通过!values字典属性来获取簇的结果) 在这里只是二叉树的节点实现,具体的二叉树构建可以通过使用下面的算法来完成: + AVLTree | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
13 |
| ClusterKey | wrapper for the cluster data | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
7 |
| ClusterKey | wrapper for the cluster data | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
7 |
| DelegateTreeInsertCallback | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
8 | |
| DelegateTreeInsertCallback | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
8 | |
| Enumerable | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
7 | |
| Enumerable | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
7 | |
| Extensions | Help methods for the binary tree operations | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
8 |
| Extensions | Help methods for the binary tree operations | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
8 |
| Iterator | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
9 | |
| Iterator | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
9 | |
| NaiveBinaryTree | The Binary tree itself. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
10 |
| NaiveBinaryTree | The Binary tree itself. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
10 |
| RBNode | 与键名所对应的数据是存储在BinaryTree.Value之中的 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| RBNode | 与键名所对应的数据是存储在BinaryTree.Value之中的 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
| RBTree | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
12 | |
| RBTree | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
12 | |
| TreeBase | 二叉树对象的通用模板 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 |
| TreeBase | 二叉树对象的通用模板 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 |
Microsoft.VisualBasic.ComponentModel.Algorithm.DynamicProgramming
| Type | Summary | Package | Members |
|---|---|---|---|
| LongestCommonSubsequence | Longest Common Subsequence | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
6 |
| LongestCommonSubsequence | Longest Common Subsequence | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
6 |
| LongestCommonSubsequenceExtension | Longest Common Subsequence | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 |
| LongestCommonSubsequenceExtension | Longest Common Subsequence | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 |
| SCS | shortest_common_superstring | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| SCS | shortest_common_superstring | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
Microsoft.VisualBasic.ComponentModel.Algorithm.DynamicProgramming.Levenshtein
| Type | Summary | Package | Members |
|---|---|---|---|
| DistResult | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
14 | |
| DistResult | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
14 | |
| LevenshteinDistance | Levenshtein Edit Distance Algorithm for measure string distance | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
10 |
| LevenshteinDistance | Levenshtein Edit Distance Algorithm for measure string distance | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
10 |
| ResultVisualize | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 | |
| ResultVisualize | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 |
Microsoft.VisualBasic.ComponentModel.Collection
| Type | Summary | Package | Members |
|---|---|---|---|
| BinaryHeap | Binary heap implementation from: > http://eloquentjavascript.net/appendix2.html | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
7 |
| BinaryHeap | Binary heap implementation from: > http://eloquentjavascript.net/appendix2.html | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
7 |
| BinaryPriorityQueue | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
14 | |
| BinaryPriorityQueue | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
14 | |
| BucketDictionary | An ultralarge size dictionary object. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
9 |
| BucketDictionary | An ultralarge size dictionary object. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
9 |
| BucketDictionaryExtensions | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 | |
| BucketDictionaryExtensions | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 | |
| CapacityQueue | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
7 | |
| CapacityQueue | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
7 | |
| CircularBuffer | Represents a fixed-capacity circular buffer (or ring list). | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
12 |
| CircularBuffer | Represents a fixed-capacity circular buffer (or ring list). | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
12 |
| Dictionary | Represents a collection of keys and values.To browse the .NET Framework source code for this type, see the Reference Source. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
22 |
| Dictionary | Represents a collection of keys and values.To browse the .NET Framework source code for this type, see the Reference Source. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
22 |
| FuzzyGroup | 对数据进行分组,通过标签数据的相似度 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 |
| FuzzyGroup | 对数据进行分组,通过标签数据的相似度 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 |
| IBucketVector | clr interface for implements the as.vector function in R# language | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 |
| IBucketVector | clr interface for implements the as.vector function in R# language | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 |
| Index | Mappings of key As String -> index As Integer | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
39 |
| Index | Mappings of key As String -> index As Integer | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
39 |
| KeyValuePairExtensions | KeyValue pair data related extensions API. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
80 |
| KeyValuePairExtensions | KeyValue pair data related extensions API. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
80 |
| MatrixExtensions | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
20 | |
| MatrixExtensions | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
20 | |
| PairingHeap | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
18 | |
| PairingHeap | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
18 | |
| PriorityQueue | a min priority queue backed by a pairing heap | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
16 |
| PriorityQueue | a min priority queue backed by a pairing heap | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
16 |
| RectangularArray | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
9 | |
| RectangularArray | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
9 | |
| RewindableEnumerator | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 | |
| RewindableEnumerator | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 |
Microsoft.VisualBasic.ComponentModel.Collection.Deque
| Type | Summary | Package | Members |
|---|---|---|---|
| Data | contains actuall data od deque, Deque(Of T) provides abstraction above this data | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
23 |
| Data | contains actuall data od deque, Deque(Of T) provides abstraction above this data | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
23 |
| Deque | Double ended queue implementation | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
23 |
| Deque | Double ended queue implementation | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
23 |
| Enumerator | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 | |
| Enumerator | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 | |
| ReversedEnumerator | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 | |
| ReversedEnumerator | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 | |
| ReverseQueue | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
19 | |
| ReverseQueue | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
19 |
Microsoft.VisualBasic.ComponentModel.Collection.FuzzyGroup
| Type | Summary | Package | Members |
|---|---|---|---|
| __groupHelper | 分组操作的内部帮助类 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 |
| __groupHelper | 分组操作的内部帮助类 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 |
Microsoft.VisualBasic.ComponentModel.Collection.Generic
| Type | Summary | Package | Members |
|---|---|---|---|
| BucketSet | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
9 | |
| BucketSet | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
9 | |
| HashDictionary | The key of the dictionary is string value and the keys is not sensitive to the character case. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
17 |
| HashDictionary | The key of the dictionary is string value and the keys is not sensitive to the character case. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
17 |
| IKeyValuePairObject | Defines a key/value pair that can be set or retrieved. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 |
| IKeyValuePairObject | Defines a key/value pair that can be set or retrieved. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 |
| INamedValue | This type of object have a IKeyedEntity.Key property to unique identified itself in a collection. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
0 |
| INamedValue | This type of object have a IKeyedEntity.Key property to unique identified itself in a collection. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
0 |
| IReadOnlyDataSource | Defines a key/value pair that only can be retrieved. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 |
| IReadOnlyDataSource | Defines a key/value pair that only can be retrieved. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 |
| IReadOnlyId | 与INamedValue所不同的是,这个对象的标识属性是只读的. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 |
| IReadOnlyId | 与INamedValue所不同的是,这个对象的标识属性是只读的. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 |
| ISequenceData | The sequence analysis data model, example as biological sequence, time signal, time sequence anaysis | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 |
| ISequenceData | The sequence analysis data model, example as biological sequence, time signal, time sequence anaysis | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 |
| KeyValuePairObject | Defines a key/value pair that can be set or retrieved. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 |
| KeyValuePairObject | Defines a key/value pair that can be set or retrieved. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 |
| NamedValueList | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 | |
| NamedValueList | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 |
Microsoft.VisualBasic.ComponentModel.DataSourceModel
| Type | Summary | Package | Members |
|---|---|---|---|
| DataFramework | 在目标对象中必须要具有一个属性有自定义属性DataFrameColumnAttribute | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
27 |
| DataFramework | 在目标对象中必须要具有一个属性有自定义属性DataFrameColumnAttribute | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
27 |
| DataIgnoredAttribute | 在数据框数据映射操作之中是否忽略掉这个属性或者方法? | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
0 |
| DataIgnoredAttribute | 在数据框数据映射操作之中是否忽略掉这个属性或者方法? | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
0 |
| DefaultAttribute | Property default value | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| DefaultAttribute | Property default value | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
| DynamicMetadataAttribute | just used for tagged on the DynamicPropertyBase.Properties property | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| DynamicMetadataAttribute | just used for tagged on the DynamicPropertyBase.Properties property | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
| DynamicPropertyBase | This abstract object has a DynamicPropertyBase.propertyTable dictionary keeps as a dynamics property source. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
17 |
| DynamicPropertyBase | This abstract object has a DynamicPropertyBase.propertyTable dictionary keeps as a dynamics property source. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
17 |
| Extensions | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 | |
| Extensions | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 | |
| IDynamicMeta | Abstracts for the dynamics property. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 |
| IDynamicMeta | Abstracts for the dynamics property. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 |
| IDynamicsObject | Apply for R# object cast .NET CLR object to list | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 |
| IDynamicsObject | Apply for R# object cast .NET CLR object to list | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 |
| ILabeledMatrix | dataframe helper | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 |
| ILabeledMatrix | dataframe helper | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 |
| IProperty | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 | |
| IProperty | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 | |
| IStringGetter | a simple helper object for get string value | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
6 |
| IStringGetter | a simple helper object for get string value | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
6 |
| Iterator | Implements for the IEnumerable, Supports a simple iteration over a non-generic collection. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
7 |
| Iterator | Implements for the IEnumerable, Supports a simple iteration over a non-generic collection. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
7 |
| Iterator | 在Iterator的基础之上所构建出来的一个泛型化的迭代器对象. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 |
| Iterator | 在Iterator的基础之上所构建出来的一个泛型化的迭代器对象. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 |
| NamedCollection | The value object collection that have a name string, using NamedVector for XML serialization instead of using this data model. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
16 |
| NamedCollection | The value object collection that have a name string, using NamedVector for XML serialization instead of using this data model. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
16 |
| NamedValue | The value object have a name string. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
15 |
| NamedValue | The value object have a name string. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
15 |
| Projector | Class field reader | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| Projector | Class field reader | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
| Property | Dictionary for [String, T] | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 |
| Property | Dictionary for [String, T] | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 |
| PropertyAccess | the data access | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
8 |
| PropertyAccess | the data access | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
8 |
| PropertyValue | The PropertyInfo like definition of the extension property. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
13 |
| PropertyValue | The PropertyInfo like definition of the extension property. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
13 |
| ScriptIgnoreAttribute | 用于与.NET Framework之中的ScriptIgnore属性标记兼容的一个对象 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
0 |
| ScriptIgnoreAttribute | 用于与.NET Framework之中的ScriptIgnore属性标记兼容的一个对象 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
0 |
| StringReader | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
17 | |
| StringReader | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
17 | |
| TsvFileIO | 将文件读取出来然后对每一行数据进行分割,由于没有使用自定义属性来标记列的名称,所以这个很简单的tsv加载器要求属性的名称与列名称要完全一致。 而且,还不能够为非初始数据类型,这个模块之中提供了简单的数据类型转换操作,这个只是一个简单的内置TSv文件读取模块 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
8 |
| TsvFileIO | 将文件读取出来然后对每一行数据进行分割,由于没有使用自定义属性来标记列的名称,所以这个很简单的tsv加载器要求属性的名称与列名称要完全一致。 而且,还不能够为非初始数据类型,这个模块之中提供了简单的数据类型转换操作,这个只是一个简单的内置TSv文件读取模块 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
8 |
Microsoft.VisualBasic.ComponentModel.DataSourceModel.Repository
| Type | Summary | Package | Members |
|---|---|---|---|
| BloomFilter | 提供布隆过滤器的实现。 布隆过滤器是一种空间效率很高的概率型数据结构,用于判断一个元素是否在集合中。 它允许一定的假阳性,但绝不允许假阴性。 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
15 |
| BloomFilter | 提供布隆过滤器的实现。 布隆过滤器是一种空间效率很高的概率型数据结构,用于判断一个元素是否在集合中。 它允许一定的假阳性,但绝不允许假阴性。 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
15 |
| ClientRecord | Record for storing a client record in the common database | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 |
| ClientRecord | Record for storing a client record in the common database | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 |
| CuckooFilter | 提供布谷鸟过滤器的实现。 布谷鸟过滤器是一种基于布谷鸟哈希的紧凑型概率数据结构,支持插入、删除和成员查询。 相比布隆过滤器,它支持动态删除元素,且在中等假阳性率下通常具有更高的空间效率。 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
13 |
| CuckooFilter | 提供布谷鸟过滤器的实现。 布谷鸟过滤器是一种基于布谷鸟哈希的紧凑型概率数据结构,支持插入、删除和成员查询。 相比布隆过滤器,它支持动态删除元素,且在中等假阳性率下通常具有更高的空间效率。 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
13 |
| IKeyedEntity | Interface defining any item we can store in a repository and can identify by an unique key | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 |
| IKeyedEntity | Interface defining any item we can store in a repository and can identify by an unique key | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 |
| IKeyIndex | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 | |
| IKeyIndex | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 | |
| ILocalSearchHandle | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 | |
| ILocalSearchHandle | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 | |
| IMatched | The object implements on this interface can be matched with some rules. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 |
| IMatched | The object implements on this interface can be matched with some rules. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 |
| InMemoryDb | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
6 | |
| InMemoryDb | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
6 | |
| IRepository | Read/write repository of typed entites | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
0 |
| IRepository | Read/write repository of typed entites | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
0 |
| IRepositoryRead | Interface to support reading entities from the backing store | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 |
| IRepositoryRead | Interface to support reading entities from the backing store | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 |
| IRepositoryWrite | Interface to support writing (and deletes) to a typed repository | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| IRepositoryWrite | Interface to support writing (and deletes) to a typed repository | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
| QGramFullText | 基于Qgram的全文索引 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| QGramFullText | 基于Qgram的全文索引 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
| QGramIndex | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
10 | |
| QGramIndex | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
10 | |
| QueryCacheFactory | 这个库检索模型仅建议在目标数据量非常巨大的时候使用,如果数据量比较小,可以直接保存在一个文件之中,然后一次性加载在内存之中来进行查找 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
7 |
| QueryCacheFactory | 这个库检索模型仅建议在目标数据量非常巨大的时候使用,如果数据量比较小,可以直接保存在一个文件之中,然后一次性加载在内存之中来进行查找 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
7 |
| RepositoryReadException | An exception that occured when reading from the repository backing store | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 |
| RepositoryReadException | An exception that occured when reading from the repository backing store | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 |
| SearchFramework | Extensions for data query | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
8 |
| SearchFramework | Extensions for data query | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
8 |
| SimHashIndex | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
11 | |
| SimHashIndex | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
11 | |
| StringTemplate | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
8 | |
| StringTemplate | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
8 |
Microsoft.VisualBasic.ComponentModel.DataSourceModel.SchemaMaps
| Type | Summary | Package | Members |
|---|---|---|---|
| Bind | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
6 | |
| Bind | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
6 | |
| BindProperty | Schema for Attribute and its bind PropertyInfo/FieldInfo object target. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
10 |
| BindProperty | Schema for Attribute and its bind PropertyInfo/FieldInfo object target. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
10 |
| ColumnAttribute | field data mapping | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| ColumnAttribute | field data mapping | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
| DataFrameColumnAttribute | Represents a column of certain data frames. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
16 |
| DataFrameColumnAttribute | Represents a column of certain data frames. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
16 |
| DataFrameIO | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 | |
| DataFrameIO | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 | |
| Field | DataFrameColumnAttribute属性的别称 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 |
| Field | DataFrameColumnAttribute属性的别称 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 |
| Mappings | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
13 | |
| Mappings | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
13 | |
| Schema | Schema for two dimension table. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
7 |
| Schema | Schema for two dimension table. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
7 |
| SoapGraph | object schema provider for json/xml | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
21 |
| SoapGraph | object schema provider for json/xml | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
21 |
| SQLTable | A generic abstract model of a SQL table. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
6 |
| SQLTable | A generic abstract model of a SQL table. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
6 |
Microsoft.VisualBasic.ComponentModel.DataSourceModel.TypeCast
| Type | Summary | Package | Members |
|---|---|---|---|
| DataImports | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 | |
| DataImports | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 | |
| Extensions | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 | |
| Extensions | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 | |
| TypeCaster | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
6 | |
| TypeCaster | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
6 |
Microsoft.VisualBasic.ComponentModel.DataStructures
| Type | Summary | Package | Members |
|---|---|---|---|
| EnumSet | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 | |
| EnumSet | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 | |
| LoopArray | Infinite loop iterates of the target element collection. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
13 |
| LoopArray | Infinite loop iterates of the target element collection. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
13 |
| Pointer | 进行集合之中的元素的取出操作的帮助类 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 |
| Pointer | 进行集合之中的元素的取出操作的帮助类 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 |
| Set | Represents an unordered grouping of unique hetrogenous members. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
25 |
| Set | Represents an unordered grouping of unique hetrogenous members. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
25 |
| SetAPI | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 | |
| SetAPI | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 | |
| SetsExtension | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
12 | |
| SetsExtension | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
12 | |
| StringSet | A string set collection object. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 |
| StringSet | A string set collection object. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 |
Microsoft.VisualBasic.ComponentModel.DataStructures.BinaryTree
| Type | Summary | Package | Members |
|---|---|---|---|
| Extensions | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 | |
| Extensions | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 | |
| TreeNode | Define tree nodes | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
16 |
| TreeNode | Define tree nodes | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
16 |
Microsoft.VisualBasic.ComponentModel.DataStructures.Tree
| Type | Summary | Package | Members |
|---|---|---|---|
| ITreeNodeData | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 | |
| ITreeNodeData | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 | |
| TreeNodeBase | Generic Tree Node base class | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
16 |
| TreeNodeBase | Generic Tree Node base class | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
16 |
| TreeTools | extension method tools for abstract tree model | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 |
| TreeTools | extension method tools for abstract tree model | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 |
Microsoft.VisualBasic.ComponentModel.Map`2
Microsoft.VisualBasic.ComponentModel.Ranges
| Type | Summary | Package | Members |
|---|---|---|---|
| Extensions | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
7 | |
| Extensions | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
7 | |
| IndexSelector | A numeric index helper | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 |
| IndexSelector | A numeric index helper | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 |
| NumericTagged | Almost equals to DoubleTagged, but this object is a structure type. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
6 |
| NumericTagged | Almost equals to DoubleTagged, but this object is a structure type. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
6 |
| OrderSelector | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
16 | |
| OrderSelector | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
16 | |
| Relations | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
8 | |
| Relations | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
8 |
Microsoft.VisualBasic.ComponentModel.Ranges.Model
| Type | Summary | Package | Members |
|---|---|---|---|
| DoubleRange | Represents a double range with minimum and maximum values | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
27 |
| DoubleRange | Represents a double range with minimum and maximum values | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
27 |
| IntRange | Represents an Int32 range with minimum and maximum values | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
14 |
| IntRange | Represents an Int32 range with minimum and maximum values | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
14 |
| IRange | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 | |
| IRange | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 | |
| IRangeModel | Represents a generic range with minimum and maximum values | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| IRangeModel | Represents a generic range with minimum and maximum values | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
Microsoft.VisualBasic.ComponentModel.Ranges.Unit
| Type | Summary | Package | Members |
|---|---|---|---|
| ByteSize | the unit for binary data file size | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
7 |
| ByteSize | the unit for binary data file size | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
7 |
| ParserExtensions | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 | |
| ParserExtensions | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 | |
| UnitValue | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
21 | |
| UnitValue | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
21 |
Microsoft.VisualBasic.ComponentModel.Ranges.Unit.Convertor
Microsoft.VisualBasic.ComponentModel.Settings
| Type | Summary | Package | Members |
|---|---|---|---|
| BindMapping | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
9 | |
| BindMapping | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
9 | |
| ConfigEngine | 只包含有对数据映射目标对象的属性读写,并不包含有文件数据的读写操作 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
15 |
| ConfigEngine | 只包含有对数据映射目标对象的属性读写,并不包含有文件数据的读写操作 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
15 |
| IniExtensions | 读写Ini文件的拓展 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 |
| IniExtensions | 读写Ini文件的拓展 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 |
| IProfile | 具备有保存数据功能的可配置数据文件的基本定义 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 |
| IProfile | 具备有保存数据功能的可配置数据文件的基本定义 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 |
| ProfileItem | The simple configuration mapping node in the current profile data, the data type of this node object should be just the simplest data type such as String, Integer, Long, Double,… | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 |
| ProfileItem | The simple configuration mapping node in the current profile data, the data type of this node object should be just the simplest data type such as String, Integer, Long, Double,… | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 |
| ProfileNodeItem | 当前的配置节点为一个复杂数据类型的配置节点,即目标属性的属性类型为一个Class对象 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
0 |
| ProfileNodeItem | 当前的配置节点为一个复杂数据类型的配置节点,即目标属性的属性类型为一个Class对象 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
0 |
| Settings | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
6 | |
| Settings | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
6 | |
| SimpleConfig | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
7 | |
| SimpleConfig | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
7 | |
| ValueTypes | 这个并不是指宿主属性的数据类型,而是指代这一数据类型所代表的具体的实际对象 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
10 |
| ValueTypes | 这个并不是指宿主属性的数据类型,而是指代这一数据类型所代表的具体的实际对象 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
10 |
Microsoft.VisualBasic.ComponentModel.Settings.Inf
| Type | Summary | Package | Members |
|---|---|---|---|
| ClassMapper | 使用这个属性来标记需要进行序列化的对象属性: DataFrameColumnAttribute | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
12 |
| ClassMapper | 使用这个属性来标记需要进行序列化的对象属性: DataFrameColumnAttribute | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
12 |
| ClassName | define a single section inside a ini configuration file | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| ClassName | define a single section inside a ini configuration file | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
| IniFile | Ini file I/O handler | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
19 |
| IniFile | Ini file I/O handler | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
19 |
| IniMapIO | The path parameter can be shortcut by method PathMapper.GetMapPath()). | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| IniMapIO | The path parameter can be shortcut by method PathMapper.GetMapPath()). | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
| INIProfile | Wrapper class for *.ini and *.inf configure file. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
6 |
| INIProfile | Wrapper class for *.ini and *.inf configure file. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
6 |
| IOProvider | 在这个模块之中提供了.NET对象与*.ini配置文件之间的相互映射的序列化操作 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
10 |
| IOProvider | 在这个模块之中提供了.NET对象与*.ini配置文件之间的相互映射的序列化操作 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
10 |
| Section | 一个配置数据区域的抽象模型 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
12 |
| Section | 一个配置数据区域的抽象模型 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
12 |
Microsoft.VisualBasic.ComponentModel.TagData
| Type | Summary | Package | Members |
|---|---|---|---|
| DoubleTagged | 使用一个实数作为目标对象值的标签信息 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 |
| DoubleTagged | 使用一个实数作为目标对象值的标签信息 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 |
| FactorString | target string label tagged with a numeric factor | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 |
| FactorString | target string label tagged with a numeric factor | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 |
| FactorValue | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 | |
| FactorValue | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 | |
| IndexingExtensions | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 | |
| IndexingExtensions | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 | |
| IntegerTagged | 使用一个整形数作为目标对象值的标签信息 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 |
| IntegerTagged | 使用一个整形数作为目标对象值的标签信息 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 |
| INumericKey | an object that tagged a number value as its index key | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 |
| INumericKey | an object that tagged a number value as its index key | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 |
| ITimeSignal | Interface representing the time series data | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 |
| ITimeSignal | Interface representing the time series data | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 |
| LongTagged | 使用一个长整形数作为目标对象值的标签信息 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
0 |
| LongTagged | 使用一个长整形数作为目标对象值的标签信息 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
0 |
| TagData | Target value have a specific tag key. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 |
| TagData | Target value have a specific tag key. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 |
| TimeSignalDataExtensions | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
8 | |
| TimeSignalDataExtensions | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
8 |
Microsoft.VisualBasic.ComponentModel.Triggers
| Type | Summary | Package | Members |
|---|---|---|---|
| DailyTimerTrigger | 这个只会比较时和分,每天都会触发 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 |
| DailyTimerTrigger | 这个只会比较时和分,每天都会触发 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 |
| ITrigger | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 | |
| ITrigger | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 | |
| TimerTrigger | 在指定的日期和时间呗触发,因此这个触发器只会运行一次 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
7 |
| TimerTrigger | 在指定的日期和时间呗触发,因此这个触发器只会运行一次 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
7 |
Microsoft.VisualBasic.ComponentModel.XmlDataModel
Microsoft.VisualBasic.Computing.ILCuda.GPUTensor
| Type | Summary | Package | Members |
|---|---|---|---|
| CudaTensor | ITensorCompute 的 CUDA GPU 实现(全 double 精度)。 | Microsoft.VisualBasic.Computing.ILCuda.GPUTensor 1.0.9753.4776 |
28 |
| CudaTensor | ITensorCompute 的 CUDA GPU 实现(全 double 精度)。 | Microsoft.VisualBasic.Computing.ILCuda.GPUTensor 1.0.9762.11310 |
53 |
| DeviceCache | Microsoft.VisualBasic.Computing.ILCuda.GPUTensor 1.0.9753.4776 |
6 | |
| DeviceCache | Microsoft.VisualBasic.Computing.ILCuda.GPUTensor 1.0.9762.11310 |
7 | |
| DeviceResidentStore | 以主机 Double() 数组引用为键的设备常驻缓冲注册表。 | Microsoft.VisualBasic.Computing.ILCuda.GPUTensor 1.0.9762.11310 |
15 |
| DoubleKernelRegistry | 把 DoubleKernels 里的方法逐个翻译成 CUDA 内核并注册到编译单元。 必须在 CudaEngine.TryCreate 之前调用。 | Microsoft.VisualBasic.Computing.ILCuda.GPUTensor 1.0.9753.4776 |
4 |
| DoubleKernelRegistry | 把 DoubleKernels 里的方法逐个翻译成 CUDA 内核并注册到编译单元。 必须在 CudaEngine.TryCreate 之前调用。 | Microsoft.VisualBasic.Computing.ILCuda.GPUTensor 1.0.9762.11310 |
4 |
| DoubleKernels | 待反编译为 CUDA 的双精度逐元素函数(本身不会被托管调用)。 | Microsoft.VisualBasic.Computing.ILCuda.GPUTensor 1.0.9753.4776 |
27 |
| DoubleKernels | 待反编译为 CUDA 的双精度逐元素函数(本身不会被托管调用)。 | Microsoft.VisualBasic.Computing.ILCuda.GPUTensor 1.0.9762.11310 |
27 |
| SparseCsrCache | Microsoft.VisualBasic.Computing.ILCuda.GPUTensor 1.0.9762.11310 |
6 | |
| TensorKernelNames | Microsoft.VisualBasic.Computing.ILCuda.GPUTensor 1.0.9753.4776 |
21 | |
| TensorKernelNames | Microsoft.VisualBasic.Computing.ILCuda.GPUTensor 1.0.9762.11310 |
26 |
Microsoft.VisualBasic.Computing.ILCuda.GPUTensor.DeviceCache`1
| Type | Summary | Package | Members |
|---|---|---|---|
| Entry | 单个缓存条目:显存缓冲 + 上传时的数据版本 + LRU 时间戳 | Microsoft.VisualBasic.Computing.ILCuda.GPUTensor 1.0.9753.4776 |
1 |
| Entry | 单个缓存条目:显存缓冲 + 上传时的数据版本 + LRU 时间戳 | Microsoft.VisualBasic.Computing.ILCuda.GPUTensor 1.0.9762.11310 |
1 |
| HostComparer | 按数组引用身份比较的相等性比较器 | Microsoft.VisualBasic.Computing.ILCuda.GPUTensor 1.0.9753.4776 |
0 |
| HostComparer | 按数组引用身份比较的相等性比较器 | Microsoft.VisualBasic.Computing.ILCuda.GPUTensor 1.0.9762.11310 |
0 |
Microsoft.VisualBasic.Computing.ILCuda.GPUTensor.DeviceResidentStore
| Type | Summary | Package | Members |
|---|---|---|---|
| Entry | 单个常驻条目。 | Microsoft.VisualBasic.Computing.ILCuda.GPUTensor 1.0.9762.11310 |
1 |
| HostComparer | 按数组引用身份比较的相等性比较器(与 DeviceCache 保持同一约定) | Microsoft.VisualBasic.Computing.ILCuda.GPUTensor 1.0.9762.11310 |
0 |
Microsoft.VisualBasic.Computing.ILCuda.GPUTensor.SparseCsrCache
| Type | Summary | Package | Members |
|---|---|---|---|
| Entry | 单条缓存项:CSR 三个数组的显存缓冲 + 上传时的版本 + LRU 时间戳 | Microsoft.VisualBasic.Computing.ILCuda.GPUTensor 1.0.9762.11310 |
3 |
Microsoft.VisualBasic.Data
| Type | Summary | Package | Members |
|---|---|---|---|
| NumericTable | 经过预处理之后的纯数值二维表对象。 该对象被设计为整个 sciBASIC# 框架之中的统一数据载体:表中存放的 逻辑值、字符串枚举标签、缺失值等内容都应该在上游的预处理阶段被 转换成数值,因此算法层只需要面对纯数值矩阵即可直接进行计算。 表结构: 1. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
38 |
| NumericTable | 经过预处理之后的纯数值二维表对象。 该对象被设计为整个 sciBASIC# 框架之中的统一数据载体:表中存放的 逻辑值、字符串枚举标签、缺失值等内容都应该在上游的预处理阶段被 转换成数值,因此算法层只需要面对纯数值矩阵即可直接进行计算。 表结构: 1. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
41 |
| NumericTableBinary | NumericTable 对象的二进制文件读写。 文件布局(所有的多字节数值均通过 NetworkByteOrderBuffer 编码为大端/网络字节序): [magic] 固定的ASCII魔数 "NVTABLE" [version] Int32,当前的格式版本号 NumericTableBinary.FORMAT_V… | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
15 |
| NumericTableBinary | NumericTable 对象的二进制文件读写。 文件布局(所有的多字节数值均通过 NetworkByteOrderBuffer 编码为大端/网络字节序): [magic] 固定的ASCII魔数 "NVTABLE" [version] Int32,当前的格式版本号 NumericTableBinary.FORMAT_V… | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
15 |
| NumericTableExtensions | NumericTable 的通用扩展方法集合,主要提供给聚类、 回归等分析算法进行数据访问与结果回写。 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
9 |
| NumericTableExtensions | NumericTable 的通用扩展方法集合,主要提供给聚类、 回归等分析算法进行数据访问与结果回写。 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
28 |
Microsoft.VisualBasic.Data.Bootstrapping
| Type | Summary | Package | Members |
|---|---|---|---|
| BayesianCurveFitting | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9753.4776 |
3 | |
| BayesianCurveFitting | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9762.11310 |
3 | |
| DoubleLinear | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9753.4776 |
3 | |
| DoubleLinear | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9762.11310 |
3 | |
| Evaluation | Data fitting result evaluation. | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9753.4776 |
6 |
| Evaluation | Data fitting result evaluation. | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9762.11310 |
6 |
| Extensions | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9753.4776 |
5 | |
| Extensions | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9762.11310 |
5 | |
| FeatureProjection | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9753.4776 |
1 | |
| FeatureProjection | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9762.11310 |
1 | |
| FitResult | 线性回归结果 | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9753.4776 |
12 |
| FitResult | 线性回归结果 | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9762.11310 |
12 |
| GaussNewtonSolver | least squares fitting for general curve functions | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9753.4776 |
1 |
| GaussNewtonSolver | least squares fitting for general curve functions | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9762.11310 |
1 |
| IFitted | a unify interface model of linear fitting result | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9753.4776 |
4 |
| IFitted | a unify interface model of linear fitting result | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9762.11310 |
4 |
| LeastSquares | Linear interpolator 曲线拟合类,只适用于线性拟合: + y = a*x + b + y = a + a1*x + a2*x^2 + ... | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9753.4776 |
5 |
| LeastSquares | Linear interpolator 曲线拟合类,只适用于线性拟合: + y = a*x + b + y = a + a1*x + a2*x^2 + ... | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9762.11310 |
5 |
| LMA | Levenberg–Marquardt algorithm In mathematics and computing, the Levenberg–Marquardt algorithm (LMA or just LM), also known as the damped least-squares (DLS) method, is used… | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9753.4776 |
1 |
| LMA | Levenberg–Marquardt algorithm In mathematics and computing, the Levenberg–Marquardt algorithm (LMA or just LM), also known as the damped least-squares (DLS) method, is used… | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9762.11310 |
1 |
| LOESS | ======================================================================== LOESS回归实现 ======================================================================== | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9753.4776 |
4 |
| LOESS | ======================================================================== LOESS回归实现 ======================================================================== | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9762.11310 |
4 |
| LOESSModel | LOESS模型,存储训练数据和参数 | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9753.4776 |
4 |
| LOESSModel | LOESS模型,存储训练数据和参数 | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9762.11310 |
4 |
| LowessFittings | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9753.4776 |
3 | |
| LowessFittings | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9762.11310 |
3 | |
| NonNegativeLeastSquares | NNLS Non-Negative Least-Squares algorithm | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9753.4776 |
4 |
| NonNegativeLeastSquares | NNLS Non-Negative Least-Squares algorithm | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9762.11310 |
4 |
| NumericTablePrediction | 将回归模型的预测结果写回到统一二维表 NumericTable 的标签矩阵之中, 从而可以方便地把预测值与原始的观测值放在同一张表里面进行对比。 | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9753.4776 |
3 |
| NumericTablePrediction | 将回归模型的预测结果写回到统一二维表 NumericTable 的标签矩阵之中, 从而可以方便地把预测值与原始的观测值放在同一张表里面进行对比。 | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9762.11310 |
3 |
| NumericTableRegressions | 回归/曲线拟合算法的统一二维表入口。 输入约定: 1. | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9753.4776 |
20 |
| NumericTableRegressions | 回归/曲线拟合算法的统一二维表入口。 输入约定: 1. | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9762.11310 |
20 |
| StockPredict | Bayesian Curve Fitting | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9753.4776 |
2 |
| StockPredict | Bayesian Curve Fitting | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9762.11310 |
2 |
| WeightedFit | 加权拟合的结果 | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9753.4776 |
9 |
| WeightedFit | 加权拟合的结果 | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9762.11310 |
9 |
| WeightedLinearRegression | An Algorithm for Weighted Linear Regression > https://www.codeproject.com/Articles/25335/An-Algorithm-for-Weighted-Linear-Regression | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9753.4776 |
2 |
| WeightedLinearRegression | An Algorithm for Weighted Linear Regression > https://www.codeproject.com/Articles/25335/An-Algorithm-for-Weighted-Linear-Regression | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9762.11310 |
2 |
Microsoft.VisualBasic.Data.Bootstrapping.GaussNewtonSolver
| Type | Summary | Package | Members |
|---|---|---|---|
| FitFunction | A general curve function to fit | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9753.4776 |
0 |
| FitFunction | A general curve function to fit | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9762.11310 |
0 |
Microsoft.VisualBasic.Data.Bootstrapping.LASSO
| Type | Summary | Package | Members |
|---|---|---|---|
| LassoFit | This class is a container for arrays and values that are computed during computation of a lasso fit. | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9753.4776 |
15 |
| LassoFit | This class is a container for arrays and values that are computed during computation of a lasso fit. | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9762.11310 |
15 |
| LassoFitGenerator | This implemenation is based on: Friedman, J., Hastie, T. | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9753.4776 |
10 |
| LassoFitGenerator | This implemenation is based on: Friedman, J., Hastie, T. | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9762.11310 |
10 |
| MathUtil | Utility Math functions that are used by other classes. | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9753.4776 |
5 |
| MathUtil | Utility Math functions that are used by other classes. | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9762.11310 |
5 |
Microsoft.VisualBasic.Data.Bootstrapping.LevenbergMarquardt
| Type | Summary | Package | Members |
|---|---|---|---|
| JamaHelper | Created by duy on 31/1/15. | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9753.4776 |
2 |
| JamaHelper | Created by duy on 31/1/15. | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9762.11310 |
2 |
| LmDatumError | LmDatumError is an interface for evaluating error, Jacobian matrix and Hessian matrix of a single piece of observed data | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9753.4776 |
5 |
| LmDatumError | LmDatumError is an interface for evaluating error, Jacobian matrix and Hessian matrix of a single piece of observed data | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9762.11310 |
5 |
| LmModelError | Created by duy on 20/1/15. | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9753.4776 |
4 |
| LmModelError | Created by duy on 20/1/15. | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9762.11310 |
4 |
| LmParamHandler | Created by duy on 18/3/15. | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9753.4776 |
1 |
| LmParamHandler | Created by duy on 18/3/15. | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9762.11310 |
1 |
| LmScalarModel | LmScalarModel is an interface for models (functions) whose ranges are single real-valued numbers | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9753.4776 |
4 |
| LmScalarModel | LmScalarModel is an interface for models (functions) whose ranges are single real-valued numbers | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9762.11310 |
4 |
| LmSolver | levenberg-marquardt A lightweight implementation of Levenberg-Marquardt algorithm ### Augmented normal equation (H + uI) * h = -g where: + H is the Hessian matrix… | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9753.4776 |
9 |
| LmSolver | levenberg-marquardt A lightweight implementation of Levenberg-Marquardt algorithm ### Augmented normal equation (H + uI) * h = -g where: + H is the Hessian matrix… | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9762.11310 |
9 |
| LmSumError | Created by duy on 1/4/15. | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9753.4776 |
4 |
| LmSumError | Created by duy on 1/4/15. | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9762.11310 |
4 |
| LmSumSquaresError | Created by duy on 27/1/15. | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9753.4776 |
4 |
| LmSumSquaresError | Created by duy on 27/1/15. | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9762.11310 |
4 |
Microsoft.VisualBasic.Data.Bootstrapping.LMA
Microsoft.VisualBasic.Data.Bootstrapping.Logistic
| Type | Summary | Package | Members |
|---|---|---|---|
| Instance | classify training model | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9753.4776 |
7 |
| Instance | classify training model | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9762.11310 |
3 |
| Logistic | This method uses Gradient descent algorithm. | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9753.4776 |
6 |
| Logistic | This method uses Gradient descent algorithm. | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9762.11310 |
4 |
Microsoft.VisualBasic.Data.Bootstrapping.Multivariate
| Type | Summary | Package | Members |
|---|---|---|---|
| Error | 多元线性回归在单个样本点上的拟合误差记录。(The fit error of a multiple linear regression at a single sample point.) | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9753.4776 |
5 |
| Error | 多元线性回归在单个样本点上的拟合误差记录。(The fit error of a multiple linear regression at a single sample point.) | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9762.11310 |
5 |
| LinearFittingAlgorithm | 多元线性回归拟合算法模块,提供拟合入口、特征曲线升维以及回归系数置信区间的计算。 (Multiple linear regression fitting algorithms: fit entry points, feature curve scaling, and confidence interval computation.) | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9753.4776 |
6 |
| LinearFittingAlgorithm | 多元线性回归拟合算法模块,提供拟合入口、特征曲线升维以及回归系数置信区间的计算。 (Multiple linear regression fitting algorithms: fit entry points, feature curve scaling, and confidence interval computation.) | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9762.11310 |
6 |
| MLRFit | Multiple linear regression.(多元线性回归) Problem of predicting appropriate values of given feature set as inputvector using supervised linear regression with multiple dimensional sa… | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9753.4776 |
11 |
| MLRFit | Multiple linear regression.(多元线性回归) Problem of predicting appropriate values of given feature set as inputvector using supervised linear regression with multiple dimensional sa… | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9762.11310 |
11 |
| NormalEquation | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9753.4776 |
1 | |
| NormalEquation | Microsoft.VisualBasic.Data.Bootstrapping.Fittings 5.0.9762.11310 |
1 |
Microsoft.VisualBasic.Data.ChartPlots
| Type | Summary | Package | Members |
|---|---|---|---|
| Annotation | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
12 | |
| Annotation | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
12 | |
| Bubble | the bubble plots | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
2 |
| Bubble | the bubble plots | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
2 |
| PointData | 绘图的点的数据 | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
20 |
| PointData | 绘图的点的数据 | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
7 |
| Scatter | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
5 | |
| Scatter | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
5 | |
| SerialData | 一条曲线的绘图数据模型 | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
17 |
| SerialData | 一条曲线的绘图数据模型 | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
6 |
| VennPlot | + 圆的半径大小直接与集合的大小相关 + 圆的交集部分的面积大小与两个集合之间的重合度相关 1. | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
2 |
| VennPlot | + 圆的半径大小直接与集合的大小相关 + 圆的交集部分的面积大小与两个集合之间的重合度相关 1. | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
2 |
| VennSet | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
5 | |
| VennSet | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
4 | |
| ViolinPlot | 小提琴图 + 高度为数据的分布位置 + 宽度为对应的百分位上的数据点的数量 + 长度为最小值与最大值之间的差值 | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
2 |
| ViolinPlot | 小提琴图 + 高度为数据的分布位置 + 宽度为对应的百分位上的数据点的数量 + 长度为最小值与最大值之间的差值 | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
2 |
Microsoft.VisualBasic.Data.ChartPlots.BarPlot
| Type | Summary | Package | Members |
|---|---|---|---|
| AlignmentPlot | Visualize and comparing two discrete signals. | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
5 |
| AlignmentPlot | Visualize and comparing two discrete signals. | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
5 |
| BarPlotAPI | 这个不像Histogram用于描述若干组连续的数据,这个是将数据按照标签分组来表述出来的 | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
3 |
| BarPlotAPI | 这个不像Histogram用于描述若干组连续的数据,这个是将数据按照标签分组来表述出来的 | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
3 |
| BiDirectionBarPlot | compare two data set | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
0 |
| BiDirectionBarPlot | compare two data set | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
0 |
| LevelBarplot | 只针对单组数据的条形图绘制 | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
0 |
| LevelBarplot | 只针对单组数据的条形图绘制 | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
0 |
| PlotAlignmentGroup | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
14 | |
| PlotAlignmentGroup | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
9 | |
| StackedBarPlot | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
2 | |
| StackedBarPlot | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
2 | |
| StyledBarplot | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
2 | |
| StyledBarplot | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
2 |
Microsoft.VisualBasic.Data.ChartPlots.BarPlot.Data
| Type | Summary | Package | Members |
|---|---|---|---|
| BarDataGroup | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
4 | |
| BarDataGroup | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
4 | |
| BarDataSample | Named value of double vector. | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
4 |
| BarDataSample | Named value of double vector. | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
3 |
| BarPlotDataExtensions | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
4 | |
| BarPlotDataExtensions | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
2 | |
| BiDirectionData | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
5 | |
| BiDirectionData | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
3 | |
| Constructor | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
2 | |
| Constructor | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
1 |
Microsoft.VisualBasic.Data.ChartPlots.BarPlot.Histogram
| Type | Summary | Package | Members |
|---|---|---|---|
| Extensions | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
1 | |
| Extensions | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
1 | |
| Histogram | 对经由函数生成的连续数据的图形表述 | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
6 |
| Histogram | 对经由函数生成的连续数据的图形表述 | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
6 |
| HistogramData | {x, y},一个柱子的绘图数据 | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
12 |
| HistogramData | {x, y},一个柱子的绘图数据 | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
9 |
| HistogramPlot | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
3 | |
| HistogramPlot | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
3 | |
| HistProfile | The histogram serial data. | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
8 |
| HistProfile | The histogram serial data. | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
5 |
Microsoft.VisualBasic.Data.ChartPlots.BarPlot.StyledBarplot
Microsoft.VisualBasic.Data.ChartPlots.BoxPlot
| Type | Summary | Package | Members |
|---|---|---|---|
| BoxData | Group data model for box plot | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
3 |
| BoxData | Group data model for box plot | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
3 |
| BoxPlot | min, q1, q2, q3, max _ +----| | |----+ | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
0 |
| BoxPlot | min, q1, q2, q3, max _ +----| | |----+ | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
0 |
Microsoft.VisualBasic.Data.ChartPlots.Contour.HeatMap
| Type | Summary | Package | Members |
|---|---|---|---|
| ContourHeatMapPlot | Contour heatmap A contour plot is a graphical technique for representing a 3-dimensional surface by plotting constant z slices, called contours, on a 2-dimensional format. | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
12 |
| ContourHeatMapPlot | Contour heatmap A contour plot is a graphical technique for representing a 3-dimensional surface by plotting constant z slices, called contours, on a 2-dimensional format. | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
12 |
| FormulaEvaluate | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
3 | |
| FormulaEvaluate | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
3 | |
| MatrixEvaluate | 直接返回矩阵数据 | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
3 |
| MatrixEvaluate | 直接返回矩阵数据 | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
3 |
| Utils | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
6 | |
| Utils | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
6 |
Microsoft.VisualBasic.Data.ChartPlots.Fractions
| Type | Summary | Package | Members |
|---|---|---|---|
| FractionData | 扇形/金字塔的数据模型 | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
6 |
| FractionData | 扇形/金字塔的数据模型 | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
4 |
| PieChart | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
5 | |
| PieChart | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
5 | |
| Pyramid | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
1 | |
| Pyramid | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
1 | |
| RadarChart | 雷达图 | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
2 |
| RadarChart | 雷达图 | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
2 |
| TreeMap | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
1 | |
| TreeMap | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
1 |
Microsoft.VisualBasic.Data.ChartPlots.Graphic
| Type | Summary | Package | Members |
|---|---|---|---|
| HeatMapPlot | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
5 | |
| HeatMapPlot | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
5 | |
| Mapper | 将数据坐标转换为绘图坐标 | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
15 |
| Mapper | 将数据坐标转换为绘图坐标 | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
15 |
| Plot | the chartting plot framework in sciBASIC | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
11 |
| Plot | the chartting plot framework in sciBASIC | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
11 |
| ProfileGroup | The plot data group | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
2 |
| ProfileGroup | The plot data group | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
1 |
| Scaling | 获取绘图数据的实际范围 | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
19 |
| Scaling | 获取绘图数据的实际范围 | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
17 |
Microsoft.VisualBasic.Data.ChartPlots.Graphic.Axis
| Type | Summary | Package | Members |
|---|---|---|---|
| Axis | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
8 | |
| Axis | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
8 | |
| AxisData | 横纵坐标轴的画图数据 | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
3 |
| AxisData | 横纵坐标轴的画图数据 | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
3 |
| AxisProvider | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
8 | |
| AxisProvider | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
1 | |
| AxisScalling | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
9 | |
| AxisScalling | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
7 | |
| AxisValue | 手工指定Axis的数据 | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
5 |
| AxisValue | 手工指定Axis的数据 | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
3 |
| DataScaler | 将用户数据转换为作图的时候所需要的空间数据 | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
3 |
| DataScaler | 将用户数据转换为作图的时候所需要的空间数据 | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
3 |
| DataScalerExtensions | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
1 | |
| DataScalerExtensions | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
1 | |
| TermScaler | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
1 | |
| TermScaler | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
1 | |
| XAxis | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
2 | |
| XAxis | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
2 | |
| XAxisLayoutStyles | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
9 | |
| XAxisLayoutStyles | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
9 | |
| YAxisLayoutStyles | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
10 | |
| YAxisLayoutStyles | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
10 | |
| YScaler | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
4 | |
| YScaler | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
4 |
Microsoft.VisualBasic.Data.ChartPlots.Graphic.Canvas
| Type | Summary | Package | Members |
|---|---|---|---|
| Absolute | 绝对位置定位 | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
2 |
| Absolute | 绝对位置定位 | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
0 |
| FontStyle | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
3 | |
| FontStyle | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
3 | |
| Layout | an abstract object plot layout object model | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
1 |
| Layout | an abstract object plot layout object model | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
1 |
| LayoutDependency | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
3 | |
| LayoutDependency | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
3 | |
| PercentageRelative | 百分比相对定位 | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
3 |
| PercentageRelative | 百分比相对定位 | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
0 |
| Theme | The plot style theme definition | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
51 |
| Theme | The plot style theme definition | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
29 |
Microsoft.VisualBasic.Data.ChartPlots.Graphic.Legend
| Type | Summary | Package | Members |
|---|---|---|---|
| LegendObject | 图例 | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
6 |
| LegendObject | 图例 | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
6 |
| LegendPlotExtensions | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
6 | |
| LegendPlotExtensions | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
6 | |
| LegendStyles | Vector shapes that drawing of this legend. | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
20 |
| LegendStyles | Vector shapes that drawing of this legend. | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
20 |
Microsoft.VisualBasic.Data.ChartPlots.Plot3D
| Type | Summary | Package | Members |
|---|---|---|---|
| DataProvider | Data provider | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
4 |
| DataProvider | Data provider | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
4 |
| Scatter | 3D scatter charting | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
2 |
| Scatter | 3D scatter charting | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
2 |
| ScatterHeatmap | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
2 | |
| ScatterHeatmap | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
2 | |
| Serial3D | Scatter serial data in 3D | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
4 |
| Serial3D | Scatter serial data in 3D | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
4 |
Microsoft.VisualBasic.Data.ChartPlots.Plot3D.Device
| Type | Summary | Package | Members |
|---|---|---|---|
| Element3D | 因为先绘制坐标轴再绘制系列点,会没有太多层次感,所以在这里首先需要将这些需要绘制的原件转换为这个元素对象,然后做一次Z排序生成绘图顺序 最后再调用Element3D.Draw())方法进行3D图表的绘制 | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
0 |
| Element3D | 因为先绘制坐标轴再绘制系列点,会没有太多层次感,所以在这里首先需要将这些需要绘制的原件转换为这个元素对象,然后做一次Z排序生成绘图顺序 最后再调用Element3D.Draw())方法进行3D图表的绘制 | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
0 |
| Line | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
1 | |
| Line | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
1 | |
| Polygon | 一个三维空间之中的面 | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
0 |
| Polygon | 一个三维空间之中的面 | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
0 |
| RenderEngine | 将生成的绘图元素在这个引擎模块之中进行排序操作,然后进行图表的绘制 | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
2 |
| RenderEngine | 将生成的绘图元素在这个引擎模块之中进行排序操作,然后进行图表的绘制 | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
2 |
| ShapePoint | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
1 | |
| ShapePoint | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
1 |
Microsoft.VisualBasic.Data.ChartPlots.Plot3D.Impl
Microsoft.VisualBasic.Data.ChartPlots.Plot3D.Model
Microsoft.VisualBasic.Data.ChartPlots.Plots
| Type | Summary | Package | Members |
|---|---|---|---|
| Scatter2D | A scatter plot (also called a scatterplot, scatter graph, scatter chart, scattergram, or scatter diagram)[3] is a type of plot or mathematical diagram using Cartesian coordinat… | Microsoft.VisualBasic.Data.ChartPlots 1.0.9753.4776 |
2 |
| Scatter2D | A scatter plot (also called a scatterplot, scatter graph, scatter chart, scattergram, or scatter diagram)[3] is a type of plot or mathematical diagram using Cartesian coordinat… | Microsoft.VisualBasic.Data.ChartPlots 1.0.9762.11310 |
2 |
Microsoft.VisualBasic.Data.ChartPlots.Statistics
| Type | Summary | Package | Members |
|---|---|---|---|
| Bihistogram | Bihistogram > http://www.itl.nist.gov/div898/handbook/eda/section3/bihistog.htm The bihistogram is an EDA tool for assessing whether a before-versus-after engineering modific… | Microsoft.VisualBasic.Data.ChartPlots.Statistics 1.0.9753.4776 |
1 |
| Bihistogram | Bihistogram > http://www.itl.nist.gov/div898/handbook/eda/section3/bihistog.htm The bihistogram is an EDA tool for assessing whether a before-versus-after engineering modific… | Microsoft.VisualBasic.Data.ChartPlots.Statistics 1.0.9762.11310 |
1 |
| ForestPlot | A forest plot, also known as a blobbogram, is a graphical display of estimated results from a number of scientific studies addressing the same question, along with the overall re… | Microsoft.VisualBasic.Data.ChartPlots.Statistics 1.0.9753.4776 |
0 |
| ForestPlot | A forest plot, also known as a blobbogram, is a graphical display of estimated results from a number of scientific studies addressing the same question, along with the overall re… | Microsoft.VisualBasic.Data.ChartPlots.Statistics 1.0.9762.11310 |
0 |
| HistStackedBarplot | Microsoft.VisualBasic.Data.ChartPlots.Statistics 1.0.9753.4776 |
1 | |
| HistStackedBarplot | Microsoft.VisualBasic.Data.ChartPlots.Statistics 1.0.9762.11310 |
1 | |
| QQPlot | Quantile-Quantile Plot > http://www.itl.nist.gov/div898/handbook/eda/section3/qqplot.htm The quantile-quantile (q-q) plot is a graphical technique for determining if two data… | Microsoft.VisualBasic.Data.ChartPlots.Statistics 1.0.9753.4776 |
1 |
| QQPlot | Quantile-Quantile Plot > http://www.itl.nist.gov/div898/handbook/eda/section3/qqplot.htm The quantile-quantile (q-q) plot is a graphical technique for determining if two data… | Microsoft.VisualBasic.Data.ChartPlots.Statistics 1.0.9762.11310 |
1 |
| RegressionPlot | Microsoft.VisualBasic.Data.ChartPlots.Statistics 1.0.9753.4776 |
1 | |
| RegressionPlot | Microsoft.VisualBasic.Data.ChartPlots.Statistics 1.0.9762.11310 |
1 | |
| ROCPlot | Microsoft.VisualBasic.Data.ChartPlots.Statistics 1.0.9753.4776 |
3 | |
| ROCPlot | Microsoft.VisualBasic.Data.ChartPlots.Statistics 1.0.9762.11310 |
3 | |
| SampleView | 通过正态分布曲线和散点图来可视化用户的样品数据 | Microsoft.VisualBasic.Data.ChartPlots.Statistics 1.0.9753.4776 |
0 |
| SampleView | 通过正态分布曲线和散点图来可视化用户的样品数据 | Microsoft.VisualBasic.Data.ChartPlots.Statistics 1.0.9762.11310 |
0 |
| ScatterExtensions | Microsoft.VisualBasic.Data.ChartPlots.Statistics 1.0.9753.4776 |
5 | |
| ScatterExtensions | Microsoft.VisualBasic.Data.ChartPlots.Statistics 1.0.9762.11310 |
5 | |
| TimePoint | Microsoft.VisualBasic.Data.ChartPlots.Statistics 1.0.9753.4776 |
5 | |
| TimePoint | Microsoft.VisualBasic.Data.ChartPlots.Statistics 1.0.9762.11310 |
5 | |
| TimeTrends | Microsoft.VisualBasic.Data.ChartPlots.Statistics 1.0.9753.4776 |
1 | |
| TimeTrends | Microsoft.VisualBasic.Data.ChartPlots.Statistics 1.0.9762.11310 |
1 | |
| ZScores | Microsoft.VisualBasic.Data.ChartPlots.Statistics 1.0.9753.4776 |
9 | |
| ZScores | Microsoft.VisualBasic.Data.ChartPlots.Statistics 1.0.9762.11310 |
8 | |
| ZScoresPlots | Plot of the pnorm.Z()) | Microsoft.VisualBasic.Data.ChartPlots.Statistics 1.0.9753.4776 |
0 |
| ZScoresPlots | Plot of the pnorm.Z()) | Microsoft.VisualBasic.Data.ChartPlots.Statistics 1.0.9762.11310 |
0 |
Microsoft.VisualBasic.Data.ChartPlots.Statistics.Heatmap
| Type | Summary | Package | Members |
|---|---|---|---|
| BubbleHeatmap | 普通的热图是整体进行比对,使用填充在方格内的颜色来区分数值 而泡泡热图,则是进行单个行数据在样本间的比较,行之间可以使用不同的颜色区分,数值使用泡泡的半径大小来表示 | Microsoft.VisualBasic.Data.ChartPlots.Statistics 1.0.9753.4776 |
0 |
| BubbleHeatmap | 普通的热图是整体进行比对,使用填充在方格内的颜色来区分数值 而泡泡热图,则是进行单个行数据在样本间的比较,行之间可以使用不同的颜色区分,数值使用泡泡的半径大小来表示 | Microsoft.VisualBasic.Data.ChartPlots.Statistics 1.0.9762.11310 |
0 |
| CorrelationTriangle | Microsoft.VisualBasic.Data.ChartPlots.Statistics 1.0.9753.4776 |
1 | |
| CorrelationTriangle | Microsoft.VisualBasic.Data.ChartPlots.Statistics 1.0.9762.11310 |
1 | |
| DataScaler | Microsoft.VisualBasic.Data.ChartPlots.Statistics 1.0.9753.4776 |
4 | |
| DataScaler | Microsoft.VisualBasic.Data.ChartPlots.Statistics 1.0.9762.11310 |
3 | |
| DensityPlot | 类似于Contour,但是这个是基于点的密度来绘图的 | Microsoft.VisualBasic.Data.ChartPlots.Statistics 1.0.9753.4776 |
3 |
| DensityPlot | 类似于Contour,但是这个是基于点的密度来绘图的 | Microsoft.VisualBasic.Data.ChartPlots.Statistics 1.0.9762.11310 |
3 |
| DrawElements | Draw a specific heatmap element | Microsoft.VisualBasic.Data.ChartPlots.Statistics 1.0.9753.4776 |
8 |
| DrawElements | Draw a specific heatmap element | Microsoft.VisualBasic.Data.ChartPlots.Statistics 1.0.9762.11310 |
8 |
| HeatMap | A heat map (or heatmap) is a graphical representation of data where the individual values contained in a matrix are represented as colors. | Microsoft.VisualBasic.Data.ChartPlots.Statistics 1.0.9753.4776 |
1 |
| HeatMap | A heat map (or heatmap) is a graphical representation of data where the individual values contained in a matrix are represented as colors. | Microsoft.VisualBasic.Data.ChartPlots.Statistics 1.0.9762.11310 |
1 |
| Internal | heatmap plot internal | Microsoft.VisualBasic.Data.ChartPlots.Statistics 1.0.9753.4776 |
3 |
| Internal | heatmap plot internal | Microsoft.VisualBasic.Data.ChartPlots.Statistics 1.0.9762.11310 |
3 |
| PlotArguments | Microsoft.VisualBasic.Data.ChartPlots.Statistics 1.0.9753.4776 |
9 | |
| PlotArguments | Microsoft.VisualBasic.Data.ChartPlots.Statistics 1.0.9762.11310 |
9 | |
| PlotExtensions | Microsoft.VisualBasic.Data.ChartPlots.Statistics 1.0.9753.4776 |
2 | |
| PlotExtensions | Microsoft.VisualBasic.Data.ChartPlots.Statistics 1.0.9762.11310 |
1 |
Microsoft.VisualBasic.Data.ChartPlots.Statistics.PCA
| Type | Summary | Package | Members |
|---|---|---|---|
| Ellipse | PCA 统计椭圆类,用于表示基于协方差的置信椭圆 | Microsoft.VisualBasic.Data.ChartPlots.Statistics 1.0.9753.4776 |
8 |
| Ellipse | PCA 统计椭圆类,用于表示基于协方差的置信椭圆 | Microsoft.VisualBasic.Data.ChartPlots.Statistics 1.0.9762.11310 |
8 |
| PCAPlot | Microsoft.VisualBasic.Data.ChartPlots.Statistics 1.0.9753.4776 |
3 | |
| PCAPlot | Microsoft.VisualBasic.Data.ChartPlots.Statistics 1.0.9762.11310 |
3 | |
| ScreePlot | 碎石图 | Microsoft.VisualBasic.Data.ChartPlots.Statistics 1.0.9753.4776 |
0 |
| ScreePlot | 碎石图 | Microsoft.VisualBasic.Data.ChartPlots.Statistics 1.0.9762.11310 |
0 |
Microsoft.VisualBasic.Data.Framework
| Type | Summary | Package | Members |
|---|---|---|---|
| DataFrame | R language liked dataframe object | Microsoft.VisualBasic.Data.Framework 5.0.9753.4776 |
29 |
| DataFrame | R language liked dataframe object | Microsoft.VisualBasic.Data.Framework 5.0.9762.11310 |
19 |
| DataImports | Module provides the csv data imports operation of the csv document creates from a text file. | Microsoft.VisualBasic.Data.Framework 5.0.9753.4776 |
14 |
| DataImports | Module provides the csv data imports operation of the csv document creates from a text file. | Microsoft.VisualBasic.Data.Framework 5.0.9762.11310 |
12 |
| DataSetMath | Vector math extensions for DataSet or its collection. | Microsoft.VisualBasic.Data.Framework 5.0.9753.4776 |
2 |
| DataSetMath | Vector math extensions for DataSet or its collection. | Microsoft.VisualBasic.Data.Framework 5.0.9762.11310 |
0 |
| DataTableStream | Microsoft.VisualBasic.Data.Framework.Extensions 5.0.9753.4776 |
2 | |
| DataTableStream | Microsoft.VisualBasic.Data.Framework.Extensions 5.0.9762.11310 |
2 | |
| DocumentExtensions | The csv document extensions API | Microsoft.VisualBasic.Data.Framework 5.0.9753.4776 |
28 |
| DocumentExtensions | The csv document extensions API | Microsoft.VisualBasic.Data.Framework 5.0.9762.11310 |
17 |
| Extensions | The shortcuts operation for the common csv document operations. | Microsoft.VisualBasic.Data.Framework 5.0.9753.4776 |
37 |
| Extensions | The shortcuts operation for the common csv document operations. | Microsoft.VisualBasic.Data.Framework 5.0.9762.11310 |
21 |
| FastLoader | Microsoft.VisualBasic.Data.Framework 5.0.9753.4776 |
3 | |
| FastLoader | Microsoft.VisualBasic.Data.Framework 5.0.9762.11310 |
2 | |
| FeatureVector | the feature column vector | Microsoft.VisualBasic.Data.Framework 5.0.9753.4776 |
15 |
| FeatureVector | the feature column vector | Microsoft.VisualBasic.Data.Framework 5.0.9762.11310 |
6 |
| FileWriter | Microsoft.VisualBasic.Data.Framework 5.0.9753.4776 |
2 | |
| FileWriter | Microsoft.VisualBasic.Data.Framework 5.0.9762.11310 |
2 | |
| Mapper | Microsoft.VisualBasic.Data.Framework 5.0.9753.4776 |
5 | |
| Mapper | Microsoft.VisualBasic.Data.Framework 5.0.9762.11310 |
2 | |
| MappingsHelper | Handling the data fields mapping for make processing of the csv headers. | Microsoft.VisualBasic.Data.Framework 5.0.9753.4776 |
9 |
| MappingsHelper | Handling the data fields mapping for make processing of the csv headers. | Microsoft.VisualBasic.Data.Framework 5.0.9762.11310 |
8 |
| NumericDataSet | Microsoft.VisualBasic.Data.Framework 5.0.9753.4776 |
6 | |
| NumericDataSet | Microsoft.VisualBasic.Data.Framework 5.0.9762.11310 |
3 | |
| NumericTableConversion | NumericTable 与 DataFrame 之间的相互转换。 其中标签列统一以 NumericTableIO.DefaultLabelPrefix 作为列名前缀参与转换, 因此 table -> dataframe -> table 的往返是无损的:行名、特征列、标签列、 表名与描述文本都可以完整地还原。 | Microsoft.VisualBasic.Data.Framework 5.0.9753.4776 |
3 |
| NumericTableConversion | NumericTable 与 DataFrame 之间的相互转换。 其中标签列统一以 NumericTableExtensions.DefaultLabelPrefix 作为列名前缀参与转换, 因此 table -> dataframe -> table 的往返是无损的:行名、特征列、标签列、 表名与描述文本都可以完整地还原。 | Microsoft.VisualBasic.Data.Framework 5.0.9762.11310 |
3 |
| NumericTableIO | NumericTable 对象的 csv/tsv 文本文件读写。 文本布局(第一行为表头): ,f1,f2,f3,label:cluster,label:score s1,1.5,-2.25,0,1,0.1 s2,3.75,4.5,-5.125,1,0.2 即「首列行名 + 全部特征列 + 末尾带 NumericTableIO.D… | Microsoft.VisualBasic.Data.Framework 5.0.9753.4776 |
22 |
| NumericTableIO | NumericTable 对象的 csv/tsv 文本文件读写。 文本布局(第一行为表头): ,f1,f2,f3,label:cluster,label:score s1,1.5,-2.25,0,1,0.1 s2,3.75,4.5,-5.125,1,0.2 即「首列行名 + 全部特征列 + 末尾带 NumericTableExte… | Microsoft.VisualBasic.Data.Framework 5.0.9762.11310 |
20 |
| PipeStream | Microsoft.VisualBasic.Data.Framework 5.0.9753.4776 |
6 | |
| PipeStream | Microsoft.VisualBasic.Data.Framework 5.0.9762.11310 |
3 | |
| ProfileStreams | Provides the *.ini file like config data function | Microsoft.VisualBasic.Data.Framework 5.0.9753.4776 |
5 |
| ProfileStreams | Provides the *.ini file like config data function | Microsoft.VisualBasic.Data.Framework 5.0.9762.11310 |
2 |
| SchemasAPI | Microsoft.VisualBasic.Data.Framework.Extensions 5.0.9753.4776 |
7 | |
| SchemasAPI | Microsoft.VisualBasic.Data.Framework.Extensions 5.0.9762.11310 |
3 | |
| StreamIOHandler | Microsoft.VisualBasic.Data.Framework 5.0.9753.4776 |
1 | |
| StreamIOHandler | Microsoft.VisualBasic.Data.Framework 5.0.9762.11310 |
1 | |
| TemplateAttribute | 用于标记当前的类型为csv输入文件的模板 | Microsoft.VisualBasic.Data.Framework.Extensions 5.0.9753.4776 |
4 |
| TemplateAttribute | 用于标记当前的类型为csv输入文件的模板 | Microsoft.VisualBasic.Data.Framework.Extensions 5.0.9762.11310 |
4 |
| TemplateHelper | Microsoft.VisualBasic.Data.Framework.Extensions 5.0.9753.4776 |
1 | |
| TemplateHelper | Microsoft.VisualBasic.Data.Framework.Extensions 5.0.9762.11310 |
1 | |
| Write_csv | write csv file method that call in clr environment | Microsoft.VisualBasic.Data.Framework 5.0.9753.4776 |
4 |
| Write_csv | write csv file method that call in clr environment | Microsoft.VisualBasic.Data.Framework 5.0.9762.11310 |
4 |
| Writer | Writer.Dispose()的时候会自动保存Csv文件的数据 | Microsoft.VisualBasic.Data.Framework.Extensions 5.0.9753.4776 |
4 |
| Writer | Writer.Dispose()的时候会自动保存Csv文件的数据 | Microsoft.VisualBasic.Data.Framework.Extensions 5.0.9762.11310 |
4 |
Microsoft.VisualBasic.Data.Framework.DataSetExtensions
| Type | Summary | Package | Members |
|---|---|---|---|
| CbindProvider | An abstract union operation data model | Microsoft.VisualBasic.Data.Framework 5.0.9753.4776 |
1 |
| CbindProvider | An abstract union operation data model | Microsoft.VisualBasic.Data.Framework 5.0.9762.11310 |
0 |
| DataRows | 提供了类似于R语言之中的cbind操作类似的按照列进行数据框合并的方法 | Microsoft.VisualBasic.Data.Framework 5.0.9753.4776 |
13 |
| DataRows | 提供了类似于R语言之中的cbind操作类似的按照列进行数据框合并的方法 | Microsoft.VisualBasic.Data.Framework 5.0.9762.11310 |
7 |
| HTMLWriter | file generator for mshtml | Microsoft.VisualBasic.Data.Framework 5.0.9753.4776 |
4 |
| HTMLWriter | file generator for mshtml | Microsoft.VisualBasic.Data.Framework 5.0.9762.11310 |
4 |
| MatrixProvider | A numeric data matrix provider | Microsoft.VisualBasic.Data.Framework 5.0.9753.4776 |
1 |
| MatrixProvider | A numeric data matrix provider | Microsoft.VisualBasic.Data.Framework 5.0.9762.11310 |
1 |
| MySQL | MySQL data extensions | Microsoft.VisualBasic.Data.Framework 5.0.9753.4776 |
8 |
| MySQL | MySQL data extensions | Microsoft.VisualBasic.Data.Framework 5.0.9762.11310 |
7 |
| RDataFrameHelpers | Helpers function for R dataframe data imports | Microsoft.VisualBasic.Data.Framework 5.0.9753.4776 |
2 |
| RDataFrameHelpers | Helpers function for R dataframe data imports | Microsoft.VisualBasic.Data.Framework 5.0.9762.11310 |
1 |
Microsoft.VisualBasic.Data.Framework.DataSetExtensions.Excel
| Type | Summary | Package | Members |
|---|---|---|---|
| Coordinates | Microsoft.VisualBasic.Data.Framework 5.0.9753.4776 |
7 | |
| Coordinates | Microsoft.VisualBasic.Data.Framework 5.0.9762.11310 |
2 |
Microsoft.VisualBasic.Data.Framework.IO
| Type | Summary | Package | Members |
|---|---|---|---|
| DataSet | The numeric dataset, DynamicPropertyBase, Double. | Microsoft.VisualBasic.Data.Framework 5.0.9753.4776 |
11 |
| DataSet | The numeric dataset, DynamicPropertyBase, Double. | Microsoft.VisualBasic.Data.Framework 5.0.9762.11310 |
8 |
| EntityObject | The object entity, DynamicPropertyBase, String. | Microsoft.VisualBasic.Data.Framework 5.0.9753.4776 |
9 |
| EntityObject | The object entity, DynamicPropertyBase, String. | Microsoft.VisualBasic.Data.Framework 5.0.9762.11310 |
7 |
| Extensions | Data extension for DataSet and EntityObject | Microsoft.VisualBasic.Data.Framework 5.0.9753.4776 |
17 |
| Extensions | Data extension for DataSet and EntityObject | Microsoft.VisualBasic.Data.Framework 5.0.9762.11310 |
12 |
| File | A comma character seperate table file that can be read and write in the EXCEL. | Microsoft.VisualBasic.Data.Framework 5.0.9753.4776 |
70 |
| File | A comma character seperate table file that can be read and write in the EXCEL. | Microsoft.VisualBasic.Data.Framework 5.0.9762.11310 |
43 |
| FileFormat | Microsoft.VisualBasic.Data.Framework 5.0.9753.4776 |
3 | |
| FileFormat | Microsoft.VisualBasic.Data.Framework 5.0.9762.11310 |
3 | |
| GenericMeta | Microsoft.VisualBasic.Data.Framework 5.0.9753.4776 |
2 | |
| GenericMeta | Microsoft.VisualBasic.Data.Framework 5.0.9762.11310 |
2 | |
| Meta | Microsoft.VisualBasic.Data.Framework 5.0.9753.4776 |
1 | |
| Meta | Microsoft.VisualBasic.Data.Framework 5.0.9762.11310 |
1 | |
| RowObject | A line of data in the csv file. | Microsoft.VisualBasic.Data.Framework 5.0.9753.4776 |
39 |
| RowObject | A line of data in the csv file. | Microsoft.VisualBasic.Data.Framework 5.0.9762.11310 |
26 |
| Table | 没有名称属性的表抽象对象 | Microsoft.VisualBasic.Data.Framework 5.0.9753.4776 |
0 |
| Table | 没有名称属性的表抽象对象 | Microsoft.VisualBasic.Data.Framework 5.0.9762.11310 |
0 |
Microsoft.VisualBasic.Data.Framework.IO.ArffFile
| Type | Summary | Package | Members |
|---|---|---|---|
| ArffReader | The ARFF (Attribute-Relation File Format) is a text-based file format designed for storing structured datasets, primarily used in machine learning and data mining tools like Weka… | Microsoft.VisualBasic.Data.Framework 5.0.9753.4776 |
2 |
| ArffReader | The ARFF (Attribute-Relation File Format) is a text-based file format designed for storing structured datasets, primarily used in machine learning and data mining tools like Weka… | Microsoft.VisualBasic.Data.Framework 5.0.9762.11310 |
0 |
Microsoft.VisualBasic.Data.Framework.IO.CSVFile
| Type | Summary | Package | Members |
|---|---|---|---|
| FileLoader | Wrapper module for read csv/tsv file | Microsoft.VisualBasic.Data.Framework 5.0.9753.4776 |
3 |
| FileLoader | Wrapper module for read csv/tsv file | Microsoft.VisualBasic.Data.Framework 5.0.9762.11310 |
3 |
| RowHelpers | Microsoft.VisualBasic.Data.Framework 5.0.9753.4776 |
6 | |
| RowHelpers | Microsoft.VisualBasic.Data.Framework 5.0.9762.11310 |
5 | |
| RowTokenizer | Parse the csv row by char scanning | Microsoft.VisualBasic.Data.Framework 5.0.9753.4776 |
2 |
| RowTokenizer | Parse the csv row by char scanning | Microsoft.VisualBasic.Data.Framework 5.0.9762.11310 |
2 |
| StreamIO | Microsoft.VisualBasic.Data.Framework 5.0.9753.4776 |
5 | |
| StreamIO | Microsoft.VisualBasic.Data.Framework 5.0.9762.11310 |
4 | |
| Tokenizer | RowObject parsers | Microsoft.VisualBasic.Data.Framework 5.0.9753.4776 |
4 |
| Tokenizer | RowObject parsers | Microsoft.VisualBasic.Data.Framework 5.0.9762.11310 |
4 |
Microsoft.VisualBasic.Data.Framework.IO.Linq
| Type | Summary | Package | Members |
|---|---|---|---|
| BatchQueue | Microsoft.VisualBasic.Data.Framework 5.0.9753.4776 |
8 | |
| BatchQueue | Microsoft.VisualBasic.Data.Framework 5.0.9762.11310 |
4 | |
| DataLinqStream | Microsoft.VisualBasic.Data.Framework 5.0.9753.4776 |
5 | |
| DataLinqStream | Microsoft.VisualBasic.Data.Framework 5.0.9762.11310 |
5 | |
| DataStream | Buffered large text dataset Table reader | Microsoft.VisualBasic.Data.Framework 5.0.9753.4776 |
13 |
| DataStream | Buffered large text dataset Table reader | Microsoft.VisualBasic.Data.Framework 5.0.9762.11310 |
13 |
| ExprToken | Microsoft.VisualBasic.Data.Framework 5.0.9753.4776 |
5 | |
| ExprToken | Microsoft.VisualBasic.Data.Framework 5.0.9762.11310 |
5 | |
| GetOrdinal | 获取列在当前的数据集之中的编号 | Microsoft.VisualBasic.Data.Framework 5.0.9753.4776 |
3 |
| GetOrdinal | 获取列在当前的数据集之中的编号 | Microsoft.VisualBasic.Data.Framework 5.0.9762.11310 |
3 |
| LinqWhere | 主要是为了构建通过命令行的通用化查询工具 | Microsoft.VisualBasic.Data.Framework 5.0.9753.4776 |
13 |
| LinqWhere | 主要是为了构建通过命令行的通用化查询工具 | Microsoft.VisualBasic.Data.Framework 5.0.9762.11310 |
13 |
| WriteStream | The stream writer for the data set, you can handling the ultra large dataset serialize into a csv document by using this writer stream object. | Microsoft.VisualBasic.Data.Framework 5.0.9753.4776 |
16 |
| WriteStream | The stream writer for the data set, you can handling the ultra large dataset serialize into a csv document by using this writer stream object. | Microsoft.VisualBasic.Data.Framework 5.0.9762.11310 |
16 |
Microsoft.VisualBasic.Data.Framework.IO.Linq.DataStream
| Type | Summary | Package | Members |
|---|---|---|---|
| __taskHelper | 为了减少Lambda表达式所带来的性能损失而构建的一个任务运行帮助对象 | Microsoft.VisualBasic.Data.Framework 5.0.9753.4776 |
2 |
| __taskHelper | 为了减少Lambda表达式所带来的性能损失而构建的一个任务运行帮助对象 | Microsoft.VisualBasic.Data.Framework 5.0.9762.11310 |
2 |
Microsoft.VisualBasic.Data.Framework.IO.Properties
| Type | Summary | Package | Members |
|---|---|---|---|
| Comment | Comment data string about this configuration item.(当前的配置数据项的在数据文件之中的注释字符串) | Microsoft.VisualBasic.Data.Framework.Extensions 5.0.9753.4776 |
5 |
| Comment | Comment data string about this configuration item.(当前的配置数据项的在数据文件之中的注释字符串) | Microsoft.VisualBasic.Data.Framework.Extensions 5.0.9762.11310 |
5 |
| Properties | The Properties class represents a persistent set of properties. | Microsoft.VisualBasic.Data.Framework.Extensions 5.0.9753.4776 |
22 |
| Properties | The Properties class represents a persistent set of properties. | Microsoft.VisualBasic.Data.Framework.Extensions 5.0.9762.11310 |
22 |
| Reflector | Microsoft.VisualBasic.Data.Framework.Extensions 5.0.9753.4776 |
8 | |
| Reflector | Microsoft.VisualBasic.Data.Framework.Extensions 5.0.9762.11310 |
6 | |
| SectionRegion | This attribute for separate the configuration data into another section region using the comment lines. | Microsoft.VisualBasic.Data.Framework.Extensions 5.0.9753.4776 |
1 |
| SectionRegion | This attribute for separate the configuration data into another section region using the comment lines. | Microsoft.VisualBasic.Data.Framework.Extensions 5.0.9762.11310 |
1 |
Microsoft.VisualBasic.Data.Framework.Outlining
| Type | Summary | Package | Members |
|---|---|---|---|
| Builder | The row object builder, convert csv data row to .NET object in given Builder.Type | Microsoft.VisualBasic.Data.Framework.Extensions 5.0.9753.4776 |
8 |
| Builder | The row object builder, convert csv data row to .NET object in given Builder.Type | Microsoft.VisualBasic.Data.Framework.Extensions 5.0.9762.11310 |
4 |
| OutliningDataLoader | Microsoft.VisualBasic.Data.Framework.Extensions 5.0.9753.4776 |
3 | |
| OutliningDataLoader | Microsoft.VisualBasic.Data.Framework.Extensions 5.0.9762.11310 |
2 |
Microsoft.VisualBasic.Data.Framework.Serialize.ObjectSchema
| Type | Summary | Package | Members |
|---|---|---|---|
| Class | Class object schema | Microsoft.VisualBasic.Data.Framework.Extensions 5.0.9753.4776 |
9 |
| Class | Class object schema | Microsoft.VisualBasic.Data.Framework.Extensions 5.0.9762.11310 |
4 |
| Field | + # uid; + [FiledName] This field links to a external file, and id is point to the # uid field in the external file. | Microsoft.VisualBasic.Data.Framework.Extensions 5.0.9753.4776 |
7 |
| Field | + # uid; + [FiledName] This field links to a external file, and id is point to the # uid field in the external file. | Microsoft.VisualBasic.Data.Framework.Extensions 5.0.9762.11310 |
3 |
| Schema | The schema project json file. | Microsoft.VisualBasic.Data.Framework.Extensions 5.0.9753.4776 |
8 |
| Schema | The schema project json file. | Microsoft.VisualBasic.Data.Framework.Extensions 5.0.9762.11310 |
4 |
Microsoft.VisualBasic.Data.Framework.StorageProvider
| Type | Summary | Package | Members |
|---|---|---|---|
| DataFrameResolver | The dynamics data frame object which its first line is not contains the but using for the title property. | Microsoft.VisualBasic.Data.Framework 5.0.9753.4776 |
68 |
| DataFrameResolver | The dynamics data frame object which its first line is not contains the but using for the title property. | Microsoft.VisualBasic.Data.Framework 5.0.9762.11310 |
33 |
| HeaderSchema | Create table column schema based on the dataframe title headers | Microsoft.VisualBasic.Data.Framework 5.0.9753.4776 |
10 |
| HeaderSchema | Create table column schema based on the dataframe title headers | Microsoft.VisualBasic.Data.Framework 5.0.9762.11310 |
10 |
| ISchema | Microsoft.VisualBasic.Data.Framework 5.0.9753.4776 |
2 | |
| ISchema | Microsoft.VisualBasic.Data.Framework 5.0.9762.11310 |
2 |
Microsoft.VisualBasic.Data.Framework.StorageProvider.ComponentModels
| Type | Summary | Package | Members |
|---|---|---|---|
| Column | Microsoft.VisualBasic.Data.Framework 5.0.9753.4776 |
6 | |
| Column | Microsoft.VisualBasic.Data.Framework 5.0.9762.11310 |
6 | |
| DynamicObjectLoader | Data structure for high perfermence data loading. | Microsoft.VisualBasic.Data.Framework 5.0.9753.4776 |
48 |
| DynamicObjectLoader | Data structure for high perfermence data loading. | Microsoft.VisualBasic.Data.Framework 5.0.9762.11310 |
48 |
| Enum | Microsoft.VisualBasic.Data.Framework 5.0.9753.4776 |
5 | |
| Enum | Microsoft.VisualBasic.Data.Framework 5.0.9762.11310 |
5 | |
| KeyValuePair | Microsoft.VisualBasic.Data.Framework 5.0.9753.4776 |
5 | |
| KeyValuePair | Microsoft.VisualBasic.Data.Framework 5.0.9762.11310 |
5 | |
| MetaAttribute | Microsoft.VisualBasic.Data.Framework 5.0.9753.4776 |
6 | |
| MetaAttribute | Microsoft.VisualBasic.Data.Framework 5.0.9762.11310 |
1 | |
| RowBuilder | 这个是用于将Csv文件之中的行数据转换为.NET对象的 | Microsoft.VisualBasic.Data.Framework 5.0.9753.4776 |
14 |
| RowBuilder | 这个是用于将Csv文件之中的行数据转换为.NET对象的 | Microsoft.VisualBasic.Data.Framework 5.0.9762.11310 |
9 |
| RowWriter | 从.NET对象转换为Csv文件之中的行数据 | Microsoft.VisualBasic.Data.Framework 5.0.9753.4776 |
15 |
| RowWriter | 从.NET对象转换为Csv文件之中的行数据 | Microsoft.VisualBasic.Data.Framework 5.0.9762.11310 |
15 |
| SchemaProvider | 从目标对象解析出来的Csv文件的结构组织数据 | Microsoft.VisualBasic.Data.Framework 5.0.9753.4776 |
25 |
| SchemaProvider | 从目标对象解析出来的Csv文件的结构组织数据 | Microsoft.VisualBasic.Data.Framework 5.0.9762.11310 |
25 |
| StorageProvider | The base type of the data I/O object schema. | Microsoft.VisualBasic.Data.Framework 5.0.9753.4776 |
14 |
| StorageProvider | The base type of the data I/O object schema. | Microsoft.VisualBasic.Data.Framework 5.0.9762.11310 |
14 |
Microsoft.VisualBasic.Data.Framework.StorageProvider.ComponentModels.RowWriter
| Type | Summary | Package | Members |
|---|---|---|---|
| IRowBuilder | 将实体对象映射为一个数据行 | Microsoft.VisualBasic.Data.Framework 5.0.9753.4776 |
0 |
| IRowBuilder | 将实体对象映射为一个数据行 | Microsoft.VisualBasic.Data.Framework 5.0.9762.11310 |
0 |
Microsoft.VisualBasic.Data.Framework.StorageProvider.Reflection
| Type | Summary | Package | Members |
|---|---|---|---|
| CollectionAttribute | This property is a array data type object. | Microsoft.VisualBasic.Data.Framework 5.0.9753.4776 |
7 |
| CollectionAttribute | This property is a array data type object. | Microsoft.VisualBasic.Data.Framework 5.0.9762.11310 |
7 |
| ColumnAttribute | This is a column(or Field) in the csv document. | Microsoft.VisualBasic.Data.Framework 5.0.9753.4776 |
8 |
| ColumnAttribute | This is a column(or Field) in the csv document. | Microsoft.VisualBasic.Data.Framework 5.0.9762.11310 |
5 |
| DataFlowDirections | Microsoft.VisualBasic.Data.Framework 5.0.9753.4776 |
4 | |
| DataFlowDirections | Microsoft.VisualBasic.Data.Framework 5.0.9762.11310 |
4 | |
| Ignored | This property will not write into the csv document file. | Microsoft.VisualBasic.Data.Framework 5.0.9753.4776 |
2 |
| Ignored | This property will not write into the csv document file. | Microsoft.VisualBasic.Data.Framework 5.0.9762.11310 |
2 |
| MetaAttribute | 在执行解析操作的时候,所有的没有被序列化的属性都将会被看作为字典元素,该字典元素的数据都存储在这个属性值之中 | Microsoft.VisualBasic.Data.Framework 5.0.9753.4776 |
4 |
| MetaAttribute | 在执行解析操作的时候,所有的没有被序列化的属性都将会被看作为字典元素,该字典元素的数据都存储在这个属性值之中 | Microsoft.VisualBasic.Data.Framework 5.0.9762.11310 |
2 |
| MetaAttributeParser | 解析出字典域标记信息 | Microsoft.VisualBasic.Data.Framework 5.0.9753.4776 |
4 |
| MetaAttributeParser | 解析出字典域标记信息 | Microsoft.VisualBasic.Data.Framework 5.0.9762.11310 |
4 |
| ProviderIds | Microsoft.VisualBasic.Data.Framework 5.0.9753.4776 |
7 | |
| ProviderIds | Microsoft.VisualBasic.Data.Framework 5.0.9762.11310 |
7 | |
| Reflector | The dynamics reflection operations on Csv data source services. | Microsoft.VisualBasic.Data.Framework 5.0.9753.4776 |
13 |
| Reflector | The dynamics reflection operations on Csv data source services. | Microsoft.VisualBasic.Data.Framework 5.0.9762.11310 |
10 |
| TypeSchemaProvider | Microsoft.VisualBasic.Data.Framework 5.0.9753.4776 |
7 | |
| TypeSchemaProvider | Microsoft.VisualBasic.Data.Framework 5.0.9762.11310 |
7 |
Microsoft.VisualBasic.Data.GraphQuery
| Type | Summary | Package | Members |
|---|---|---|---|
| CSSSelector | Microsoft.VisualBasic.Data.GraphQuery 5.0.9753.4776 |
2 | |
| CSSSelector | Microsoft.VisualBasic.Data.GraphQuery 5.0.9762.11310 |
2 | |
| Engine | the engine of run graph query | Microsoft.VisualBasic.Data.GraphQuery 5.0.9753.4776 |
0 |
| Engine | the engine of run graph query | Microsoft.VisualBasic.Data.GraphQuery 5.0.9762.11310 |
0 |
| Query | the object model of a query | Microsoft.VisualBasic.Data.GraphQuery 5.0.9753.4776 |
7 |
| Query | the object model of a query | Microsoft.VisualBasic.Data.GraphQuery 5.0.9762.11310 |
7 |
Microsoft.VisualBasic.Data.GraphQuery.Language
Microsoft.VisualBasic.Data.GraphQuery.TextParser
| Type | Summary | Package | Members |
|---|---|---|---|
| BaseInvoke | Microsoft.VisualBasic.Data.GraphQuery 5.0.9753.4776 |
7 | |
| BaseInvoke | Microsoft.VisualBasic.Data.GraphQuery 5.0.9762.11310 |
7 | |
| LINQ | LINQ functions for the graphquery parser | Microsoft.VisualBasic.Data.GraphQuery 5.0.9753.4776 |
1 |
| LINQ | LINQ functions for the graphquery parser | Microsoft.VisualBasic.Data.GraphQuery 5.0.9762.11310 |
1 |
Microsoft.VisualBasic.Data.GraphTheory
| Type | Summary | Package | Members |
|---|---|---|---|
| AbstractTree | An abstract tree data model | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
11 |
| AbstractTree | An abstract tree data model | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
7 |
| BipartiteEdge | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
4 | |
| BipartiteEdge | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
4 | |
| BipartiteMatching | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
15 | |
| BipartiteMatching | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
15 | |
| CharacterNode | 在字典树之中,一个字母构成一个节点 | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
4 |
| CharacterNode | 在字典树之中,一个字母构成一个节点 | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
1 |
| Edge | Direction: Edge.U -> Edge.V. | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
6 |
| Edge | Direction: Edge.U -> Edge.V. | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
3 |
| Extensions | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
10 | |
| Extensions | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
6 | |
| Graph | A graph G = (V, E) consists of a set V of vertices and a set E edges, that is, unordered pairs Of vertices. | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
1 |
| Graph | A graph G = (V, E) consists of a set V of vertices and a set E edges, that is, unordered pairs Of vertices. | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
0 |
| Graph | A graph G = (V, E) consists of a set V of vertices and a set E edges, that is, unordered pairs Of vertices. | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
23 |
| Graph | A graph G = (V, E) consists of a set V of vertices and a set E edges, that is, unordered pairs Of vertices. | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
21 |
| PQTree | @author santi | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
37 |
| PQTree | @author santi | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
37 |
| SequenceGraphTransform | Sequence Graph Transform (SGT) — Sequence Embedding for Clustering, Classification, and Search Sequence Graph Transform (SGT) is a sequence embedding function. | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
13 |
| SequenceGraphTransform | Sequence Graph Transform (SGT) — Sequence Embedding for Clustering, Classification, and Search Sequence Graph Transform (SGT) is a sequence embedding function. | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
13 |
| SparseGraph | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
4 | |
| SparseGraph | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
4 | |
| TermTree | A tree with string term as key | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
4 |
| TermTree | A tree with string term as key | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
1 |
| Tree | 使用字符串String作为键名的树节点 | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
5 |
| Tree | 使用字符串String作为键名的树节点 | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
2 |
| Tree | Tree node with data. | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
1 |
| Tree | Tree node with data. | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
0 |
| Trie | 朴素字典树(Trie) | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
6 |
| Trie | 朴素字典树(Trie) | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
4 |
| Utils | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
10 | |
| Utils | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
3 | |
| Vertex | Vertex in a graph | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
4 |
| Vertex | Vertex in a graph | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
3 |
Microsoft.VisualBasic.Data.GraphTheory.Analysis
| Type | Summary | Package | Members |
|---|---|---|---|
| GraphAnalysis | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
2 | |
| GraphAnalysis | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
2 | |
| Ullmann | Ullmann算法是子图同构 问题的经典回溯算法,由J.R. | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
5 |
| Ullmann | Ullmann算法是子图同构 问题的经典回溯算法,由J.R. | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
4 |
Microsoft.VisualBasic.Data.GraphTheory.Analysis.Dijkstra
| Type | Summary | Package | Members |
|---|---|---|---|
| Calculator | calculates all-pairs shortest paths or shortest paths from a single node | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
7 |
| Calculator | calculates all-pairs shortest paths or shortest paths from a single node | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
7 |
| DijkstraAlgoritm | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
8 | |
| DijkstraAlgoritm | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
8 | |
| DijkstraRouter | Dijkstra:Shortest Route Calculation - Object Oriented > Michael Demeersseman, 4 Jan 2008 > http://www.codeproject.com/Articles/22647/Dijkstra-Shortest-Route-Calculation-Object-… | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
9 |
| DijkstraRouter | Dijkstra:Shortest Route Calculation - Object Oriented > Michael Demeersseman, 4 Jan 2008 > http://www.codeproject.com/Articles/22647/Dijkstra-Shortest-Route-Calculation-Object-… | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
6 |
| Route | 从出发点到终点所经过的路径 | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
9 |
| Route | 从出发点到终点所经过的路径 | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
0 |
| RoutePathway | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
3 | |
| RoutePathway | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
2 |
Microsoft.VisualBasic.Data.GraphTheory.Analysis.Dijkstra.DijkstraAlgoritm
Microsoft.VisualBasic.Data.GraphTheory.Analysis.FastUnfolding
| Type | Summary | Package | Members |
|---|---|---|---|
| FastUnfolding | Fast unfolding of communities in large networks. | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
4 |
| FastUnfolding | Fast unfolding of communities in large networks. | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
4 |
| Utils | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
1 | |
| Utils | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
1 |
Microsoft.VisualBasic.Data.GraphTheory.Analysis.Louvain
| Type | Summary | Package | Members |
|---|---|---|---|
| Builder | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
2 | |
| Builder | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
1 | |
| Edge | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
2 | |
| Edge | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
2 | |
| LeidenCommunity | Leiden算法 - Louvain算法的改进版,保证社区连通性 核心改进: 1. | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
24 |
| LeidenCommunity | Leiden算法 - Louvain算法的改进版,保证社区连通性 核心改进: 1. | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
24 |
| LouvainCommunity | A fast algorithm To find communities In large network | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
22 |
| LouvainCommunity | A fast algorithm To find communities In large network | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
22 |
Microsoft.VisualBasic.Data.GraphTheory.Analysis.LPA
| Type | Summary | Package | Members |
|---|---|---|---|
| Builder | 将NetworkGraph网络图对象构建为LPA标签传播算法 所需要的链式前向星邻接表数据结构 | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
2 |
| Builder | 将NetworkGraph网络图对象构建为LPA标签传播算法 所需要的链式前向星邻接表数据结构 | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
1 |
| Edge | LPA邻接表之中所使用的边的数据结构(链式前向星) | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
2 |
| Edge | LPA邻接表之中所使用的边的数据结构(链式前向星) | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
2 |
| LabelPropagation | Label Propagation Algorithm, LPA community detection | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
13 |
| LabelPropagation | Label Propagation Algorithm, LPA community detection | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
13 |
Microsoft.VisualBasic.Data.GraphTheory.Analysis.MorganFingerprint
| Type | Summary | Package | Members |
|---|---|---|---|
| GraphMorganFingerprint | Morgan fingerprints, also known as circular fingerprints, are a type of molecular fingerprint used in cheminformatics to represent the structure of chemical compounds. | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
4 |
| GraphMorganFingerprint | Morgan fingerprints, also known as circular fingerprints, are a type of molecular fingerprint used in cheminformatics to represent the structure of chemical compounds. | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
4 |
| IMorganAtom | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
3 | |
| IMorganAtom | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
3 | |
| MorganGraph | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
2 | |
| MorganGraph | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
2 |
Microsoft.VisualBasic.Data.GraphTheory.Analysis.PageRank
| Type | Summary | Package | Members |
|---|---|---|---|
| GraphMatrix | 可以用来构建PageRank计算所需要的index矩阵 | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
5 |
| GraphMatrix | 可以用来构建PageRank计算所需要的index矩阵 | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
4 |
| PageRank | 无权重的pagerank计算模块.(https://github.com/jeffersonhwang/pagerank) | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
4 |
| PageRank | 无权重的pagerank计算模块.(https://github.com/jeffersonhwang/pagerank) | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
4 |
| WeightedPageRank | Package pagerank implements the weighted PageRank algorithm. | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
1 |
| WeightedPageRank | Package pagerank implements the weighted PageRank algorithm. | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
1 |
| WeightedPRGraph | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
2 | |
| WeightedPRGraph | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
2 | |
| WeightedPRNode | Weighted pagerank node | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
3 |
| WeightedPRNode | Weighted pagerank node | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
0 |
Microsoft.VisualBasic.Data.GraphTheory.Dijkstra.PQDijkstra
| Type | Summary | Package | Members |
|---|---|---|---|
| DijkstraFast | Implements a generalized Dijkstra's algorithm to calculate both minimum distance and minimum path. | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
4 |
| DijkstraFast | Implements a generalized Dijkstra's algorithm to calculate both minimum distance and minimum path. | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
4 |
| Finder | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
1 | |
| Finder | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
1 | |
| PQDijkstraProvider | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
4 | |
| PQDijkstraProvider | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
4 |
Microsoft.VisualBasic.Data.GraphTheory.Dijkstra.PQDijkstra.DijkstraFast
| Type | Summary | Package | Members |
|---|---|---|---|
| InternodeTraversalCost | Determines the cost of moving from a given node to another given node. | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
3 |
| InternodeTraversalCost | Determines the cost of moving from a given node to another given node. | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
3 |
| NearbyNodesHint | An optional delegate that can help optimize the algorithm by showing it a subset of nodes to consider. | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
3 |
| NearbyNodesHint | An optional delegate that can help optimize the algorithm by showing it a subset of nodes to consider. | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
3 |
| Results | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
5 | |
| Results | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
5 |
Microsoft.VisualBasic.Data.GraphTheory.EMD
| Type | Summary | Package | Members |
|---|---|---|---|
| Edge | @author Telmo Menezes (telmo@telmomenezes.com) | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
0 |
| Edge | @author Telmo Menezes (telmo@telmomenezes.com) | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
0 |
| Feature2D | @author Telmo Menezes (telmo@telmomenezes.com) | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
2 |
| Feature2D | @author Telmo Menezes (telmo@telmomenezes.com) | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
2 |
| JFastEMD | Earth Mover's Distance @author Telmo Menezes (telmo@telmomenezes.com) @author Ofir Pele | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
1 |
| JFastEMD | Earth Mover's Distance @author Telmo Menezes (telmo@telmomenezes.com) @author Ofir Pele | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
1 |
| Run | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
1 | |
| Run | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
1 | |
| Signature | Signatures can be used to represent sparse n-dimensional matrices. | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
4 |
| Signature | Signatures can be used to represent sparse n-dimensional matrices. | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
4 |
Microsoft.VisualBasic.Data.GraphTheory.GridGraph
| Type | Summary | Package | Members |
|---|---|---|---|
| Grid | 网格也可以看作为一种网络 | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
6 |
| Grid | 网格也可以看作为一种网络 | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
6 |
| Grid | a generic grid graph for fast query of the 2D geometry data | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
23 |
| Grid | a generic grid graph for fast query of the 2D geometry data | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
15 |
| GridCell | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
5 | |
| GridCell | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
2 | |
| IPoint2D | 2d point data model in readonly | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
2 |
| IPoint2D | 2d point data model in readonly | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
2 |
| Spatial3D | a generic grid graph for fast query of the 3D geometry data | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
9 |
| Spatial3D | a generic grid graph for fast query of the 3D geometry data | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
4 |
Microsoft.VisualBasic.Data.GraphTheory.HuffmanTree
| Type | Summary | Package | Members |
|---|---|---|---|
| HuffmanNeuron | Created by fangy on 13-12-20. | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
7 |
| HuffmanNeuron | Created by fangy on 13-12-20. | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
7 |
| HuffmanNode | Created by fangy on 13-12-17. | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
4 |
| HuffmanNode | Created by fangy on 13-12-17. | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
4 |
| HuffmanTreeTools | Created by fangy on 13-12-17. | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
2 |
| HuffmanTreeTools | Created by fangy on 13-12-17. | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
2 |
Microsoft.VisualBasic.Data.GraphTheory.KdTree
| Type | Summary | Package | Members |
|---|---|---|---|
| KdNodeAccessor | Helper class for access the node data by different dimensions | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
7 |
| KdNodeAccessor | Helper class for access the node data by different dimensions | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
7 |
| KdNodeHeapItem | A KD-tree node bind with the distance with the target query point. | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
3 |
| KdNodeHeapItem | A KD-tree node bind with the distance with the target query point. | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
3 |
| KdTree | KDTree is a class supporting KD-tree insertion, deletion, equality search, range search, and nearest neighbor(s) using double-precision floating-point keys. | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
11 |
| KdTree | KDTree is a class supporting KD-tree insertion, deletion, equality search, range search, and nearest neighbor(s) using double-precision floating-point keys. | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
11 |
| KdTreeNode | K-D Tree node class | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
9 |
| KdTreeNode | K-D Tree node class | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
9 |
| KdUtils | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
2 | |
| KdUtils | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
2 |
Microsoft.VisualBasic.Data.GraphTheory.KdTree.ApproximateNearNeighbor
| Type | Summary | Package | Members |
|---|---|---|---|
| ApproximateNearNeighbor | K Nearest Neighbour Search Uses a kd-tree to find the p number of near neighbours for each point in an input/output dataset. | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
2 |
| ApproximateNearNeighbor | K Nearest Neighbour Search Uses a kd-tree to find the p number of near neighbours for each point in an input/output dataset. | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
2 |
| KNeighbors | k neighbors of a item row | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
4 |
| KNeighbors | k neighbors of a item row | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
4 |
| TagVector | a matrix row data is a vector | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
5 |
| TagVector | a matrix row data is a vector | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
3 |
| VectorAccessor | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
1 | |
| VectorAccessor | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
1 |
Microsoft.VisualBasic.Data.GraphTheory.KNearNeighbors
| Type | Summary | Package | Members |
|---|---|---|---|
| KNN | KNN search handler for phenograph | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
2 |
| KNN | KNN search handler for phenograph | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
2 |
| ScoreMetric | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
3 | |
| ScoreMetric | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
3 |
Microsoft.VisualBasic.Data.GraphTheory.KNearNeighbors.HNSW
| Type | Summary | Package | Members |
|---|---|---|---|
| BinaryHeap | Binary heap wrapper around the IList It's a max-heap implementation i.e. | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
11 |
| BinaryHeap | Binary heap wrapper around the IList It's a max-heap implementation i.e. | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
11 |
| CosineDistance | Calculates cosine similarity. | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
4 |
| CosineDistance | Calculates cosine similarity. | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
4 |
| Graph | The layered graph implementation. | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
10 |
| Graph | The layered graph implementation. | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
10 |
| KNNSearchResult | Representation of knn search result. | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
3 |
| KNNSearchResult | Representation of knn search result. | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
3 |
| NeighbourSelectionHeuristic | Type of heuristic to select best neighbours for a node. | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
4 |
| NeighbourSelectionHeuristic | Type of heuristic to select best neighbours for a node. | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
4 |
| Node | The abstract node implementation. | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
11 |
| Node | The abstract node implementation. | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
11 |
| NodeAlg3 | The implementation of the SELECT-NEIGHBORS-SIMPLE(q, C, M) algorithm. | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
2 |
| NodeAlg3 | The implementation of the SELECT-NEIGHBORS-SIMPLE(q, C, M) algorithm. | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
2 |
| NodeAlg4 | The implementation of the SELECT-NEIGHBORS-HEURISTIC(q, C, M, lc, extendCandidates, keepPrunedConnections) algorithm. | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
2 |
| NodeAlg4 | The implementation of the SELECT-NEIGHBORS-HEURISTIC(q, C, M, lc, extendCandidates, keepPrunedConnections) algorithm. | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
2 |
| Parameters | Parameters of the algorithm. | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
7 |
| Parameters | Parameters of the algorithm. | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
7 |
| ReverseComparer | Reverses the order of the nested comparer. | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
4 |
| ReverseComparer | Reverses the order of the nested comparer. | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
4 |
| ReverseComparerExtensions | Extension methods to shortcut ReverseComparer usage. | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
2 |
| ReverseComparerExtensions | Extension methods to shortcut ReverseComparer usage. | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
2 |
| SmallWorld | Hierarchical Navigable Small World Graphs. | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
12 |
| SmallWorld | Hierarchical Navigable Small World Graphs. | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
12 |
| TravelingCosts | Implementation of distance calculation from an arbitrary point to the given destination. | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
7 |
| TravelingCosts | Implementation of distance calculation from an arbitrary point to the given destination. | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
7 |
| VectorUtils | Utilities to work with vectors. | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
4 |
| VectorUtils | Utilities to work with vectors. | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
4 |
Microsoft.VisualBasic.Data.GraphTheory.MinimumSpanningTree
Microsoft.VisualBasic.Data.GraphTheory.Network
| Type | Summary | Package | Members |
|---|---|---|---|
| Edge | interaction edge is a tuple of two node vertex object | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
0 |
| Edge | interaction edge is a tuple of two node vertex object | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
0 |
| Extensions | Graph network api module extensions | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
6 |
| Extensions | Graph network api module extensions | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
2 |
| ExtensionsAPI | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
5 | |
| ExtensionsAPI | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
5 | |
| IndexEdge | an edge link: [u, v] | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
2 |
| IndexEdge | an edge link: [u, v] | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
2 |
| INode | Node model in the network | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
2 |
| INode | Node model in the network | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
2 |
| NetworkGraph | The base type of the network graph | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
3 |
| NetworkGraph | The base type of the network graph | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
1 |
| Node | A network node model | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
1 |
| Node | A network node model | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
1 |
| SubNetworkComponents | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
2 | |
| SubNetworkComponents | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
1 |
Microsoft.VisualBasic.Data.GraphTheory.SparseGraph
| Type | Summary | Package | Members |
|---|---|---|---|
| IInteraction | interaction edge tuple of vertex reference id | Microsoft.VisualBasic.Data.GraphTheory 1.0.9753.4776 |
2 |
| IInteraction | interaction edge tuple of vertex reference id | Microsoft.VisualBasic.Data.GraphTheory 1.0.9762.11310 |
2 |
Microsoft.VisualBasic.Data.IO
| Type | Summary | Package | Members |
|---|---|---|---|
| FrameReader | Microsoft.VisualBasic.Data.Storage 1.0.9753.4776 |
4 | |
| FrameReader | Microsoft.VisualBasic.Data.Storage 1.0.9762.11310 |
3 | |
| FrameWriter | Microsoft.VisualBasic.Data.Storage 1.0.9753.4776 |
2 | |
| FrameWriter | Microsoft.VisualBasic.Data.Storage 1.0.9762.11310 |
2 | |
| Schema | Microsoft.VisualBasic.Data.Storage 1.0.9753.4776 |
7 | |
| Schema | Microsoft.VisualBasic.Data.Storage 1.0.9762.11310 |
7 |
Microsoft.VisualBasic.Data.IO.ASN1
| Type | Summary | Package | Members |
|---|---|---|---|
| StreamReader | Microsoft.VisualBasic.Data.Storage 1.0.9753.4776 |
9 | |
| StreamReader | Microsoft.VisualBasic.Data.Storage 1.0.9762.11310 |
9 |
Microsoft.VisualBasic.Data.IO.HDF5
| Type | Summary | Package | Members |
|---|---|---|---|
| HDF5File | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9753.4776 |
6 | |
| HDF5File | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9762.11310 |
6 | |
| HDF5Ptr | A internal pointer in a hdf5 binary data file. | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9753.4776 |
3 |
| HDF5Ptr | A internal pointer in a hdf5 binary data file. | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9762.11310 |
3 |
| HDF5Reader | 这个reader只会读取一个HDF5Reader.datasetName的数据,如果需要读取其他的dataset的话, 则会需要创建多个HDF5Reader对象来进行数据的读取操作 这个对象相当于文件系统之中的一个文件或者文件夹 | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9753.4776 |
5 |
| HDF5Reader | 这个reader只会读取一个HDF5Reader.datasetName的数据,如果需要读取其他的dataset的话, 则会需要创建多个HDF5Reader对象来进行数据的读取操作 这个对象相当于文件系统之中的一个文件或者文件夹 | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9762.11310 |
5 |
| HDF5Sparse | 稀疏感知的 HDF5 读取辅助集合。所有方法都避免将整个数据集一次性解压到内存: 分块数据集按 chunk 流式枚举,COO 三元组直接构造 SparseMatrix。 | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9753.4776 |
4 |
| HDF5Sparse | 稀疏感知的 HDF5 读取辅助集合。所有方法都避免将整个数据集一次性解压到内存: 分块数据集按 chunk 流式枚举,COO 三元组直接构造 SparseMatrix。 | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9762.11310 |
4 |
| IFileDump | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9753.4776 |
1 | |
| IFileDump | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9762.11310 |
1 |
Microsoft.VisualBasic.Data.IO.HDF5.dataset
| Type | Summary | Package | Members |
|---|---|---|---|
| ChunkedDatasetV3 | Chunked: The array domain is regularly decomposed into chunks, and each chunk is allocated and stored separately. | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9753.4776 |
11 |
| ChunkedDatasetV3 | Chunked: The array domain is regularly decomposed into chunks, and each chunk is allocated and stored separately. | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9762.11310 |
11 |
| ChunkOffsetKey | Custom key object for indexing chunks. | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9753.4776 |
4 |
| ChunkOffsetKey | Custom key object for indexing chunks. | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9762.11310 |
4 |
| CompactDataset | Compact: The array is stored in one contiguous block as part of this object header message. | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9753.4776 |
3 |
| CompactDataset | Compact: The array is stored in one contiguous block as part of this object header message. | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9762.11310 |
3 |
| ContiguousDataset | The array is stored in one contiguous area of the file. | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9753.4776 |
3 |
| ContiguousDataset | The array is stored in one contiguous area of the file. | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9762.11310 |
3 |
Microsoft.VisualBasic.Data.IO.HDF5.dataset.filters
| Type | Summary | Package | Members |
|---|---|---|---|
| DeflatePipelineFilter | GZip | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9753.4776 |
3 |
| DeflatePipelineFilter | GZip | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9762.11310 |
3 |
| IFilter | Interface to be implemented to be a HDF5 filter. | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9753.4776 |
3 |
| IFilter | Interface to be implemented to be a HDF5 filter. | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9762.11310 |
3 |
| ReservedFilters | The filters currently in library version 1.8.0 are listed below: | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9753.4776 |
14 |
| ReservedFilters | The filters currently in library version 1.8.0 are listed below: | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9762.11310 |
14 |
| ShufflePipelineFilter | HDF5 shuffle 过滤器:解码时按元素字节大小对字节进行反混洗还原。 filterData(0) 为单个元素的字节宽度。 | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9753.4776 |
3 |
| ShufflePipelineFilter | HDF5 shuffle 过滤器:解码时按元素字节大小对字节进行反混洗还原。 filterData(0) 为单个元素的字节宽度。 | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9762.11310 |
3 |
Microsoft.VisualBasic.Data.IO.HDF5.device
| Type | Summary | Package | Members |
|---|---|---|---|
| BinaryReader | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9753.4776 |
5 | |
| BinaryReader | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9762.11310 |
5 | |
| DatasetReader | This class handles converting the ByteBuffer obtained from the file into a Java array containing the data. | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9753.4776 |
0 |
| DatasetReader | This class handles converting the ByteBuffer obtained from the file into a Java array containing the data. | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9762.11310 |
0 |
| EnumDatasetReader | Special case of dataset reader for filling enum datasets, handles converting integer values into the enum strings on the fly while filling. | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9753.4776 |
1 |
| EnumDatasetReader | Special case of dataset reader for filling enum datasets, handles converting integer values into the enum strings on the fly while filling. | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9762.11310 |
1 |
| ReadHelper | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9753.4776 |
4 | |
| ReadHelper | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9762.11310 |
4 | |
| VariableLengthDatasetReader | Read helpers of VariableLength | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9753.4776 |
2 |
| VariableLengthDatasetReader | Read helpers of VariableLength | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9762.11310 |
2 |
Microsoft.VisualBasic.Data.IO.HDF5.struct
| Type | Summary | Package | Members |
|---|---|---|---|
| BTreeNode | B-tree Nodes Version 1 B-trees in HDF5 files are an implementation of the B-link tree. | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9753.4776 |
11 |
| BTreeNode | B-tree Nodes Version 1 B-trees in HDF5 files are an implementation of the B-link tree. | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9762.11310 |
11 |
| BTreeNodeTypes | Each B-tree points to a particular type of data. | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9753.4776 |
4 |
| BTreeNodeTypes | Each B-tree points to a particular type of data. | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9762.11310 |
4 |
| DataChunk | 所存储的数据块 | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9753.4776 |
5 |
| DataChunk | 所存储的数据块 | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9762.11310 |
3 |
| DataObject | 一个数据块对象 | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9753.4776 |
2 |
| DataObject | 一个数据块对象 | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9762.11310 |
2 |
| DataObjectFacade | 可能是一个dataset,也可能是一个Group | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9753.4776 |
10 |
| DataObjectFacade | 可能是一个dataset,也可能是一个Group | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9762.11310 |
10 |
| GlobalHeap | Each HDF5 file has a global heap which stores various types of information which is typically shared between datasets. | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9753.4776 |
4 |
| GlobalHeap | Each HDF5 file has a global heap which stores various types of information which is typically shared between datasets. | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9762.11310 |
4 |
| GlobalHeapObject | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9753.4776 |
5 | |
| GlobalHeapObject | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9762.11310 |
5 | |
| Group | A group of DataObjectFacade. | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9753.4776 |
5 |
| Group | A group of DataObjectFacade. | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9762.11310 |
5 |
| GroupBTree | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9753.4776 |
1 | |
| GroupBTree | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9762.11310 |
1 | |
| GroupNode | A group is an object internal to the file that allows arbitrary nesting of objects within the file (including other groups). | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9753.4776 |
0 |
| GroupNode | A group is an object internal to the file that allows arbitrary nesting of objects within the file (including other groups). | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9762.11310 |
0 |
| Layout | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9753.4776 |
12 | |
| Layout | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9762.11310 |
12 | |
| LayoutClass | The Data Layout message describes how the elements of a multi-dimensional array are stored in the HDF5 file. | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9753.4776 |
8 |
| LayoutClass | The Data Layout message describes how the elements of a multi-dimensional array are stored in the HDF5 file. | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9762.11310 |
8 |
| LocalHeap | A local heap is a collection of small pieces of data that are particular to a single object in the HDF5 file. | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9753.4776 |
0 |
| LocalHeap | A local heap is a collection of small pieces of data that are particular to a single object in the HDF5 file. | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9762.11310 |
0 |
| Message | Data object header messages are small pieces of metadata that are stored in the data object header for each object in an HDF5 file. | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9753.4776 |
0 |
| Message | Data object header messages are small pieces of metadata that are stored in the data object header for each object in an HDF5 file. | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9762.11310 |
0 |
| ObjectHeader | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9753.4776 |
6 | |
| ObjectHeader | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9762.11310 |
6 | |
| ObjectHeaderMessage | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9753.4776 |
11 | |
| ObjectHeaderMessage | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9762.11310 |
11 | |
| ObjectHeaderMessageType | Disk Format: Level 2A2 - Data Object Header Messages Data object header messages are small pieces of metadata that are stored in the data object header for each object in an H… | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9753.4776 |
33 |
| ObjectHeaderMessageType | Disk Format: Level 2A2 - Data Object Header Messages Data object header messages are small pieces of metadata that are stored in the data object header for each object in an H… | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9762.11310 |
33 |
| Superblock | The superblock may begin at certain predefined offsets within the HDF5 file, allowing a block of unspecified content for users to place additional information at the beginning… | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9753.4776 |
2 |
| Superblock | The superblock may begin at certain predefined offsets within the HDF5 file, allowing a block of unspecified content for users to place additional information at the beginning… | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9762.11310 |
2 |
| SymbolTableEntry | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9753.4776 |
8 | |
| SymbolTableEntry | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9762.11310 |
8 |
Microsoft.VisualBasic.Data.IO.HDF5.struct.BTree
| Type | Summary | Package | Members |
|---|---|---|---|
| BTreeEntry | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9753.4776 |
4 | |
| BTreeEntry | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9762.11310 |
4 |
Microsoft.VisualBasic.Data.IO.HDF5.struct.messages
| Type | Summary | Package | Members |
|---|---|---|---|
| BogusMessage | This message is used for testing the HDF5 Library’s response to an “unknown” message type and should never be encountered in a valid HDF5 file. | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9753.4776 |
1 |
| BogusMessage | This message is used for testing the HDF5 Library’s response to an “unknown” message type and should never be encountered in a valid HDF5 file. | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9762.11310 |
1 |
| DataLayoutMessage | The Data Layout message describes how the elements of a multi-dimensional array are stored in the HDF5 file. | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9753.4776 |
8 |
| DataLayoutMessage | The Data Layout message describes how the elements of a multi-dimensional array are stored in the HDF5 file. | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9762.11310 |
8 |
| DataspaceMessage | The dataspace message describes the number of dimensions (in other words, “rank”) and size of each dimension that the data object has. | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9753.4776 |
7 |
| DataspaceMessage | The dataspace message describes the number of dimensions (in other words, “rank”) and size of each dimension that the data object has. | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9762.11310 |
7 |
| DataTypeMessage | The datatype message defines the datatype for each element of a dataset or a common datatype for sharing between multiple datasets. | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9753.4776 |
1 |
| DataTypeMessage | The datatype message defines the datatype for each element of a dataset or a common datatype for sharing between multiple datasets. | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9762.11310 |
1 |
| FillValueMessage | The fill value message stores a single data value which is returned to the application when an uninitialized data element is read from a dataset. | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9753.4776 |
7 |
| FillValueMessage | The fill value message stores a single data value which is returned to the application when an uninitialized data element is read from a dataset. | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9762.11310 |
7 |
| FillValueOldMessage | The Data Storage - Fill Value (Old) Message The fill value message stores a single data value which is returned to the application when an uninitialized data element is read f… | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9753.4776 |
2 |
| FillValueOldMessage | The Data Storage - Fill Value (Old) Message The fill value message stores a single data value which is returned to the application when an uninitialized data element is read f… | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9762.11310 |
2 |
| FilterDescription | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9753.4776 |
9 | |
| FilterDescription | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9762.11310 |
9 | |
| FilterPipelineMessage | This message describes the filter pipeline which should be applied to the data stream by providing filter identification numbers, flags, a name, and client data. | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9753.4776 |
5 |
| FilterPipelineMessage | This message describes the filter pipeline which should be applied to the data stream by providing filter identification numbers, flags, a name, and client data. | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9762.11310 |
2 |
| GroupMessage | The Symbol Table Message | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9753.4776 |
3 |
| GroupMessage | The Symbol Table Message | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9762.11310 |
3 |
| LinkMessage | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9753.4776 |
8 | |
| LinkMessage | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9762.11310 |
8 |
Microsoft.VisualBasic.Data.IO.HDF5.type
| Type | Summary | Package | Members |
|---|---|---|---|
| DataType | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9753.4776 |
4 | |
| DataType | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9762.11310 |
4 | |
| DataTypes | 对一些在HDF5文件之中的基础数据类型的枚举,例如长整型,双精度,字符串等 | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9753.4776 |
22 |
| DataTypes | 对一些在HDF5文件之中的基础数据类型的枚举,例如长整型,双精度,字符串等 | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9762.11310 |
22 |
| EnumDataType | Class for reading enum data type messages. | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9753.4776 |
3 |
| EnumDataType | Class for reading enum data type messages. | Microsoft.VisualBasic.Data.IO.HDF5 1.0.9762.11310 |
3 |
Microsoft.VisualBasic.Data.IO.ManagedSqlite
| Type | Summary | Package | Members |
|---|---|---|---|
| Extensions | Microsoft.VisualBasic.Data.IO.SQLite3 1.0.9753.4776 |
4 | |
| Extensions | Microsoft.VisualBasic.Data.IO.SQLite3 1.0.9762.11310 |
1 | |
| Sqlite3Database | MBW.Utilities.ManagedSqlite > https://github.com/LordMike/MBW.Utilities.ManagedSqlite > https://www.sqlite.org/fileformat.html | Microsoft.VisualBasic.Data.IO.SQLite3 1.0.9753.4776 |
6 |
| Sqlite3Database | MBW.Utilities.ManagedSqlite > https://github.com/LordMike/MBW.Utilities.ManagedSqlite > https://www.sqlite.org/fileformat.html | Microsoft.VisualBasic.Data.IO.SQLite3 1.0.9762.11310 |
6 |
| Sqlite3Settings | Microsoft.VisualBasic.Data.IO.SQLite3 1.0.9753.4776 |
2 | |
| Sqlite3Settings | Microsoft.VisualBasic.Data.IO.SQLite3 1.0.9762.11310 |
1 |
Microsoft.VisualBasic.Data.IO.ManagedSqlite.Core.Helpers
| Type | Summary | Package | Members |
|---|---|---|---|
| SqliteDataStream | Microsoft.VisualBasic.Data.IO.SQLite3 1.0.9753.4776 |
1 | |
| SqliteDataStream | Microsoft.VisualBasic.Data.IO.SQLite3 1.0.9762.11310 |
1 |
Microsoft.VisualBasic.Data.IO.ManagedSqlite.Core.Internal
| Type | Summary | Package | Members |
|---|---|---|---|
| ReaderBase | Microsoft.VisualBasic.Data.IO.SQLite3 1.0.9753.4776 |
18 | |
| ReaderBase | Microsoft.VisualBasic.Data.IO.SQLite3 1.0.9762.11310 |
18 |
Microsoft.VisualBasic.Data.IO.ManagedSqlite.Core.Objects
| Type | Summary | Package | Members |
|---|---|---|---|
| BTreeInteriorTablePage | SQLite B-Tree datastructure that contains other Interior / Leaf pages | Microsoft.VisualBasic.Data.IO.SQLite3 1.0.9753.4776 |
0 |
| BTreeInteriorTablePage | SQLite B-Tree datastructure that contains other Interior / Leaf pages | Microsoft.VisualBasic.Data.IO.SQLite3 1.0.9762.11310 |
0 |
| BTreeLeafTablePage | SQLite B-Tree datastructure that cells with data | Microsoft.VisualBasic.Data.IO.SQLite3 1.0.9753.4776 |
0 |
| BTreeLeafTablePage | SQLite B-Tree datastructure that cells with data | Microsoft.VisualBasic.Data.IO.SQLite3 1.0.9762.11310 |
0 |
| ColumnDataMeta | Microsoft.VisualBasic.Data.IO.SQLite3 1.0.9753.4776 |
5 | |
| ColumnDataMeta | Microsoft.VisualBasic.Data.IO.SQLite3 1.0.9762.11310 |
5 |
Microsoft.VisualBasic.Data.IO.ManagedSqlite.Core.Objects.BTreeLeafTablePage
Microsoft.VisualBasic.Data.IO.ManagedSqlite.Core.Objects.Enums
| Type | Summary | Package | Members |
|---|---|---|---|
| DataTypeParser | Microsoft.VisualBasic.Data.IO.SQLite3 1.0.9753.4776 |
1 | |
| DataTypeParser | Microsoft.VisualBasic.Data.IO.SQLite3 1.0.9762.11310 |
1 | |
| SqliteDataType | Microsoft.VisualBasic.Data.IO.SQLite3 1.0.9753.4776 |
9 | |
| SqliteDataType | Microsoft.VisualBasic.Data.IO.SQLite3 1.0.9762.11310 |
9 |
Microsoft.VisualBasic.Data.IO.ManagedSqlite.Core.Objects.Headers
| Type | Summary | Package | Members |
|---|---|---|---|
| DatabaseHeader | Microsoft.VisualBasic.Data.IO.SQLite3 1.0.9753.4776 |
23 | |
| DatabaseHeader | Microsoft.VisualBasic.Data.IO.SQLite3 1.0.9762.11310 |
23 |
Microsoft.VisualBasic.Data.IO.ManagedSqlite.Core.SQLSchema
Microsoft.VisualBasic.Data.IO.ManagedSqlite.Core.Tables
| Type | Summary | Package | Members |
|---|---|---|---|
| Sqlite3MasterTable | 主表主要是记录用户创建的数据表的结构定义以及在数据库文件之中的读取偏移位置 | Microsoft.VisualBasic.Data.IO.SQLite3 1.0.9753.4776 |
3 |
| Sqlite3MasterTable | 主表主要是记录用户创建的数据表的结构定义以及在数据库文件之中的读取偏移位置 | Microsoft.VisualBasic.Data.IO.SQLite3 1.0.9762.11310 |
3 |
| Sqlite3SchemaRow | Microsoft.VisualBasic.Data.IO.SQLite3 1.0.9753.4776 |
7 | |
| Sqlite3SchemaRow | Microsoft.VisualBasic.Data.IO.SQLite3 1.0.9762.11310 |
7 | |
| Sqlite3Table | Microsoft.VisualBasic.Data.IO.SQLite3 1.0.9753.4776 |
10 | |
| Sqlite3Table | Microsoft.VisualBasic.Data.IO.SQLite3 1.0.9762.11310 |
8 |
Microsoft.VisualBasic.Data.IO.ManagedSqlite.Writer
| Type | Summary | Package | Members |
|---|---|---|---|
| Sqlite3Column | SQLite 数据表的列定义。 | Microsoft.VisualBasic.Data.IO.SQLite3 1.0.9753.4776 |
8 |
| Sqlite3Column | SQLite 数据表的列定义。 | Microsoft.VisualBasic.Data.IO.SQLite3 1.0.9762.11310 |
8 |
| Sqlite3DataRow | 写入模块的内存数据行, 取值语义与读取侧 Sqlite3Row 保持一致(可按序号或列名访问)。 | Microsoft.VisualBasic.Data.IO.SQLite3 1.0.9753.4776 |
6 |
| Sqlite3DataRow | 写入模块的内存数据行, 取值语义与读取侧 Sqlite3Row 保持一致(可按序号或列名访问)。 | Microsoft.VisualBasic.Data.IO.SQLite3 1.0.9762.11310 |
6 |
| Sqlite3TableWriter | 单张数据表的可写模型, 提供链式的行级增删改查(CRUD)。所有修改在 Sqlite3Writer.Commit() 时落盘。 | Microsoft.VisualBasic.Data.IO.SQLite3 1.0.9753.4776 |
20 |
| Sqlite3TableWriter | 单张数据表的可写模型, 提供链式的行级增删改查(CRUD)。所有修改在 Sqlite3Writer.Commit() 时落盘。 | Microsoft.VisualBasic.Data.IO.SQLite3 1.0.9762.11310 |
20 |
| Sqlite3Writer | SQLite3 数据库写入器。 采用"内存模型 + 提交时整文件重建"的策略: 全部增删改在内存之中完成, 调用 Sqlite3Writer.Commit() 时一次性序列化重建整个数据库文件, 并以临时文件原子替换目标文件, 保证写入失败不会损坏原库。构建之后可以被本模块的读取器重新打开。 | Microsoft.VisualBasic.Data.IO.SQLite3 1.0.9753.4776 |
13 |
| Sqlite3Writer | SQLite3 数据库写入器。 采用"内存模型 + 提交时整文件重建"的策略: 全部增删改在内存之中完成, 调用 Sqlite3Writer.Commit() 时一次性序列化重建整个数据库文件, 并以临时文件原子替换目标文件, 保证写入失败不会损坏原库。构建之后可以被本模块的读取器重新打开。 | Microsoft.VisualBasic.Data.IO.SQLite3 1.0.9762.11310 |
13 |
Microsoft.VisualBasic.Data.IO.ManagedSqlite.Writer.Internal
| Type | Summary | Package | Members |
|---|---|---|---|
| BTreeNode | 表 B 树的节点(叶节点或内部节点), 页号在结构构建完成之后单独分配。 | Microsoft.VisualBasic.Data.IO.SQLite3 1.0.9753.4776 |
1 |
| BTreeNode | 表 B 树的节点(叶节点或内部节点), 页号在结构构建完成之后单独分配。 | Microsoft.VisualBasic.Data.IO.SQLite3 1.0.9762.11310 |
1 |
| BTreeWriter | 表 B 树写入器: 负责容量计算、自底向上建树、cell 编码与页号分配。 | Microsoft.VisualBasic.Data.IO.SQLite3 1.0.9753.4776 |
9 |
| BTreeWriter | 表 B 树写入器: 负责容量计算、自底向上建树、cell 编码与页号分配。 | Microsoft.VisualBasic.Data.IO.SQLite3 1.0.9762.11310 |
9 |
| LeafEntry | 表 B 树叶页之中的一条记录(按 rowid 升序排列) | Microsoft.VisualBasic.Data.IO.SQLite3 1.0.9753.4776 |
0 |
| LeafEntry | 表 B 树叶页之中的一条记录(按 rowid 升序排列) | Microsoft.VisualBasic.Data.IO.SQLite3 1.0.9762.11310 |
0 |
| PageBuffer | 单个数据库页的字节缓冲, 提供大端整数写入与 B 树页组装能力。 | Microsoft.VisualBasic.Data.IO.SQLite3 1.0.9753.4776 |
6 |
| PageBuffer | 单个数据库页的字节缓冲, 提供大端整数写入与 B 树页组装能力。 | Microsoft.VisualBasic.Data.IO.SQLite3 1.0.9762.11310 |
6 |
| RecordEncoder | SQLite 记录体(record)编码器。 与读取侧 Sqlite3Table.ReadValue 严格对称: 记录体 = varint(headerSize) + 各列 serial type(varint) + 各列数据。 > https://www.sqlite.org/fileformat2.html#record_format | Microsoft.VisualBasic.Data.IO.SQLite3 1.0.9753.4776 |
5 |
| RecordEncoder | SQLite 记录体(record)编码器。 与读取侧 Sqlite3Table.ReadValue 严格对称: 记录体 = varint(headerSize) + 各列 serial type(varint) + 各列数据。 > https://www.sqlite.org/fileformat2.html#record_format | Microsoft.VisualBasic.Data.IO.SQLite3 1.0.9762.11310 |
5 |
| SqliteFileSerializer | 把内存模型序列化为一个完整的 SQLite3 数据库文件。 页号分配策略: 用户表从第 2 页起按 pre-order 分配; sqlite_master 的根页固定为第 1 页, 其子页在所有用户表页之后分配; 溢出页最后分配。这样父页始终可以引用已经确定的子页号。 | Microsoft.VisualBasic.Data.IO.SQLite3 1.0.9753.4776 |
3 |
| SqliteFileSerializer | 把内存模型序列化为一个完整的 SQLite3 数据库文件。 页号分配策略: 用户表从第 2 页起按 pre-order 分配; sqlite_master 的根页固定为第 1 页, 其子页在所有用户表页之后分配; 溢出页最后分配。这样父页始终可以引用已经确定的子页号。 | Microsoft.VisualBasic.Data.IO.SQLite3 1.0.9762.11310 |
3 |
| WriterTableSnapshot | 一张表在提交时的快照数据 | Microsoft.VisualBasic.Data.IO.SQLite3 1.0.9753.4776 |
1 |
| WriterTableSnapshot | 一张表在提交时的快照数据 | Microsoft.VisualBasic.Data.IO.SQLite3 1.0.9762.11310 |
1 |
Microsoft.VisualBasic.Data.IO.MessagePack
| Type | Summary | Package | Members |
|---|---|---|---|
| SerializationContext | Microsoft.VisualBasic.Data.IO.MessagePack 1.0.9753.4776 |
3 | |
| SerializationContext | Microsoft.VisualBasic.Data.IO.MessagePack 1.0.9762.11310 |
3 |
Microsoft.VisualBasic.Data.IO.MessagePack.Constants
| Type | Summary | Package | Members |
|---|---|---|---|
| MsgPackFormats | 枚举所有的基础类型常量 | Microsoft.VisualBasic.Data.IO.MessagePack 1.0.9753.4776 |
31 |
| MsgPackFormats | 枚举所有的基础类型常量 | Microsoft.VisualBasic.Data.IO.MessagePack 1.0.9762.11310 |
31 |
Microsoft.VisualBasic.Data.IO.MessagePack.Serialization
| Type | Summary | Package | Members |
|---|---|---|---|
| MessagePackMemberAttribute | 必须要使用这个自定义属性标记在对象属性上才会被加入序列化之中 | Microsoft.VisualBasic.Data.IO.MessagePack 1.0.9753.4776 |
3 |
| MessagePackMemberAttribute | 必须要使用这个自定义属性标记在对象属性上才会被加入序列化之中 | Microsoft.VisualBasic.Data.IO.MessagePack 1.0.9762.11310 |
3 |
| SchemaProvider | Microsoft.VisualBasic.Data.IO.MessagePack 1.0.9753.4776 |
3 | |
| SchemaProvider | Microsoft.VisualBasic.Data.IO.MessagePack 1.0.9762.11310 |
3 |
Microsoft.VisualBasic.Data.IO.Xpt
| Type | Summary | Package | Members |
|---|---|---|---|
| IO | Contains static convenience methods for low level operations (typically close to IO). | Microsoft.VisualBasic.Data.Storage 1.0.9753.4776 |
9 |
| IO | Contains static convenience methods for low level operations (typically close to IO). | Microsoft.VisualBasic.Data.Storage 1.0.9762.11310 |
9 |
| PrimitiveUtils | Microsoft.VisualBasic.Data.Storage 1.0.9753.4776 |
20 | |
| PrimitiveUtils | Microsoft.VisualBasic.Data.Storage 1.0.9762.11310 |
20 | |
| SASXportFileIterator | SAS XPT file reader | Microsoft.VisualBasic.Data.Storage 1.0.9753.4776 |
4 |
| SASXportFileIterator | SAS XPT file reader | Microsoft.VisualBasic.Data.Storage 1.0.9762.11310 |
4 |
Microsoft.VisualBasic.Data.NLP
| Type | Summary | Package | Members |
|---|---|---|---|
| Article | 文章正文数据模型 | Microsoft.VisualBasic.Data.TrinityNLP 1.0.9753.4776 |
6 |
| Article | 文章正文数据模型 | Microsoft.VisualBasic.Data.TrinityNLP 1.0.9762.11310 |
6 |
| Bigram | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
6 | |
| Bigram | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
6 | |
| DocumentTFIDF | TF-IDF algorithm: http://en.wikipedia.org/wiki/Tf*idf | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
7 |
| DocumentTFIDF | TF-IDF algorithm: http://en.wikipedia.org/wiki/Tf*idf | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
7 |
| Html2Article | 解析Html页面的文章正文内容,基于文本密度的HTML正文提取类 https://github.com/stanzhai/Html2Article http://www.cnblogs.com/jasondan/p/3497757.html Date: 2012/12/30 Update: 2013/7/10 优化文章头部分析… | Microsoft.VisualBasic.Data.TrinityNLP 1.0.9753.4776 |
8 |
| Html2Article | 解析Html页面的文章正文内容,基于文本密度的HTML正文提取类 https://github.com/stanzhai/Html2Article http://www.cnblogs.com/jasondan/p/3497757.html Date: 2012/12/30 Update: 2013/7/10 优化文章头部分析… | Microsoft.VisualBasic.Data.TrinityNLP 1.0.9762.11310 |
8 |
| NLPExtensions | Microsoft.VisualBasic.Data.TrinityNLP 1.0.9753.4776 |
2 | |
| NLPExtensions | Microsoft.VisualBasic.Data.TrinityNLP 1.0.9762.11310 |
2 | |
| Stemmer | Stemmer, implementing the Porter Stemming Algorithm The Stemmer class transforms a word into its root form. | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
6 |
| Stemmer | Stemmer, implementing the Porter Stemming Algorithm The Stemmer class transforms a word into its root form. | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
6 |
| StopWords | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
6 | |
| StopWords | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
3 | |
| Text | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
8 | |
| Text | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
7 | |
| TextRank | This module implements TextRank, an unsupervised keyword significance scoring algorithm. | Microsoft.VisualBasic.Data.TrinityNLP 1.0.9753.4776 |
2 |
| TextRank | This module implements TextRank, an unsupervised keyword significance scoring algorithm. | Microsoft.VisualBasic.Data.TrinityNLP 1.0.9762.11310 |
2 |
| TFIDF | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
10 | |
| TFIDF | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
10 | |
| UrlUtility | Url处理辅助类 | Microsoft.VisualBasic.Data.TrinityNLP 1.0.9753.4776 |
1 |
| UrlUtility | Url处理辅助类 | Microsoft.VisualBasic.Data.TrinityNLP 1.0.9762.11310 |
1 |
Microsoft.VisualBasic.Data.NLP.BM25
| Type | Summary | Package | Members |
|---|---|---|---|
| BM25Engine | BM25 引擎。 使用方式: Dim engine As New BM25Engine(k1:=1.2, b:=0.75) engine.AddDocument(0, {"苹果", "是", "一种", "水果"}) engine.AddDocument(1, {"苹果", "公司", "发布", "手机"}) engine.Bu… | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
27 |
| BM25Engine | BM25 引擎。 使用方式: Dim engine As New BM25Engine(k1:=1.2, b:=0.75) engine.AddDocument(0, {"苹果", "是", "一种", "水果"}) engine.AddDocument(1, {"苹果", "公司", "发布", "手机"}) engine.Bu… | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
27 |
| Document | 文档表示:ID + 分词后的词元列表。 | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
4 |
| Document | 文档表示:ID + 分词后的词元列表。 | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
4 |
| IdfVariant | IDF 计算方式。 | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
4 |
| IdfVariant | IDF 计算方式。 | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
4 |
| SearchResult | 单条检索结果。 | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
4 |
| SearchResult | 单条检索结果。 | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
4 |
| TermContribution | 单个查询词的贡献明细。 | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
6 |
| TermContribution | 单个查询词的贡献明细。 | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
6 |
Microsoft.VisualBasic.Data.NLP.ChineseTokenizer
| Type | Summary | Package | Members |
|---|---|---|---|
| HmmModel | 基于 HMM(隐马尔可夫模型)的未登录词识别模块。 采用 BMES 四态标注体系: - B — 词首字符(Begin) - M — 词中字符(Middle) - E — 词尾字符(End) - S — 单字成词(Single) 模型参数: - 初始概率 π — 句子首字符处于各状态的概率 - 转移概率 A — 状态 i 到状态 j 的转移概率… | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
8 |
| HmmModel | 基于 HMM(隐马尔可夫模型)的未登录词识别模块。 采用 BMES 四态标注体系: - B — 词首字符(Begin) - M — 词中字符(Middle) - E — 词尾字符(End) - S — 单字成词(Single) 模型参数: - 初始概率 π — 句子首字符处于各状态的概率 - 转移概率 A — 状态 i 到状态 j 的转移概率… | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
8 |
| MaxMatchTokenizer | 基于词典的最大匹配分词算法集合,包含: - FMM — 正向最大匹配(Forward Maximum Matching) - BMM — 逆向最大匹配(Backward Maximum Matching) - BiMM — 双向最大匹配(Bidirectional Maximum Matching),取切分歧义较少者 这类算法实现简单、效率高,适合… | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
4 |
| MaxMatchTokenizer | 基于词典的最大匹配分词算法集合,包含: - FMM — 正向最大匹配(Forward Maximum Matching) - BMM — 逆向最大匹配(Backward Maximum Matching) - BiMM — 双向最大匹配(Bidirectional Maximum Matching),取切分歧义较少者 这类算法实现简单、效率高,适合… | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
4 |
| SegmentAlgorithm | 分词算法枚举,供 Tokenizer 选择内部策略。 | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
8 |
| SegmentAlgorithm | 分词算法枚举,供 Tokenizer 选择内部策略。 | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
8 |
| Tokenizer | 中文分词器主入口,整合词典、最大匹配算法与 HMM 模型。 工作流程(Hybrid 模式): 1. | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
10 |
| Tokenizer | 中文分词器主入口,整合词典、最大匹配算法与 HMM 模型。 工作流程(Hybrid 模式): 1. | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
10 |
| WordDictionary | 基于 Trie(前缀树)的中文词典实现。 支持快速前缀查询、整词查询以及词频统计。 该结构在最大匹配算法中用于 O(L) 复度的最长词查找, 其中 L 为待匹配子串的最大长度。 | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
12 |
| WordDictionary | 基于 Trie(前缀树)的中文词典实现。 支持快速前缀查询、整词查询以及词频统计。 该结构在最大匹配算法中用于 O(L) 复度的最长词查找, 其中 L 为待匹配子串的最大长度。 | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
12 |
Microsoft.VisualBasic.Data.NLP.ChineseTokenizer.HuggingFace
| Type | Summary | Package | Members |
|---|---|---|---|
| AddedTokenInfo | tokenizer.json 中 added_tokens 数组的元素。 | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
8 |
| AddedTokenInfo | tokenizer.json 中 added_tokens 数组的元素。 | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
8 |
| AddedVocabulary | 追加词表:在归一化与预分词之前优先命中的 token 集合。 | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
6 |
| AddedVocabulary | 追加词表:在归一化与预分词之前优先命中的 token 集合。 | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
6 |
| BertNormalizer | BERT 的归一化器:清理控制字符、可选地在 CJK 字符两侧补空格、去变音符号与小写化。 | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
2 |
| BertNormalizer | BERT 的归一化器:清理控制字符、可选地在 CJK 字符两侧补空格、去变音符号与小写化。 | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
2 |
| BertPostProcessor | BERT 的后处理器:在序列两端补上 [CLS] 与 [SEP]。 | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
1 |
| BertPostProcessor | BERT 的后处理器:在序列两端补上 [CLS] 与 [SEP]。 | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
1 |
| BpeModel | 字节对编码(Byte Pair Encoding)子词模型。 | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
9 |
| BpeModel | 字节对编码(Byte Pair Encoding)子词模型。 | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
9 |
| ByteFallbackDecoder | 字节回退解码器:把 <0xXX> 形式的 token 还原为原始字节。 | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
1 |
| ByteFallbackDecoder | 字节回退解码器:把 <0xXX> 形式的 token 还原为原始字节。 | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
1 |
| ByteLevelAlphabet | GPT-2 的 bytes_to_unicode 字节-字符双向映射表。 | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
7 |
| ByteLevelAlphabet | GPT-2 的 bytes_to_unicode 字节-字符双向映射表。 | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
7 |
| ByteLevelDecoder | ByteLevel 解码器:把映射字符还原为字节序列之后按 UTF-8 解码。 | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
1 |
| ByteLevelDecoder | ByteLevel 解码器:把映射字符还原为字节序列之后按 UTF-8 解码。 | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
1 |
| ByteLevelPostProcessor | ByteLevel 后处理器。 | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
1 |
| ByteLevelPostProcessor | ByteLevel 后处理器。 | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
1 |
| ByteLevelPreTokenizer | ByteLevel 预分词器:把分片按 UTF-8 编码后逐字节映射为可见字符。 | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
1 |
| ByteLevelPreTokenizer | ByteLevel 预分词器:把分片按 UTF-8 编码后逐字节映射为可见字符。 | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
1 |
| DigitsPreTokenizer | 数字切分预分词器。 | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
1 |
| DigitsPreTokenizer | 数字切分预分词器。 | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
1 |
| Encoding | 编码结果,等价于 HuggingFace 中的 Encoding 对象。 | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
7 |
| Encoding | 编码结果,等价于 HuggingFace 中的 Encoding 对象。 | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
7 |
| FixedLengthPreTokenizer | 定长切分预分词器。 | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
0 |
| FixedLengthPreTokenizer | 定长切分预分词器。 | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
0 |
| FuseDecoder | 熔合解码器:直接拼接全部 token。 | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
1 |
| FuseDecoder | 熔合解码器:直接拼接全部 token。 | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
1 |
| HuggingFaceTokenizer | 与 Hugging Face transformers / tokenizers 兼容的子词分词器。 | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
17 |
| HuggingFaceTokenizer | 与 Hugging Face transformers / tokenizers 兼容的子词分词器。 | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
17 |
| IDecoder | 解码器契约,对应 tokenizer.json 中的 decoder 段。 | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
1 |
| IDecoder | 解码器契约,对应 tokenizer.json 中的 decoder 段。 | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
1 |
| INormalizer | 文本归一化器契约,对应 tokenizer.json 中的 normalizer 段。 | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
1 |
| INormalizer | 文本归一化器契约,对应 tokenizer.json 中的 normalizer 段。 | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
1 |
| IPostProcessor | 后处理器契约,对应 tokenizer.json 中的 post_processor 段。 | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
1 |
| IPostProcessor | 后处理器契约,对应 tokenizer.json 中的 post_processor 段。 | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
1 |
| IPreTokenizer | 预分词器契约,对应 tokenizer.json 中的 pre_tokenizer 段。 | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
1 |
| IPreTokenizer | 预分词器契约,对应 tokenizer.json 中的 pre_tokenizer 段。 | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
1 |
| ITokenizerModel | 子词模型契约:BPE / WordPiece / Unigram 均实现该接口。 | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
4 |
| ITokenizerModel | 子词模型契约:BPE / WordPiece / Unigram 均实现该接口。 | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
4 |
| JsonNode | 一个轻量级的 json 文档对象模型。 | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
13 |
| JsonNode | 一个轻量级的 json 文档对象模型。 | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
13 |
| JsonNodeType | json 节点的数据类型。 | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
6 |
| JsonNodeType | json 节点的数据类型。 | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
6 |
| JsonReader | 供 HuggingFace 分词器模型文件使用的轻量级 json 解析器。 | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
3 |
| JsonReader | 供 HuggingFace 分词器模型文件使用的轻量级 json 解析器。 | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
3 |
| LowercaseNormalizer | 小写化归一化器。 | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
1 |
| LowercaseNormalizer | 小写化归一化器。 | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
1 |
| MetaspaceDecoder | Metaspace 解码器:把 ▁ 还原为空格。 | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
1 |
| MetaspaceDecoder | Metaspace 解码器:把 ▁ 还原为空格。 | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
1 |
| MetaspacePreTokenizer | Metaspace 预分词器:把空格替换为 ▁(U+2581),SentencePiece 系列专用。 | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
3 |
| MetaspacePreTokenizer | Metaspace 预分词器:把空格替换为 ▁(U+2581),SentencePiece 系列专用。 | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
3 |
| ModelSection | tokenizer.json 中 model 段的强类型描述。 | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
13 |
| ModelSection | tokenizer.json 中 model 段的强类型描述。 | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
13 |
| NmtNormalizer | NMT 归一化器:把若干不可见的控制字符剔除,并把各类空白统一为普通空格。 | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
1 |
| NmtNormalizer | NMT 归一化器:把若干不可见的控制字符剔除,并把各类空白统一为普通空格。 | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
1 |
| NullDecoder | 空解码器:直接把 token 首尾相接。 | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
2 |
| NullDecoder | 空解码器:直接把 token 首尾相接。 | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
2 |
| NullNormalizer | 空归一化器:原样返回输入文本。 | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
2 |
| NullNormalizer | 空归一化器:原样返回输入文本。 | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
2 |
| NullPostProcessor | 空后处理器:不对 token 序列做任何改动。 | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
2 |
| NullPostProcessor | 空后处理器:不对 token 序列做任何改动。 | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
2 |
| PrecompiledNormalizer | SentencePiece 的 Precompiled 归一化器。 | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
2 |
| PrecompiledNormalizer | SentencePiece 的 Precompiled 归一化器。 | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
2 |
| PrependNormalizer | 前缀追加归一化器,常见于 Llama 系列模型(在句首补一个 ▁)。 | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
1 |
| PrependNormalizer | 前缀追加归一化器,常见于 Llama 系列模型(在句首补一个 ▁)。 | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
1 |
| PreTokenizerBase | 预分词器的抽象基类,负责处理"逐分片应用 + 跳过特殊分片"这一通用逻辑。 | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
2 |
| PreTokenizerBase | 预分词器的抽象基类,负责处理"逐分片应用 + 跳过特殊分片"这一通用逻辑。 | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
2 |
| PunctuationPreTokenizer | 按标点符号切分的预分词器。 | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
1 |
| PunctuationPreTokenizer | 按标点符号切分的预分词器。 | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
1 |
| ReplaceDecoder | 替换解码器。 | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
1 |
| ReplaceDecoder | 替换解码器。 | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
1 |
| ReplaceNormalizer | 字符串/正则替换归一化器。 | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
2 |
| ReplaceNormalizer | 字符串/正则替换归一化器。 | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
2 |
| RobertaPostProcessor | RoBERTa 的后处理器:在序列两端补上 <s> 与 </s>。 | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
1 |
| RobertaPostProcessor | RoBERTa 的后处理器:在序列两端补上 <s> 与 </s>。 | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
1 |
| SequenceDecoder | 组合解码器:按顺序依次应用子解码器。 | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
1 |
| SequenceDecoder | 组合解码器:按顺序依次应用子解码器。 | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
1 |
| SequenceNormalizer | 组合归一化器:按顺序依次应用子归一化器。 | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
1 |
| SequenceNormalizer | 组合归一化器:按顺序依次应用子归一化器。 | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
1 |
| SequencePostProcessor | 组合后处理器:按顺序依次应用子后处理器。 | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
1 |
| SequencePostProcessor | 组合后处理器:按顺序依次应用子后处理器。 | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
1 |
| SequencePreTokenizer | 组合预分词器:把上一级产出的分片依次交给子预分词器继续细分。 | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
1 |
| SequencePreTokenizer | 组合预分词器:把上一级产出的分片依次交给子预分词器继续细分。 | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
1 |
| Split | 预分词之后产生的文本分片。 | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
6 |
| Split | 预分词之后产生的文本分片。 | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
6 |
| SplitBehavior | Split 预分词器对匹配片段的处理方式。 | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
10 |
| SplitBehavior | Split 预分词器对匹配片段的处理方式。 | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
10 |
| SplitPreTokenizer | 基于正则表达式的 Split 预分词器。 | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
2 |
| SplitPreTokenizer | 基于正则表达式的 Split 预分词器。 | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
2 |
| StripAccentsNormalizer | 去除变音符号的归一化器。 | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
1 |
| StripAccentsNormalizer | 去除变音符号的归一化器。 | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
1 |
| StripDecoder | 首尾裁剪解码器。 | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
1 |
| StripDecoder | 首尾裁剪解码器。 | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
1 |
| StripNormalizer | 去除首尾空白字符的归一化器。 | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
1 |
| StripNormalizer | 去除首尾空白字符的归一化器。 | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
1 |
| TemplatePostProcessor | 模板后处理器,对应 TemplateProcessing。 | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
1 |
| TemplatePostProcessor | 模板后处理器,对应 TemplateProcessing。 | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
1 |
| Token | 单个 token 的切分结果。 | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
9 |
| Token | 单个 token 的切分结果。 | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
9 |
| TokenizerConfig | tokenizer_config.json 的强类型描述。 | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
12 |
| TokenizerConfig | tokenizer_config.json 的强类型描述。 | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
12 |
| TokenizerFactory | 依据 tokenizer.json 中各配置节点的 type 字段构造流水线组件。 | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
10 |
| TokenizerFactory | 依据 tokenizer.json 中各配置节点的 type 字段构造流水线组件。 | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
10 |
| TokenizerJson | tokenizer.json 的强类型描述。 | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
11 |
| TokenizerJson | tokenizer.json 的强类型描述。 | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
11 |
| UnicodeNormalizer | Unicode 标准化归一化器:NFC / NFD / NFKC / NFKD。 | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
1 |
| UnicodeNormalizer | Unicode 标准化归一化器:NFC / NFD / NFKC / NFKD。 | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
1 |
| UnigramModel | Unigram 语言模型子词切分(SentencePiece)。 | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
6 |
| UnigramModel | Unigram 语言模型子词切分(SentencePiece)。 | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
6 |
| WhitespacePreTokenizer | 按单词/标点边界切分的预分词器(BERT 的 Whitespace)。 | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
0 |
| WhitespacePreTokenizer | 按单词/标点边界切分的预分词器(BERT 的 Whitespace)。 | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
0 |
| WhitespaceSplitPreTokenizer | 仅按空白字符切分的预分词器(WhitespaceSplit)。 | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
0 |
| WhitespaceSplitPreTokenizer | 仅按空白字符切分的预分词器(WhitespaceSplit)。 | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
0 |
| WordPieceDecoder | WordPiece 解码器:去除续接前缀并以空格连接。 | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
2 |
| WordPieceDecoder | WordPiece 解码器:去除续接前缀并以空格连接。 | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
2 |
| WordPieceModel | WordPiece 子词模型(BERT 系列)。 | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
5 |
| WordPieceModel | WordPiece 子词模型(BERT 系列)。 | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
5 |
Microsoft.VisualBasic.Data.NLP.ChineseTokenizer.HuggingFace.AddedVocabulary
Microsoft.VisualBasic.Data.NLP.ChineseTokenizer.HuggingFace.TemplatePostProcessor
| Type | Summary | Package | Members |
|---|---|---|---|
| TemplatePiece | 模板片段:TemplatePiece.IsSequence 为真时表示序列占位符。 | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
3 |
| TemplatePiece | 模板片段:TemplatePiece.IsSequence 为真时表示序列占位符。 | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
3 |
Microsoft.VisualBasic.Data.NLP.ChineseTokenizer.HuggingFace.UnigramModel
Microsoft.VisualBasic.Data.NLP.LDA
| Type | Summary | Package | Members |
|---|---|---|---|
| Corpus | a set of documents 语料库,也就是文档集合 @author hankcs | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
8 |
| Corpus | a set of documents 语料库,也就是文档集合 @author hankcs | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
8 |
| Debugger | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
3 | |
| Debugger | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
3 | |
| DocumentLoader | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
2 | |
| DocumentLoader | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
2 | |
| GibbsSamplingTask | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
1 | |
| GibbsSamplingTask | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
1 | |
| LdaGibbsSampler | Gibbs sampler for estimating the best assignments of topics for words and documents in a corpus. | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
26 |
| LdaGibbsSampler | Gibbs sampler for estimating the best assignments of topics for words and documents in a corpus. | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
26 |
| LdaInterpreter | @author hankcs | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
3 |
| LdaInterpreter | @author hankcs | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
3 |
| Vocabulary | a word set mapping between the word and its index id value @author hankcs | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
6 |
| Vocabulary | a word set mapping between the word and its index id value @author hankcs | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
6 |
Microsoft.VisualBasic.Data.NLP.Model
| Type | Summary | Package | Members |
|---|---|---|---|
| Counter | counter for a specific token string | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
6 |
| Counter | counter for a specific token string | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
6 |
| Paragraph | a collection of the text Sentence. | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
5 |
| Paragraph | a collection of the text Sentence. | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
5 |
| Sentence | a collection of the Word | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
9 |
| Sentence | a collection of the Word | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
5 |
| SentenceCharWalker | Parse a line of sentence to a set of the word tokens | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
1 |
| SentenceCharWalker | Parse a line of sentence to a set of the word tokens | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
1 |
| TokenCounter | 计数器 最初代码来自Ansj的tree-split包中的love.cq.util; @author fangy | Microsoft.VisualBasic.Data.NLP 1.0.9753.4776 |
7 |
| TokenCounter | 计数器 最初代码来自Ansj的tree-split包中的love.cq.util; @author fangy | Microsoft.VisualBasic.Data.NLP 1.0.9762.11310 |
7 |
Microsoft.VisualBasic.Data.NLP.POSTagger
| Type | Summary | Package | Members |
|---|---|---|---|
| BrillTransformationRules | Microsoft.VisualBasic.Data.TrinityNLP 1.0.9753.4776 |
5 | |
| BrillTransformationRules | Microsoft.VisualBasic.Data.TrinityNLP 1.0.9762.11310 |
5 |
Microsoft.VisualBasic.Data.NLP.Word2Vec
| Type | Summary | Package | Members |
|---|---|---|---|
| Extensions | Microsoft.VisualBasic.Data.NLP.Word2Vec 5.0.9753.4776 |
1 | |
| Extensions | Microsoft.VisualBasic.Data.NLP.Word2Vec 5.0.9762.11310 |
1 | |
| TrainMethod | Microsoft.VisualBasic.Data.NLP.Word2Vec 5.0.9753.4776 |
4 | |
| TrainMethod | Microsoft.VisualBasic.Data.NLP.Word2Vec 5.0.9762.11310 |
4 | |
| VectorModel | the word embedding vector set | Microsoft.VisualBasic.Data.NLP.Word2Vec 5.0.9753.4776 |
11 |
| VectorModel | the word embedding vector set | Microsoft.VisualBasic.Data.NLP.Word2Vec 5.0.9762.11310 |
7 |
| Word2Vec | Created by fangy on 13-12-19. | Microsoft.VisualBasic.Data.NLP.Word2Vec 5.0.9753.4776 |
12 |
| Word2Vec | Created by fangy on 13-12-19. | Microsoft.VisualBasic.Data.NLP.Word2Vec 5.0.9762.11310 |
12 |
| WordNeuron | Created by fangy on 13-12-17. | Microsoft.VisualBasic.Data.NLP.Word2Vec 5.0.9753.4776 |
0 |
| WordNeuron | Created by fangy on 13-12-17. | Microsoft.VisualBasic.Data.NLP.Word2Vec 5.0.9762.11310 |
0 |
| WordScore | the word score of the vector model | Microsoft.VisualBasic.Data.NLP.Word2Vec 5.0.9753.4776 |
4 |
| WordScore | the word score of the vector model | Microsoft.VisualBasic.Data.NLP.Word2Vec 5.0.9762.11310 |
4 |
Microsoft.VisualBasic.Data.NumericTableExtensions
| Type | Summary | Package | Members |
|---|---|---|---|
| EncodedColumn | 单列编码结果。 数值/布尔/枚举/日期/时间间隔类型的列只会展开为一列;而字符串、字符以及其它 未知类型的列会按照水平值展开成多列(one-hot 二进制编码),因此这里使用数组 来承载展开之后的列名与列向量。 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 |
Microsoft.VisualBasic.Data.Plots
| Type | Summary | Package | Members |
|---|---|---|---|
| AreaPlot | 基础面积图(曲线下面积填充) | Microsoft.VisualBasic.Data.DataPlot 1.0.9753.4776 |
6 |
| AreaPlot | 基础面积图(曲线下面积填充) | Microsoft.VisualBasic.Data.DataPlot 1.0.9762.11310 |
5 |
| AxisSide | 坐标轴 | Microsoft.VisualBasic.Data.DataPlot 1.0.9753.4776 |
4 |
| AxisSide | 坐标轴 | Microsoft.VisualBasic.Data.DataPlot 1.0.9762.11310 |
4 |
| BarPlot | 柱状图(分类数据) | Microsoft.VisualBasic.Data.DataPlot 1.0.9753.4776 |
7 |
| BarPlot | 柱状图(分类数据) | Microsoft.VisualBasic.Data.DataPlot 1.0.9762.11310 |
7 |
| BoxGroup | 盒须图分组 | Microsoft.VisualBasic.Data.DataPlot 1.0.9753.4776 |
3 |
| BoxGroup | 盒须图分组 | Microsoft.VisualBasic.Data.DataPlot 1.0.9762.11310 |
3 |
| BoxPlot | 盒须图(Box Plot / Box-and-Whisker) | Microsoft.VisualBasic.Data.DataPlot 1.0.9753.4776 |
5 |
| BoxPlot | 盒须图(Box Plot / Box-and-Whisker) | Microsoft.VisualBasic.Data.DataPlot 1.0.9762.11310 |
5 |
| BubblePlot | 气泡图(三维散点,气泡半径映射第三维) | Microsoft.VisualBasic.Data.DataPlot 1.0.9753.4776 |
8 |
| BubblePlot | 气泡图(三维散点,气泡半径映射第三维) | Microsoft.VisualBasic.Data.DataPlot 1.0.9762.11310 |
7 |
| BubbleSeries | 气泡图数据系列(X/Y 定位,Sizes 映射第三维) | Microsoft.VisualBasic.Data.DataPlot 1.0.9753.4776 |
1 |
| BubbleSeries | 气泡图数据系列(X/Y 定位,Sizes 映射第三维) | Microsoft.VisualBasic.Data.DataPlot 1.0.9762.11310 |
1 |
| ChordLink | 和弦图连接(可选辅助结构,用于显式指定连接而非矩阵) | Microsoft.VisualBasic.Data.DataPlot 1.0.9753.4776 |
4 |
| ChordLink | 和弦图连接(可选辅助结构,用于显式指定连接而非矩阵) | Microsoft.VisualBasic.Data.DataPlot 1.0.9762.11310 |
4 |
| ChordPlot | 和弦图(圆形布局,节点弧段 + 贝塞尔曲线和弦) | Microsoft.VisualBasic.Data.DataPlot 1.0.9753.4776 |
11 |
| ChordPlot | 和弦图(圆形布局,节点弧段 + 贝塞尔曲线和弦) | Microsoft.VisualBasic.Data.DataPlot 1.0.9762.11310 |
11 |
| HeatmapPlot | 热图 | Microsoft.VisualBasic.Data.DataPlot 1.0.9753.4776 |
8 |
| HeatmapPlot | 热图 | Microsoft.VisualBasic.Data.DataPlot 1.0.9762.11310 |
8 |
| HistogramPlot | 直方图 | Microsoft.VisualBasic.Data.DataPlot 1.0.9753.4776 |
6 |
| HistogramPlot | 直方图 | Microsoft.VisualBasic.Data.DataPlot 1.0.9762.11310 |
6 |
| JitterPlot | Jitter 散点图(分组数据在 X 方向随机抖动以避免遮挡) | Microsoft.VisualBasic.Data.DataPlot 1.0.9753.4776 |
9 |
| JitterPlot | Jitter 散点图(分组数据在 X 方向随机抖动以避免遮挡) | Microsoft.VisualBasic.Data.DataPlot 1.0.9762.11310 |
9 |
| LinePlot | 折线图(默认无标记,可单独配置) | Microsoft.VisualBasic.Data.DataPlot 1.0.9753.4776 |
2 |
| LinePlot | 折线图(默认无标记,可单独配置) | Microsoft.VisualBasic.Data.DataPlot 1.0.9762.11310 |
1 |
| MarkerShape | 标记形状 | Microsoft.VisualBasic.Data.DataPlot 1.0.9753.4776 |
7 |
| MarkerShape | 标记形状 | Microsoft.VisualBasic.Data.DataPlot 1.0.9762.11310 |
7 |
| PiePlot | 饼图 | Microsoft.VisualBasic.Data.DataPlot 1.0.9753.4776 |
9 |
| PiePlot | 饼图 | Microsoft.VisualBasic.Data.DataPlot 1.0.9762.11310 |
9 |
| PlotEngine | 绘图引擎:所有图表类型的基类与公共能力。 使用 GDI+ 在内存 Bitmap 上绘制,最后导出为 PNG。 | Microsoft.VisualBasic.Data.DataPlot 1.0.9753.4776 |
23 |
| PlotEngine | 绘图引擎:所有图表类型的基类与公共能力。 使用 GDI+ 在内存 Bitmap 上绘制,最后导出为 PNG。 | Microsoft.VisualBasic.Data.DataPlot 1.0.9762.11310 |
22 |
| PlotTheme | 图表主题:包含颜色、字体、线宽、边距等所有视觉样式参数。 可直接使用预定义主题,也可基于预定义主题派生自定义主题。 | Microsoft.VisualBasic.Data.DataPlot 1.0.9753.4776 |
38 |
| PlotTheme | 图表主题:包含颜色、字体、线宽、边距等所有视觉样式参数。 可直接使用预定义主题,也可基于预定义主题派生自定义主题。 | Microsoft.VisualBasic.Data.DataPlot 1.0.9762.11310 |
17 |
| RadarPlot | 雷达图(蛛网图,多维度多系列叠加) | Microsoft.VisualBasic.Data.DataPlot 1.0.9753.4776 |
8 |
| RadarPlot | 雷达图(蛛网图,多维度多系列叠加) | Microsoft.VisualBasic.Data.DataPlot 1.0.9762.11310 |
8 |
| RosePlot | 南丁格尔玫瑰图(等角度扇区,半径与数值成比例) | Microsoft.VisualBasic.Data.DataPlot 1.0.9753.4776 |
9 |
| RosePlot | 南丁格尔玫瑰图(等角度扇区,半径与数值成比例) | Microsoft.VisualBasic.Data.DataPlot 1.0.9762.11310 |
9 |
| SankeyPlot | 桑基图(Sankey Diagram) | Microsoft.VisualBasic.Data.DataPlot 1.0.9753.4776 |
3 |
| SankeyPlot | 桑基图(Sankey Diagram) | Microsoft.VisualBasic.Data.DataPlot 1.0.9762.11310 |
3 |
| ScatterPlot | 散点图 | Microsoft.VisualBasic.Data.DataPlot 1.0.9753.4776 |
2 |
| ScatterPlot | 散点图 | Microsoft.VisualBasic.Data.DataPlot 1.0.9762.11310 |
1 |
| Series | 图表数据系列 | Microsoft.VisualBasic.Data.DataPlot 1.0.9753.4776 |
7 |
| Series | 图表数据系列 | Microsoft.VisualBasic.Data.DataPlot 1.0.9762.11310 |
0 |
| StackedAreaPlot | 堆叠面积图 | Microsoft.VisualBasic.Data.DataPlot 1.0.9753.4776 |
9 |
| StackedAreaPlot | 堆叠面积图 | Microsoft.VisualBasic.Data.DataPlot 1.0.9762.11310 |
9 |
| StackedBarPlot | 堆叠柱状图(多系列沿 Y 轴累加堆叠) | Microsoft.VisualBasic.Data.DataPlot 1.0.9753.4776 |
7 |
| StackedBarPlot | 堆叠柱状图(多系列沿 Y 轴累加堆叠) | Microsoft.VisualBasic.Data.DataPlot 1.0.9762.11310 |
7 |
| TreemapNode | 矩形树图节点 | Microsoft.VisualBasic.Data.DataPlot 1.0.9753.4776 |
5 |
| TreemapNode | 矩形树图节点 | Microsoft.VisualBasic.Data.DataPlot 1.0.9762.11310 |
5 |
| TreemapPlot | 矩形树图(Squarified 布局算法,优化子矩形宽高比接近 1:1) | Microsoft.VisualBasic.Data.DataPlot 1.0.9753.4776 |
12 |
| TreemapPlot | 矩形树图(Squarified 布局算法,优化子矩形宽高比接近 1:1) | Microsoft.VisualBasic.Data.DataPlot 1.0.9762.11310 |
12 |
| ViolinPlot | 小提琴图(Violin Plot) | Microsoft.VisualBasic.Data.DataPlot 1.0.9753.4776 |
3 |
| ViolinPlot | 小提琴图(Violin Plot) | Microsoft.VisualBasic.Data.DataPlot 1.0.9762.11310 |
3 |
Microsoft.VisualBasic.Data.Plots.GgplotTheme
| Type | Summary | Package | Members |
|---|---|---|---|
| ArrowSpec | Arrow specification for line elements, equivalent to ggplot2's arrow(). | Microsoft.VisualBasic.Data.DataPlot 1.0.9753.4776 |
6 |
| ArrowSpec | Arrow specification for line elements, equivalent to ggplot2's arrow(). | Microsoft.VisualBasic.Data.DataPlot 1.0.9762.11310 |
6 |
| CanvasContext | Provides canvas environment information needed for unit-to-pixel conversion. | Microsoft.VisualBasic.Data.DataPlot 1.0.9753.4776 |
6 |
| CanvasContext | Provides canvas environment information needed for unit-to-pixel conversion. | Microsoft.VisualBasic.Data.DataPlot 1.0.9762.11310 |
6 |
| CssRule | Represents a single CSS rule with a selector and a set of properties. | Microsoft.VisualBasic.Data.DataPlot 1.0.9753.4776 |
3 |
| CssRule | Represents a single CSS rule with a selector and a set of properties. | Microsoft.VisualBasic.Data.DataPlot 1.0.9762.11310 |
3 |
| CssThemeMapper | The CSS theme mapping module. | Microsoft.VisualBasic.Data.DataPlot 1.0.9753.4776 |
4 |
| CssThemeMapper | The CSS theme mapping module. | Microsoft.VisualBasic.Data.DataPlot 1.0.9762.11310 |
4 |
| DefaultTheme | Provides factory methods for creating default themes equivalent to ggplot2's built-in themes: theme_grey, theme_bw, theme_classic, theme_minimal, theme_light, and theme_dark. | Microsoft.VisualBasic.Data.DataPlot 1.0.9753.4776 |
6 |
| DefaultTheme | Provides factory methods for creating default themes equivalent to ggplot2's built-in themes: theme_grey, theme_bw, theme_classic, theme_minimal, theme_light, and theme_dark. | Microsoft.VisualBasic.Data.DataPlot 1.0.9762.11310 |
6 |
| ElementGeom | Geom defaults element, equivalent to ggplot2's element_geom(). | Microsoft.VisualBasic.Data.DataPlot 1.0.9753.4776 |
11 |
| ElementGeom | Geom defaults element, equivalent to ggplot2's element_geom(). | Microsoft.VisualBasic.Data.DataPlot 1.0.9762.11310 |
11 |
| ElementHelpers | Microsoft.VisualBasic.Data.DataPlot 1.0.9753.4776 |
8 | |
| ElementHelpers | Microsoft.VisualBasic.Data.DataPlot 1.0.9762.11310 |
8 | |
| ElementLine | Line element, equivalent to ggplot2's element_line(). | Microsoft.VisualBasic.Data.DataPlot 1.0.9753.4776 |
9 |
| ElementLine | Line element, equivalent to ggplot2's element_line(). | Microsoft.VisualBasic.Data.DataPlot 1.0.9762.11310 |
9 |
| ElementPoint | Point element, equivalent to ggplot2's element_point(). | Microsoft.VisualBasic.Data.DataPlot 1.0.9753.4776 |
9 |
| ElementPoint | Point element, equivalent to ggplot2's element_point(). | Microsoft.VisualBasic.Data.DataPlot 1.0.9762.11310 |
9 |
| ElementPolygon | Polygon element, equivalent to ggplot2's element_polygon(). | Microsoft.VisualBasic.Data.DataPlot 1.0.9753.4776 |
9 |
| ElementPolygon | Polygon element, equivalent to ggplot2's element_polygon(). | Microsoft.VisualBasic.Data.DataPlot 1.0.9762.11310 |
9 |
| ElementRect | Rectangle element, equivalent to ggplot2's element_rect(). | Microsoft.VisualBasic.Data.DataPlot 1.0.9753.4776 |
8 |
| ElementRect | Rectangle element, equivalent to ggplot2's element_rect(). | Microsoft.VisualBasic.Data.DataPlot 1.0.9762.11310 |
8 |
| ElementText | Text element, equivalent to ggplot2's element_text(). | Microsoft.VisualBasic.Data.DataPlot 1.0.9753.4776 |
13 |
| ElementText | Text element, equivalent to ggplot2's element_text(). | Microsoft.VisualBasic.Data.DataPlot 1.0.9762.11310 |
13 |
| InheritanceTree | Defines the inheritance relationships between theme elements and the element type for each named element. | Microsoft.VisualBasic.Data.DataPlot 1.0.9753.4776 |
5 |
| InheritanceTree | Defines the inheritance relationships between theme elements and the element type for each named element. | Microsoft.VisualBasic.Data.DataPlot 1.0.9762.11310 |
5 |
| LayoutCalculator | The automatic layout calculation system. | Microsoft.VisualBasic.Data.DataPlot 1.0.9753.4776 |
21 |
| LayoutCalculator | The automatic layout calculation system. | Microsoft.VisualBasic.Data.DataPlot 1.0.9762.11310 |
21 |
| Margin | Represents a four-sided margin (top, right, bottom, left). | Microsoft.VisualBasic.Data.DataPlot 1.0.9753.4776 |
7 |
| Margin | Represents a four-sided margin (top, right, bottom, left). | Microsoft.VisualBasic.Data.DataPlot 1.0.9762.11310 |
7 |
| PlotLayout | Contains computed pixel positions for the main plot regions. | Microsoft.VisualBasic.Data.DataPlot 1.0.9753.4776 |
15 |
| PlotLayout | Contains computed pixel positions for the main plot regions. | Microsoft.VisualBasic.Data.DataPlot 1.0.9762.11310 |
15 |
| ResolvedElementLine | A line element with all properties resolved to pixel values. | Microsoft.VisualBasic.Data.DataPlot 1.0.9753.4776 |
6 |
| ResolvedElementLine | A line element with all properties resolved to pixel values. | Microsoft.VisualBasic.Data.DataPlot 1.0.9762.11310 |
6 |
| ResolvedElementRect | A rectangle element with all properties resolved to pixel values. | Microsoft.VisualBasic.Data.DataPlot 1.0.9753.4776 |
7 |
| ResolvedElementRect | A rectangle element with all properties resolved to pixel values. | Microsoft.VisualBasic.Data.DataPlot 1.0.9762.11310 |
7 |
| ResolvedElementText | A text element with all properties resolved to pixel values. | Microsoft.VisualBasic.Data.DataPlot 1.0.9753.4776 |
14 |
| ResolvedElementText | A text element with all properties resolved to pixel values. | Microsoft.VisualBasic.Data.DataPlot 1.0.9762.11310 |
14 |
| Theme | The main theme class that holds all ggplot2 theme elements and scalar properties. | Microsoft.VisualBasic.Data.DataPlot 1.0.9753.4776 |
52 |
| Theme | The main theme class that holds all ggplot2 theme elements and scalar properties. | Microsoft.VisualBasic.Data.DataPlot 1.0.9762.11310 |
52 |
| ThemeElement | Base class for all theme elements. | Microsoft.VisualBasic.Data.DataPlot 1.0.9753.4776 |
6 |
| ThemeElement | Base class for all theme elements. | Microsoft.VisualBasic.Data.DataPlot 1.0.9762.11310 |
6 |
| ThemeElementNames | Contains string constants for all ggplot2 theme element names. | Microsoft.VisualBasic.Data.DataPlot 1.0.9753.4776 |
146 |
| ThemeElementNames | Contains string constants for all ggplot2 theme element names. | Microsoft.VisualBasic.Data.DataPlot 1.0.9762.11310 |
146 |
| ThemeElementType | Identifies the type of a theme element, used for CSS parsing and inheritance resolution. | Microsoft.VisualBasic.Data.DataPlot 1.0.9753.4776 |
18 |
| ThemeElementType | Identifies the type of a theme element, used for CSS parsing and inheritance resolution. | Microsoft.VisualBasic.Data.DataPlot 1.0.9762.11310 |
18 |
| Unit | Represents a measurement with a unit, equivalent to R's grid::unit(). | Microsoft.VisualBasic.Data.DataPlot 1.0.9753.4776 |
25 |
| Unit | Represents a measurement with a unit, equivalent to R's grid::unit(). | Microsoft.VisualBasic.Data.DataPlot 1.0.9762.11310 |
25 |
| UnitConverter | Converts Unit values to pixels based on a CanvasContext. | Microsoft.VisualBasic.Data.DataPlot 1.0.9753.4776 |
10 |
| UnitConverter | Converts Unit values to pixels based on a CanvasContext. | Microsoft.VisualBasic.Data.DataPlot 1.0.9762.11310 |
10 |
| UnitType | Supported unit types for theme measurements, mirroring R's grid unit() system. | Microsoft.VisualBasic.Data.DataPlot 1.0.9753.4776 |
20 |
| UnitType | Supported unit types for theme measurements, mirroring R's grid unit() system. | Microsoft.VisualBasic.Data.DataPlot 1.0.9762.11310 |
20 |
Microsoft.VisualBasic.Data.Repository
| Type | Summary | Package | Members |
|---|---|---|---|
| BKDRHash | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 | |
| BKDRHash | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 | |
| FileHashCheckSum | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 | |
| FileHashCheckSum | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 | |
| FNV1a | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 | |
| FNV1a | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 | |
| JsonlStore | TextLineStore 的兼容别名。行为与泛化后的行存储引擎完全一致。 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 |
| JsonlStore | TextLineStore 的兼容别名。行为与泛化后的行存储引擎完全一致。 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 |
| JsonlStoreOptions | TextStoreOptions 的兼容别名。 引擎已泛化为与行格式无关,本类型仅为兼容既有调用方而保留。 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
0 |
| JsonlStoreOptions | TextStoreOptions 的兼容别名。 引擎已泛化为与行格式无关,本类型仅为兼容既有调用方而保留。 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
0 |
| MurmurHash | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 | |
| MurmurHash | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 | |
| Nilsimsa | Computes the Nilsimsa hash for the given string. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
20 |
| Nilsimsa | Computes the Nilsimsa hash for the given string. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
20 |
| RepositoryFileSystem | Using file system as repository system provider | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
7 |
| RepositoryFileSystem | Using file system as repository system provider | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
7 |
| SnowflakeIdGenerator | a twitter unique Snowflake ID generator | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 |
| SnowflakeIdGenerator | a twitter unique Snowflake ID generator | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 |
| TextLineStore | 与具体格式无关的文本行虚拟存储。 写操作(追加/插入/替换/删除)只进入内存片段表 + WAL 日志; 顺序读取时自动把挂起修改“虚拟挂载”到输出流; 由外部显式调用 Merge() 把挂起修改合并回源文件。 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
28 |
| TextLineStore | 与具体格式无关的文本行虚拟存储。 写操作(追加/插入/替换/删除)只进入内存片段表 + WAL 日志; 顺序读取时自动把挂起修改“虚拟挂载”到输出流; 由外部显式调用 Merge() 把挂起修改合并回源文件。 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
30 |
| TextStoreLockMode | 数据文件的进程级锁模式。 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
6 |
| TextStoreOptions | 与具体行格式无关的纯文本行存储引擎配置。 该引擎把每一行视为不透明文本(JSONL / CSV / TSV 等均可复用), 因此这里的配置项不包含任何格式相关语义。 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
8 |
| TextStoreOptions | 与具体行格式无关的纯文本行存储引擎配置。 该引擎把每一行视为不透明文本(JSONL / CSV / TSV 等均可复用), 因此这里的配置项不包含任何格式相关语义。 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
11 |
| WAL | JSONL 存储引擎的写前日志。记录格式与磁盘布局固定为 UTF-8 无 BOM 的逐行 JSON。 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
21 |
| WAL | JSONL 存储引擎的写前日志。记录格式与磁盘布局固定为 UTF-8 无 BOM 的逐行 JSON。 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
22 |
Microsoft.VisualBasic.Data.Repository.FileHashCheckSum
Microsoft.VisualBasic.Data.Repository.WAL
| Type | Summary | Package | Members |
|---|---|---|---|
| ReadResult | ReadRecords 的结果。 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 |
| ReadResult | ReadRecords 的结果。 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 |
| Record | 一条已解析的 WAL 记录。 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
14 |
| Record | 一条已解析的 WAL 记录。 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
14 |
| RecordKind | 磁盘记录类型(对应令牌 "sp" / "mb" / "mbf" / "md")。 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
8 |
| RecordKind | 磁盘记录类型(对应令牌 "sp" / "mb" / "mbf" / "md")。 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
8 |
Microsoft.VisualBasic.Data.Trinity
| Type | Summary | Package | Members |
|---|---|---|---|
| Expression | Natural expression builder for AI output | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 |
| Expression | Natural expression builder for AI output | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 |
| WordSimilarityIndex | 使用模拟比较来建立所给定的字符串的快速模糊查找的索引对象模型 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| WordSimilarityIndex | 使用模拟比较来建立所给定的字符串的快速模糊查找的索引对象模型 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
| WordSimilarityIndex | 使用模拟比较来建立所给定的字符串的快速模糊查找的索引对象模型 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 |
| WordSimilarityIndex | 使用模拟比较来建立所给定的字符串的快速模糊查找的索引对象模型 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 |
Microsoft.VisualBasic.Data.Trinity.NLP
| Type | Summary | Package | Members |
|---|---|---|---|
| TextSplit | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 | |
| TextSplit | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 | |
| TextTokens | 应用于字符串分析的,自然语言处理 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 |
| TextTokens | 应用于字符串分析的,自然语言处理 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 |
| Word | A single word text token | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
7 |
| Word | A single word text token | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
7 |
| WordClass | 单词的词性分类 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
25 |
| WordClass | 单词的词性分类 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
25 |
Microsoft.VisualBasic.Data.visualize
| Type | Summary | Package | Members |
|---|---|---|---|
| CorrelationNetwork | 使用这个模块用来生成相关度的网络,相关度网络是Kmeans,Cmeans或者其他的一些聚类网络可视化的基础 | Microsoft.VisualBasic.Data.visualize 5.0.9753.4776 |
1 |
| CorrelationNetwork | 使用这个模块用来生成相关度的网络,相关度网络是Kmeans,Cmeans或者其他的一些聚类网络可视化的基础 | Microsoft.VisualBasic.Data.visualize 5.0.9762.11310 |
1 |
| EmbeddingRender | Microsoft.VisualBasic.Data.visualize 5.0.9753.4776 |
1 | |
| EmbeddingRender | Microsoft.VisualBasic.Data.visualize 5.0.9762.11310 |
1 | |
| EmbeddingRenderExtensions | Microsoft.VisualBasic.Data.visualize 5.0.9753.4776 |
4 | |
| EmbeddingRenderExtensions | Microsoft.VisualBasic.Data.visualize 5.0.9762.11310 |
4 | |
| Extensions | Microsoft.VisualBasic.Data.visualize 5.0.9753.4776 |
3 | |
| Extensions | Microsoft.VisualBasic.Data.visualize 5.0.9762.11310 |
3 | |
| SOMEmbedding | plot SOM embedding | Microsoft.VisualBasic.Data.visualize 5.0.9753.4776 |
0 |
| SOMEmbedding | plot SOM embedding | Microsoft.VisualBasic.Data.visualize 5.0.9762.11310 |
0 |
| UMAPGraph | create network model based on umap result for data visualization | Microsoft.VisualBasic.Data.visualize 5.0.9753.4776 |
0 |
| UMAPGraph | create network model based on umap result for data visualization | Microsoft.VisualBasic.Data.visualize 5.0.9762.11310 |
0 |
Microsoft.VisualBasic.Data.visualize.KMeans
| Type | Summary | Package | Members |
|---|---|---|---|
| KmeansExtensions | Microsoft.VisualBasic.Data.visualize 5.0.9753.4776 |
4 | |
| KmeansExtensions | Microsoft.VisualBasic.Data.visualize 5.0.9762.11310 |
4 | |
| KMeansNetwork | Microsoft.VisualBasic.Data.visualize 5.0.9753.4776 |
1 | |
| KMeansNetwork | Microsoft.VisualBasic.Data.visualize 5.0.9762.11310 |
1 | |
| NodeTrees | Microsoft.VisualBasic.Data.visualize 5.0.9753.4776 |
2 | |
| NodeTrees | Microsoft.VisualBasic.Data.visualize 5.0.9762.11310 |
2 | |
| Tree | KMeans.Tree.NET | Microsoft.VisualBasic.Data.visualize 5.0.9753.4776 |
5 |
| Tree | KMeans.Tree.NET | Microsoft.VisualBasic.Data.visualize 5.0.9762.11310 |
5 |
Microsoft.VisualBasic.Data.visualize.Network
| Type | Summary | Package | Members |
|---|---|---|---|
| AnalysisAPI | Microsoft.VisualBasic.Data.visualize.Network.IO.Extensions 1.0.9753.4776 |
4 | |
| AnalysisAPI | Microsoft.VisualBasic.Data.visualize.Network.IO.Extensions 1.0.9762.11310 |
4 | |
| CanvasScaler | 进行网络模型之中的节点的位置缩放以及中心化平移操作的帮助模块 | Microsoft.VisualBasic.Data.visualize.Network.Visualizer 1.0.9753.4776 |
2 |
| CanvasScaler | 进行网络模型之中的节点的位置缩放以及中心化平移操作的帮助模块 | Microsoft.VisualBasic.Data.visualize.Network.Visualizer 1.0.9762.11310 |
2 |
| CorrelationGraph | A network graph model base on the correlation matrix between variables. | Microsoft.VisualBasic.Data.visualize.Network.IO.Extensions 1.0.9753.4776 |
1 |
| CorrelationGraph | A network graph model base on the correlation matrix between variables. | Microsoft.VisualBasic.Data.visualize.Network.IO.Extensions 1.0.9762.11310 |
1 |
| EdgeRendering | 网络边的渲染类。从共享的 NetworkRenderConfig 配置对象读取参数, 取代原先一长串的独立构造函数参数。 | Microsoft.VisualBasic.Data.visualize.Network.Visualizer 1.0.9753.4776 |
2 |
| EdgeRendering | 网络边的渲染类。从共享的 NetworkRenderConfig 配置对象读取参数, 取代原先一长串的独立构造函数参数。 | Microsoft.VisualBasic.Data.visualize.Network.Visualizer 1.0.9762.11310 |
2 |
| Extensions | Microsoft.VisualBasic.Data.visualize.Network.IO.Extensions 1.0.9753.4776 |
5 | |
| Extensions | Microsoft.VisualBasic.Data.visualize.Network.Visualizer 1.0.9753.4776 |
1 | |
| Extensions | Microsoft.VisualBasic.Data.visualize.Network.IO.Extensions 1.0.9762.11310 |
5 | |
| Extensions | Microsoft.VisualBasic.Data.visualize.Network.Visualizer 1.0.9762.11310 |
1 | |
| GraphRouter | Microsoft.VisualBasic.Data.visualize.Network 1.0.9753.4776 |
4 | |
| GraphRouter | Microsoft.VisualBasic.Data.visualize.Network 1.0.9762.11310 |
4 | |
| HullPolygonRendering | 将网络节点按照分组绘制出凸包多边形(convex hull polygon)以及其图例。 该类由原 NetworkVisualizer 模块内的私有扩展方法 drawhullPolygon 迁移而来,改为从共享的 NetworkRenderConfig 配置对象读取参数,消除原先一长串的函数参数传递。 | Microsoft.VisualBasic.Data.visualize.Network.Visualizer 1.0.9753.4776 |
1 |
| HullPolygonRendering | 将网络节点按照分组绘制出凸包多边形(convex hull polygon)以及其图例。 该类由原 NetworkVisualizer 模块内的私有扩展方法 drawhullPolygon 迁移而来,改为从共享的 NetworkRenderConfig 配置对象读取参数,消除原先一长串的函数参数传递。 | Microsoft.VisualBasic.Data.visualize.Network.Visualizer 1.0.9762.11310 |
1 |
| LabelRendering | 使用退火算法计算出节点标签文本的位置 | Microsoft.VisualBasic.Data.visualize.Network.Visualizer 1.0.9753.4776 |
0 |
| LabelRendering | 使用退火算法计算出节点标签文本的位置 | Microsoft.VisualBasic.Data.visualize.Network.Visualizer 1.0.9762.11310 |
0 |
| LineSegmentRender | draw a line segment | Microsoft.VisualBasic.Data.visualize.Network.Visualizer 1.0.9753.4776 |
0 |
| LineSegmentRender | draw a line segment | Microsoft.VisualBasic.Data.visualize.Network.Visualizer 1.0.9762.11310 |
0 |
| NetworkAPI | Microsoft.VisualBasic.Data.visualize.Network 1.0.9753.4776 |
1 | |
| NetworkAPI | Microsoft.VisualBasic.Data.visualize.Network 1.0.9762.11310 |
1 | |
| NetworkFileIO | Microsoft.VisualBasic.Data.visualize.Network.IO.Extensions 1.0.9753.4776 |
5 | |
| NetworkFileIO | Microsoft.VisualBasic.Data.visualize.Network.IO.Extensions 1.0.9762.11310 |
5 | |
| NetworkPlot | 网络图渲染类:承载网络模型与渲染配置,对外暴露 NetworkPlot.Render() 产出图像。 该类对应于 NetworkVisualizer.DrawImage()) 原来的绘图主流程, 将坐标换算、边/节点/标签/凸包多边形的绘制逻辑收敛为职责单一的渲染对象, 参考同模块内 DrawKDTree 的“配置对象 + 渲染类 + 薄外壳”范式… | Microsoft.VisualBasic.Data.visualize.Network.Visualizer 1.0.9753.4776 |
2 |
| NetworkPlot | 网络图渲染类:承载网络模型与渲染配置,对外暴露 NetworkPlot.Render() 产出图像。 该类对应于 NetworkVisualizer.DrawImage()) 原来的绘图主流程, 将坐标换算、边/节点/标签/凸包多边形的绘制逻辑收敛为职责单一的渲染对象, 参考同模块内 DrawKDTree 的“配置对象 + 渲染类 + 薄外壳”范式… | Microsoft.VisualBasic.Data.visualize.Network.Visualizer 1.0.9762.11310 |
2 |
| NetworkRenderConfig | 网络图绘制的所有可配置参数的统一承载对象。 该配置类的每一个字段都严格对应 NetworkVisualizer.DrawImage()) 原有的 Optional 参数,并且默认值与原来的 Optional 默认值保持一致, 以确保重构之后不会产生任何行为上的漂移。 | Microsoft.VisualBasic.Data.visualize.Network.Visualizer 1.0.9753.4776 |
10 |
| NetworkRenderConfig | 网络图绘制的所有可配置参数的统一承载对象。 该配置类的每一个字段都严格对应 NetworkVisualizer.DrawImage()) 原有的 Optional 参数,并且默认值与原来的 Optional 默认值保持一致, 以确保重构之后不会产生任何行为上的漂移。 | Microsoft.VisualBasic.Data.visualize.Network.Visualizer 1.0.9762.11310 |
1 |
| NetworkVisualizer | Image drawing of a network model | Microsoft.VisualBasic.Data.visualize.Network.Visualizer 1.0.9753.4776 |
2 |
| NetworkVisualizer | Image drawing of a network model | Microsoft.VisualBasic.Data.visualize.Network.Visualizer 1.0.9762.11310 |
2 |
| NodeRendering | 网络节点的渲染类。从共享的 NetworkRenderConfig 配置对象读取参数, 取代原先一长串的独立构造函数参数。 | Microsoft.VisualBasic.Data.visualize.Network.Visualizer 1.0.9753.4776 |
0 |
| NodeRendering | 网络节点的渲染类。从共享的 NetworkRenderConfig 配置对象读取参数, 取代原先一长串的独立构造函数参数。 | Microsoft.VisualBasic.Data.visualize.Network.Visualizer 1.0.9762.11310 |
0 |
| RenderHelpers | Microsoft.VisualBasic.Data.visualize.Network.Visualizer 1.0.9753.4776 |
2 | |
| RenderHelpers | Microsoft.VisualBasic.Data.visualize.Network.Visualizer 1.0.9762.11310 |
2 | |
| SigmaJs | Create json for sigma.js | Microsoft.VisualBasic.Data.visualize.Network.IO.Extensions 1.0.9753.4776 |
0 |
| SigmaJs | Create json for sigma.js | Microsoft.VisualBasic.Data.visualize.Network.IO.Extensions 1.0.9762.11310 |
0 |
Microsoft.VisualBasic.Data.visualize.Network.Analysis
| Type | Summary | Package | Members |
|---|---|---|---|
| Communities | Microsoft.VisualBasic.Data.visualize.Network 1.0.9753.4776 |
4 | |
| Communities | Microsoft.VisualBasic.Data.visualize.Network 1.0.9762.11310 |
4 | |
| Extensions | Microsoft.VisualBasic.Data.visualize.Network 1.0.9753.4776 |
3 | |
| Extensions | Microsoft.VisualBasic.Data.visualize.Network 1.0.9762.11310 |
3 | |
| GraphEmbedding | Embedding of a graph object as numeric vector | Microsoft.VisualBasic.Data.visualize.Network 1.0.9753.4776 |
2 |
| GraphEmbedding | Embedding of a graph object as numeric vector | Microsoft.VisualBasic.Data.visualize.Network 1.0.9762.11310 |
2 |
| Kosaraju | Kosaraju's algorithm is a linear time algorithm to find the strongly connected components of a directed graph. | Microsoft.VisualBasic.Data.visualize.Network 1.0.9753.4776 |
1 |
| Kosaraju | Kosaraju's algorithm is a linear time algorithm to find the strongly connected components of a directed graph. | Microsoft.VisualBasic.Data.visualize.Network 1.0.9762.11310 |
1 |
| PAGA | PAGA - partition-based graph abstraction | Microsoft.VisualBasic.Data.visualize.Network 1.0.9753.4776 |
1 |
| PAGA | PAGA - partition-based graph abstraction | Microsoft.VisualBasic.Data.visualize.Network 1.0.9762.11310 |
1 |
| Similarity | Microsoft.VisualBasic.Data.visualize.Network 1.0.9753.4776 |
1 | |
| Similarity | Microsoft.VisualBasic.Data.visualize.Network 1.0.9762.11310 |
1 | |
| Statistics | Microsoft.VisualBasic.Data.visualize.Network 1.0.9753.4776 |
3 | |
| Statistics | Microsoft.VisualBasic.Data.visualize.Network 1.0.9762.11310 |
3 |
Microsoft.VisualBasic.Data.visualize.Network.Analysis.Model
| Type | Summary | Package | Members |
|---|---|---|---|
| AdjacencySet | 在这个集合中,所有的IInteraction.source都是一样的 | Microsoft.VisualBasic.Data.visualize.Network 1.0.9753.4776 |
5 |
| AdjacencySet | 在这个集合中,所有的IInteraction.source都是一样的 | Microsoft.VisualBasic.Data.visualize.Network 1.0.9762.11310 |
5 |
| DirectedVertex | an edge collection for indexing the in/out edge connection with current node. | Microsoft.VisualBasic.Data.visualize.Network 1.0.9753.4776 |
8 |
| DirectedVertex | an edge collection for indexing the in/out edge connection with current node. | Microsoft.VisualBasic.Data.visualize.Network 1.0.9762.11310 |
8 |
| EdgeSet | 两个节点对象之间的重复的边链接的集合 | Microsoft.VisualBasic.Data.visualize.Network 1.0.9753.4776 |
0 |
| EdgeSet | 两个节点对象之间的重复的边链接的集合 | Microsoft.VisualBasic.Data.visualize.Network 1.0.9762.11310 |
0 |
| GraphIndex | The network graph element index | Microsoft.VisualBasic.Data.visualize.Network 1.0.9753.4776 |
4 |
| GraphIndex | The network graph element index | Microsoft.VisualBasic.Data.visualize.Network 1.0.9762.11310 |
4 |
Microsoft.VisualBasic.Data.visualize.Network.Analysis.SimilarityImpl
| Type | Summary | Package | Members |
|---|---|---|---|
| GraphTopology | Microsoft.VisualBasic.Data.visualize.Network 1.0.9753.4776 |
1 | |
| GraphTopology | Microsoft.VisualBasic.Data.visualize.Network 1.0.9762.11310 |
1 |
Microsoft.VisualBasic.Data.visualize.Network.Canvas
| Type | Summary | Package | Members |
|---|---|---|---|
| Canvas | Controls for view the network model. | Microsoft.VisualBasic.Data.visualize.Network.Canvas 1.0.9753.4776 |
12 |
| Canvas | Controls for view the network model. | Microsoft.VisualBasic.Data.visualize.Network.Canvas 1.0.9762.11310 |
12 |
| CanvasViewState | 渲染视图状态:在 Canvas 与 Renderer 之间共享,控制视口、悬停/选中高亮、LOD 与网格。 | Microsoft.VisualBasic.Data.visualize.Network.Canvas 1.0.9753.4776 |
4 |
| CanvasViewState | 渲染视图状态:在 Canvas 与 Renderer 之间共享,控制视口、悬停/选中高亮、LOD 与网格。 | Microsoft.VisualBasic.Data.visualize.Network.Canvas 1.0.9762.11310 |
4 |
| IGraphicsEngine | Microsoft.VisualBasic.Data.visualize.Network.Canvas 1.0.9753.4776 |
2 | |
| IGraphicsEngine | Microsoft.VisualBasic.Data.visualize.Network.Canvas 1.0.9762.11310 |
2 | |
| Input3D | Mouse input device in 3D space | Microsoft.VisualBasic.Data.visualize.Network.Canvas 1.0.9753.4776 |
0 |
| Input3D | Mouse input device in 3D space | Microsoft.VisualBasic.Data.visualize.Network.Canvas 1.0.9762.11310 |
0 |
| InputDevice | 使用鼠标左键进行拖拽 | Microsoft.VisualBasic.Data.visualize.Network.Canvas 1.0.9753.4776 |
2 |
| InputDevice | 使用鼠标左键进行拖拽 | Microsoft.VisualBasic.Data.visualize.Network.Canvas 1.0.9762.11310 |
2 |
| Renderer | Microsoft.VisualBasic.Data.visualize.Network.Canvas 1.0.9753.4776 |
15 | |
| Renderer | Microsoft.VisualBasic.Data.visualize.Network.Canvas 1.0.9762.11310 |
15 | |
| Renderer3D | Microsoft.VisualBasic.Data.visualize.Network.Canvas 1.0.9753.4776 |
1 | |
| Renderer3D | Microsoft.VisualBasic.Data.visualize.Network.Canvas 1.0.9762.11310 |
1 | |
| SpatialGrid | 屏幕空间均匀网格,加速鼠标命中测试。 | Microsoft.VisualBasic.Data.visualize.Network.Canvas 1.0.9753.4776 |
2 |
| SpatialGrid | 屏幕空间均匀网格,加速鼠标命中测试。 | Microsoft.VisualBasic.Data.visualize.Network.Canvas 1.0.9762.11310 |
2 |
| SVGExtensions | NetworkGraph to svg doc | Microsoft.VisualBasic.Data.visualize.Network.Canvas 1.0.9753.4776 |
2 |
| SVGExtensions | NetworkGraph to svg doc | Microsoft.VisualBasic.Data.visualize.Network.Canvas 1.0.9762.11310 |
2 |
| Viewport | 2D 视口变换:缩放(zoom)与平移(pan),在绘图坐标与屏幕坐标之间互转。 | Microsoft.VisualBasic.Data.visualize.Network.Canvas 1.0.9753.4776 |
11 |
| Viewport | 2D 视口变换:缩放(zoom)与平移(pan),在绘图坐标与屏幕坐标之间互转。 | Microsoft.VisualBasic.Data.visualize.Network.Canvas 1.0.9762.11310 |
11 |
Microsoft.VisualBasic.Data.visualize.Network.FileStream
| Type | Summary | Package | Members |
|---|---|---|---|
| GraphAPI | Data Model Extensions | Microsoft.VisualBasic.Data.visualize.Network.IO.Extensions 1.0.9753.4776 |
7 |
| GraphAPI | Data Model Extensions | Microsoft.VisualBasic.Data.visualize.Network.IO.Extensions 1.0.9762.11310 |
7 |
| MetaData | the network metadata | Microsoft.VisualBasic.Data.visualize.Network.IO.Extensions 1.0.9753.4776 |
8 |
| MetaData | the network metadata | Microsoft.VisualBasic.Data.visualize.Network.IO.Extensions 1.0.9762.11310 |
8 |
| ModelLoader | Microsoft.VisualBasic.Data.visualize.Network.IO.Extensions 1.0.9753.4776 |
2 | |
| ModelLoader | Microsoft.VisualBasic.Data.visualize.Network.IO.Extensions 1.0.9762.11310 |
2 | |
| NetworkEdge | The edge between the two nodes in the network. | Microsoft.VisualBasic.Data.visualize.Network.IO.Extensions 1.0.9753.4776 |
5 |
| NetworkEdge | The edge between the two nodes in the network. | Microsoft.VisualBasic.Data.visualize.Network.IO.Extensions 1.0.9762.11310 |
5 |
| NetworkTables | The csv table file format of the network graph object model: NetworkGraph. | Microsoft.VisualBasic.Data.visualize.Network.IO.Extensions 1.0.9753.4776 |
1 |
| NetworkTables | The csv table file format of the network graph object model: NetworkGraph. | Microsoft.VisualBasic.Data.visualize.Network.IO.Extensions 1.0.9762.11310 |
1 |
| Node | An node entity in the target network.(这个对象里面包含了网络之中的节点的实体的最基本的定义:节点的标识符以及节点的类型) | Microsoft.VisualBasic.Data.visualize.Network.IO.Extensions 1.0.9753.4776 |
2 |
| Node | An node entity in the target network.(这个对象里面包含了网络之中的节点的实体的最基本的定义:节点的标识符以及节点的类型) | Microsoft.VisualBasic.Data.visualize.Network.IO.Extensions 1.0.9762.11310 |
2 |
| TabularCreator | Microsoft.VisualBasic.Data.visualize.Network.IO.Extensions 1.0.9753.4776 |
5 | |
| TabularCreator | Microsoft.VisualBasic.Data.visualize.Network.IO.Extensions 1.0.9762.11310 |
5 | |
| vbnet | VB.NET sciBASIC network data file. | Microsoft.VisualBasic.Data.visualize.Network.IO.Extensions 1.0.9753.4776 |
2 |
| vbnet | VB.NET sciBASIC network data file. | Microsoft.VisualBasic.Data.visualize.Network.IO.Extensions 1.0.9762.11310 |
2 |
Microsoft.VisualBasic.Data.visualize.Network.FileStream.Cytoscape
| Type | Summary | Package | Members |
|---|---|---|---|
| CytoscapeTableLoader | Microsoft.VisualBasic.Data.visualize.Network.IO.Extensions 1.0.9753.4776 |
1 | |
| CytoscapeTableLoader | Microsoft.VisualBasic.Data.visualize.Network.IO.Extensions 1.0.9762.11310 |
1 | |
| Edges | Microsoft.VisualBasic.Data.visualize.Network.IO.Extensions 1.0.9753.4776 |
5 | |
| Edges | Microsoft.VisualBasic.Data.visualize.Network.IO.Extensions 1.0.9762.11310 |
5 | |
| Nodes | Microsoft.VisualBasic.Data.visualize.Network.IO.Extensions 1.0.9753.4776 |
21 | |
| Nodes | Microsoft.VisualBasic.Data.visualize.Network.IO.Extensions 1.0.9762.11310 |
21 |
Microsoft.VisualBasic.Data.visualize.Network.FileStream.Generic
| Type | Summary | Package | Members |
|---|---|---|---|
| IDynamicsTable | The network graph object contains the dynamics property for contains the extra information of the object. | Microsoft.VisualBasic.Data.visualize.Network 1.0.9753.4776 |
1 |
| IDynamicsTable | The network graph object contains the dynamics property for contains the extra information of the object. | Microsoft.VisualBasic.Data.visualize.Network 1.0.9762.11310 |
1 |
| NamesOf | The preset names value for edge type DynamicPropertyBase.Properties and node type DynamicPropertyBase.Properties | Microsoft.VisualBasic.Data.visualize.Network 1.0.9753.4776 |
16 |
| NamesOf | The preset names value for edge type DynamicPropertyBase.Properties and node type DynamicPropertyBase.Properties | Microsoft.VisualBasic.Data.visualize.Network 1.0.9762.11310 |
16 |
| Network | The network csv/json data information with specific type of the datamodel | Microsoft.VisualBasic.Data.visualize.Network.IO.Extensions 1.0.9753.4776 |
12 |
| Network | The network csv/json data information with specific type of the datamodel | Microsoft.VisualBasic.Data.visualize.Network.IO.Extensions 1.0.9762.11310 |
12 |
Microsoft.VisualBasic.Data.visualize.Network.FileStream.Json
Microsoft.VisualBasic.Data.visualize.Network.Graph
| Type | Summary | Package | Members |
|---|---|---|---|
| Edge | the network graph edge. | Microsoft.VisualBasic.Data.visualize.Network 1.0.9753.4776 |
8 |
| Edge | the network graph edge. | Microsoft.VisualBasic.Data.visualize.Network 1.0.9762.11310 |
8 |
| EdgeData | Microsoft.VisualBasic.Data.visualize.Network 1.0.9753.4776 |
6 | |
| EdgeData | Microsoft.VisualBasic.Data.visualize.Network 1.0.9762.11310 |
3 | |
| Extensions | Microsoft.VisualBasic.Data.visualize.Network 1.0.9753.4776 |
3 | |
| Extensions | Microsoft.VisualBasic.Data.visualize.Network 1.0.9762.11310 |
3 | |
| GraphData | Microsoft.VisualBasic.Data.visualize.Network 1.0.9753.4776 |
2 | |
| GraphData | Microsoft.VisualBasic.Data.visualize.Network 1.0.9762.11310 |
1 | |
| GraphTree | Microsoft.VisualBasic.Data.visualize.Network 1.0.9753.4776 |
4 | |
| GraphTree | Microsoft.VisualBasic.Data.visualize.Network 1.0.9762.11310 |
4 | |
| NetworkGraph | The network graph object model | Microsoft.VisualBasic.Data.visualize.Network 1.0.9753.4776 |
22 |
| NetworkGraph | The network graph object model | Microsoft.VisualBasic.Data.visualize.Network 1.0.9762.11310 |
22 |
| Node | Vertex.label -> IKeyedEntity.Key | Microsoft.VisualBasic.Data.visualize.Network 1.0.9753.4776 |
10 |
| Node | Vertex.label -> IKeyedEntity.Key | Microsoft.VisualBasic.Data.visualize.Network 1.0.9762.11310 |
10 |
| NodeData | Microsoft.VisualBasic.Data.visualize.Network 1.0.9753.4776 |
14 | |
| NodeData | Microsoft.VisualBasic.Data.visualize.Network 1.0.9762.11310 |
6 | |
| Selector | Graph value selector by property name | Microsoft.VisualBasic.Data.visualize.Network 1.0.9753.4776 |
2 |
| Selector | Graph value selector by property name | Microsoft.VisualBasic.Data.visualize.Network 1.0.9762.11310 |
2 |
Microsoft.VisualBasic.Data.visualize.Network.Graph.Abstract
| Type | Summary | Package | Members |
|---|---|---|---|
| GraphTreeNode | 这是一个节点对象 | Microsoft.VisualBasic.Data.visualize.Network 1.0.9753.4776 |
2 |
| GraphTreeNode | 这是一个节点对象 | Microsoft.VisualBasic.Data.visualize.Network 1.0.9762.11310 |
2 |
| IGraphValueContainer | An class object that contains GraphData | Microsoft.VisualBasic.Data.visualize.Network 1.0.9753.4776 |
1 |
| IGraphValueContainer | An class object that contains GraphData | Microsoft.VisualBasic.Data.visualize.Network 1.0.9762.11310 |
0 |
Microsoft.VisualBasic.Data.visualize.Network.Graph.EdgeBundling
| Type | Summary | Package | Members |
|---|---|---|---|
| Handle | 进行网络之中的边连接的布局走向的拐点的矢量化描述 | Microsoft.VisualBasic.Data.visualize.Network 1.0.9753.4776 |
7 |
| Handle | 进行网络之中的边连接的布局走向的拐点的矢量化描述 | Microsoft.VisualBasic.Data.visualize.Network 1.0.9762.11310 |
7 |
| HandleCreator | handle point creator algorithm module | Microsoft.VisualBasic.Data.visualize.Network 1.0.9753.4776 |
2 |
| HandleCreator | handle point creator algorithm module | Microsoft.VisualBasic.Data.visualize.Network 1.0.9762.11310 |
2 |
| WayPointVector | 相对于Handle模型,这个矢量模型则是单纯的以xy偏移比例来进行矢量比例缩放 | Microsoft.VisualBasic.Data.visualize.Network 1.0.9753.4776 |
11 |
| WayPointVector | 相对于Handle模型,这个矢量模型则是单纯的以xy偏移比例来进行矢量比例缩放 | Microsoft.VisualBasic.Data.visualize.Network 1.0.9762.11310 |
11 |
Microsoft.VisualBasic.Data.visualize.Network.Layouts
| Type | Summary | Package | Members |
|---|---|---|---|
| FDGVector2 | Microsoft.VisualBasic.Data.visualize.Network 1.0.9753.4776 |
20 | |
| FDGVector2 | Microsoft.VisualBasic.Data.visualize.Network 1.0.9762.11310 |
3 | |
| forceNetwork | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9753.4776 |
3 | |
| forceNetwork | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9762.11310 |
3 | |
| IPlanner | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9753.4776 |
1 | |
| IPlanner | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9762.11310 |
1 | |
| SpringEmbedder | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9753.4776 |
8 | |
| SpringEmbedder | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9762.11310 |
8 |
Microsoft.VisualBasic.Data.visualize.Network.Layouts.Circular
| Type | Summary | Package | Members |
|---|---|---|---|
| CircularLayout | 环形(圆形)布局:将所有节点沿一个圆周均匀分布。 支持按度排序或按自定义键排序以优化视觉表现 / 减少边交叉。 | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9753.4776 |
3 |
| CircularLayout | 环形(圆形)布局:将所有节点沿一个圆周均匀分布。 支持按度排序或按自定义键排序以优化视觉表现 / 减少边交叉。 | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9762.11310 |
3 |
| CircularLayoutParameters | 环形布局参数,可在 PropertyGrid 中编辑 | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9753.4776 |
7 |
| CircularLayoutParameters | 环形布局参数,可在 PropertyGrid 中编辑 | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9762.11310 |
7 |
Microsoft.VisualBasic.Data.visualize.Network.Layouts.Cola
| Type | Summary | Package | Members |
|---|---|---|---|
| batch | 这个模块是对外开放网络布局生成的计算函数的接口 | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9753.4776 |
2 |
| batch | 这个模块是对外开放网络布局生成的计算函数的接口 | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9762.11310 |
2 |
| Block | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9753.4776 |
12 | |
| Block | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9762.11310 |
11 | |
| Blocks | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9753.4776 |
8 | |
| Blocks | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9762.11310 |
8 | |
| Configuration | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9753.4776 |
7 | |
| Configuration | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9762.11310 |
4 | |
| DirectedEdge | An object with three point properties, the intersection with the source rectangle (sourceIntersection), the intersection with then target rectangle (targetIntersection), And the… | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9753.4776 |
3 |
| DirectedEdge | An object with three point properties, the intersection with the source rectangle (sourceIntersection), the intersection with then target rectangle (targetIntersection), And the… | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9762.11310 |
3 |
| EventType | The layout process fires three events: > - start: layout iterations started > - tick: fired once per iteration, listen to this to animate > - end: layout converged, you might… | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9753.4776 |
6 |
| EventType | The layout process fires three events: > - start: layout iterations started > - tick: fired once per iteration, listen to this to animate > - end: layout converged, you might… | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9762.11310 |
6 |
| Extensions | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9753.4776 |
16 | |
| Extensions | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9762.11310 |
7 | |
| GridRouter | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9753.4776 |
12 | |
| GridRouter | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9762.11310 |
10 | |
| handleDisconnected | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9753.4776 |
6 | |
| handleDisconnected | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9762.11310 |
6 | |
| IGraphNode | The common type interface that will be used in Projection | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9753.4776 |
10 |
| IGraphNode | The common type interface that will be used in Projection | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9762.11310 |
0 |
| InputNode | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9753.4776 |
6 | |
| InputNode | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9762.11310 |
6 | |
| Layout | Main interface to cola layout. | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9753.4776 |
43 |
| Layout | Main interface to cola layout. | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9762.11310 |
10 |
| Link | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9753.4776 |
5 | |
| Link | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9762.11310 |
5 | |
| linkLengthExtensions | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9753.4776 |
7 | |
| linkLengthExtensions | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9762.11310 |
7 | |
| LinkTypeAccessor | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9753.4776 |
1 | |
| LinkTypeAccessor | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9762.11310 |
1 | |
| Locks | Descent respects a collection of locks over nodes that should not move | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9753.4776 |
5 |
| Locks | Descent respects a collection of locks over nodes that should not move | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9762.11310 |
5 |
| Node | Client-passed node may be missing these properties, which will be set upon ingestion | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9753.4776 |
29 |
| Node | Client-passed node may be missing these properties, which will be set upon ingestion | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9762.11310 |
0 |
| Projection | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9753.4776 |
4 | |
| Projection | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9762.11310 |
1 | |
| Solver | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9753.4776 |
11 | |
| Solver | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9762.11310 |
11 | |
| tangentPoly | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9753.4776 |
2 | |
| tangentPoly | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9762.11310 |
2 |
Microsoft.VisualBasic.Data.visualize.Network.Layouts.Cola.GridRouter
Microsoft.VisualBasic.Data.visualize.Network.Layouts.EdgeBundling.Mingle
Microsoft.VisualBasic.Data.visualize.Network.Layouts.ForceDirected
| Type | Summary | Package | Members |
|---|---|---|---|
| DegreeWeightedPlanner | 依据节点度值的大小对每一个节点动态生产排斥力权重: 度值越大则该节点对周围节点的排斥力越大 | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9753.4776 |
1 |
| DegreeWeightedPlanner | 依据节点度值的大小对每一个节点动态生产排斥力权重: 度值越大则该节点对周围节点的排斥力越大 | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9762.11310 |
1 |
| EdgeWeightedPlanner | 力导向+边权重:边权重越大,两个节点的引力越大 | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9753.4776 |
2 |
| EdgeWeightedPlanner | 力导向+边权重:边权重越大,两个节点的引力越大 | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9762.11310 |
2 |
| ForceDirectedParameters | Force-Directed 力导向布局参数,可在 PropertyGrid 中编辑。 与 Planner 构造函数参数一一对应。 | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9753.4776 |
9 |
| ForceDirectedParameters | Force-Directed 力导向布局参数,可在 PropertyGrid 中编辑。 与 Planner 构造函数参数一一对应。 | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9762.11310 |
9 |
| GroupPlanner | 这个模块之中的方法会尽量让相同类型分组的节点聚集在一块 | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9753.4776 |
0 |
| GroupPlanner | 这个模块之中的方法会尽量让相同类型分组的节点聚集在一块 | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9762.11310 |
0 |
| MassHandler | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9753.4776 |
1 | |
| MassHandler | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9762.11310 |
1 | |
| Planner | 力导向原始算法代码 | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9753.4776 |
6 |
| Planner | 力导向原始算法代码 | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9762.11310 |
6 |
Microsoft.VisualBasic.Data.visualize.Network.Layouts.Hola
| Type | Summary | Package | Members |
|---|---|---|---|
| AlignRelaxation | HOLA 阶段 4:对齐松弛(Align Relaxation)。 将坐标轴上相互接近(差距小于 alignEpsilon)的节点对强制对齐到同一网格线, 形成轴对齐的正交结构,这是 HOLA "Human-like" 观感的关键来源。 | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9753.4776 |
1 |
| AlignRelaxation | HOLA 阶段 4:对齐松弛(Align Relaxation)。 将坐标轴上相互接近(差距小于 alignEpsilon)的节点对强制对齐到同一网格线, 形成轴对齐的正交结构,这是 HOLA "Human-like" 观感的关键来源。 | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9762.11310 |
1 |
| ConstraintHelper | 封装对 CoLa 约束求解器(投影梯度下降)的调用,供 HOLA 各松弛阶段复用。 坐标系统一为 GDI(y 向下),NORTH 对应 y 减小。 | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9753.4776 |
3 |
| ConstraintHelper | 封装对 CoLa 约束求解器(投影梯度下降)的调用,供 HOLA 各松弛阶段复用。 坐标系统一为 GDI(y 向下),NORTH 对应 y 减小。 | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9762.11310 |
3 |
| HOLA | HOLA 网络布局算法的静态入口。供 test 项目与其它调用方直接使用: Call HOLA.DoLayout(g) | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9753.4776 |
1 |
| HOLA | HOLA 网络布局算法的静态入口。供 test 项目与其它调用方直接使用: Call HOLA.DoLayout(g) | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9762.11310 |
1 |
| HolaLayouter | HOLA 主控类。按照 hola2015.md 第 2 节与 8.2 节描述的阶段顺序, 协调各松弛/路由阶段,把最终坐标写回 NodeData.initialPostion。 | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9753.4776 |
1 |
| HolaLayouter | HOLA 主控类。按照 hola2015.md 第 2 节与 8.2 节描述的阶段顺序, 协调各松弛/路由阶段,把最终坐标写回 NodeData.initialPostion。 | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9762.11310 |
1 |
| HolaLayoutState | HOLA 布局过程中的共享中间状态。所有阶段都围绕这份状态读写节点坐标, 最终由主控阶段把状态写回到 NodeData.initialPostion。 | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9753.4776 |
9 |
| HolaLayoutState | HOLA 布局过程中的共享中间状态。所有阶段都围绕这份状态读写节点坐标, 最终由主控阶段把状态写回到 NodeData.initialPostion。 | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9762.11310 |
9 |
| HolaOptions | 可调节的 HOLA 算法参数集合。所有数值约定为 GDI 坐标系(y 轴向下, NORTH 对应 y 值减小)。集中管理便于在不同数据集上调参。 | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9753.4776 |
8 |
| HolaOptions | 可调节的 HOLA 算法参数集合。所有数值约定为 GDI 坐标系(y 轴向下, NORTH 对应 y 值减小)。集中管理便于在不同数据集上调参。 | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9762.11310 |
8 |
| InitialLayout | HOLA 阶段 1:初始布局。 负责把 NetworkGraph 转换为内部布局状态,并对缺少初始坐标的节点 按连通分量做确定性的网格散布,作为后续松弛迭代的起点。 | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9753.4776 |
3 |
| InitialLayout | HOLA 阶段 1:初始布局。 负责把 NetworkGraph 转换为内部布局状态,并对缺少初始坐标的节点 按连通分量做确定性的网格散布,作为后续松弛迭代的起点。 | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9762.11310 |
3 |
| LayerScanRelaxation | HOLA 阶段 2/3:分层扫描松弛(Layer-wise Scan Relaxation)。 通过几何方式检测相交的连线(边),对相交边涉及到的节点施加分离/对齐约束, 并借助 CoLa 求解器投影,从而逐步消除边交叉,使布局趋向"人类可读"的正交形态。 | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9753.4776 |
3 |
| LayerScanRelaxation | HOLA 阶段 2/3:分层扫描松弛(Layer-wise Scan Relaxation)。 通过几何方式检测相交的连线(边),对相交边涉及到的节点施加分离/对齐约束, 并借助 CoLa 求解器投影,从而逐步消除边交叉,使布局趋向"人类可读"的正交形态。 | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9762.11310 |
3 |
| OrthogonalRouter | HOLA 阶段 6:最终正交路由(Final Orthogonal Route)。 把相邻节点之间的连线生成为轴对齐的正交折线(Z 形),并把折点写入 EdgeData.bends(用相对比例偏移的 WayPointVector 描述, 使节点位置变化时路径形状可跟随保持)。 | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9753.4776 |
1 |
| OrthogonalRouter | HOLA 阶段 6:最终正交路由(Final Orthogonal Route)。 把相邻节点之间的连线生成为轴对齐的正交折线(Z 形),并把折点写入 EdgeData.bends(用相对比例偏移的 WayPointVector 描述, 使节点位置变化时路径形状可跟随保持)。 | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9762.11310 |
1 |
| SpreadRelaxation | HOLA 阶段 5:扩散松弛(Spread Relaxation)。 在两个坐标轴上分别以一维扫描排序的方式施加分离约束(相邻节点间距 >= nodeGap), 借助 CoLa 求解器投影,消除节点与边的重叠,使布局疏密得当。 | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9753.4776 |
2 |
| SpreadRelaxation | HOLA 阶段 5:扩散松弛(Spread Relaxation)。 在两个坐标轴上分别以一维扫描排序的方式施加分离约束(相邻节点间距 >= nodeGap), 借助 CoLa 求解器投影,消除节点与边的重叠,使布局疏密得当。 | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9762.11310 |
2 |
Microsoft.VisualBasic.Data.visualize.Network.Layouts.Hola.ConstraintHelper
Microsoft.VisualBasic.Data.visualize.Network.Layouts.Orthogonal
| Type | Summary | Package | Members |
|---|---|---|---|
| algorithm | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9753.4776 |
2 | |
| algorithm | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9762.11310 |
2 | |
| Blocks | @author santi | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9753.4776 |
1 |
| Blocks | @author santi | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9762.11310 |
1 |
| DisconnectedGraphs | @author santi | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9753.4776 |
3 |
| DisconnectedGraphs | @author santi | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9762.11310 |
3 |
| OEElement | @author santi | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9753.4776 |
12 |
| OEElement | @author santi | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9762.11310 |
12 |
| OEVertex | @author santi | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9753.4776 |
5 |
| OEVertex | @author santi | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9762.11310 |
5 |
| OrthographicEmbedding | OGE Orthographic Graph Embedder (OGE) v1.1 by Santiago Ontañón (2016-2017) This tool computes an orthographic embedding of a plannar input graph. | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9753.4776 |
3 |
| OrthographicEmbedding | OGE Orthographic Graph Embedder (OGE) v1.1 by Santiago Ontañón (2016-2017) This tool computes an orthographic embedding of a plannar input graph. | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9762.11310 |
3 |
| OrthographicEmbeddingResult | @author santi | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9753.4776 |
25 |
| OrthographicEmbeddingResult | @author santi | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9762.11310 |
7 |
| PlanarEmbedding | @author santi | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9753.4776 |
8 |
| PlanarEmbedding | @author santi | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9762.11310 |
8 |
| STNumbering | @author santi | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9753.4776 |
8 |
| STNumbering | @author santi | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9762.11310 |
8 |
| Visibility | @author santi | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9753.4776 |
23 |
| Visibility | @author santi | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9762.11310 |
23 |
Microsoft.VisualBasic.Data.visualize.Network.Layouts.Orthogonal.optimization
| Type | Summary | Package | Members |
|---|---|---|---|
| EmbeddingComparator | @author santi | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9753.4776 |
1 |
| EmbeddingComparator | @author santi | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9762.11310 |
1 |
| OrthographicEmbeddingBoardSizeOptimizer | @author santi | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9753.4776 |
4 |
| OrthographicEmbeddingBoardSizeOptimizer | @author santi | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9762.11310 |
4 |
| OrthographicEmbeddingOptimizer | @author santi | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9753.4776 |
7 |
| OrthographicEmbeddingOptimizer | @author santi | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9762.11310 |
7 |
| OrthographicEmbeddingPathOptimizer | @author santi | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9753.4776 |
3 |
| OrthographicEmbeddingPathOptimizer | @author santi | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9762.11310 |
3 |
| SegmentLengthEmbeddingComparator | @author santi | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9753.4776 |
2 |
| SegmentLengthEmbeddingComparator | @author santi | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9762.11310 |
2 |
Microsoft.VisualBasic.Data.visualize.Network.Layouts.Radial
| Type | Summary | Package | Members |
|---|---|---|---|
| RadialLayout | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9753.4776 |
3 | |
| RadialLayout | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9762.11310 |
3 | |
| RadialLayoutParameters | 径向布局参数,可在 PropertyGrid 中编辑 | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9753.4776 |
2 |
| RadialLayoutParameters | 径向布局参数,可在 PropertyGrid 中编辑 | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9762.11310 |
2 |
Microsoft.VisualBasic.Data.visualize.Network.Layouts.SpringForce
| Type | Summary | Package | Members |
|---|---|---|---|
| AbstractRenderer | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9753.4776 |
4 | |
| AbstractRenderer | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9762.11310 |
4 | |
| ForceDirected | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9753.4776 |
3 | |
| ForceDirected | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9762.11310 |
3 | |
| ForceDirected2D | Layout provider engine for the 2D network graphics. | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9753.4776 |
0 |
| ForceDirected2D | Layout provider engine for the 2D network graphics. | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9762.11310 |
0 |
| ForceDirectedArgs | Function parameters for forceNetwork.doForceLayout()) | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9753.4776 |
6 |
| ForceDirectedArgs | Function parameters for forceNetwork.doForceLayout()) | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9762.11310 |
6 |
| LayoutPoint | The position of the node object in the fdg data model. | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9753.4776 |
0 |
| LayoutPoint | The position of the node object in the fdg data model. | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9762.11310 |
0 |
| Parameters | The network graph layout parameters | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9753.4776 |
6 |
| Parameters | The network graph layout parameters | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9762.11310 |
6 |
Microsoft.VisualBasic.Data.visualize.Network.Layouts.SpringForce.Interfaces
| Type | Summary | Package | Members |
|---|---|---|---|
| IForceDirected | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9753.4776 |
1 | |
| IForceDirected | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9762.11310 |
1 |
Microsoft.VisualBasic.Data.visualize.Network.Layouts.SpringForce.LayoutUpdater
| Type | Summary | Package | Members |
|---|---|---|---|
| layoutGenerator | Do nothing, just used for generate network layout | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9753.4776 |
1 |
| layoutGenerator | Do nothing, just used for generate network layout | Microsoft.VisualBasic.Data.visualize.Network.Layouts 1.0.9762.11310 |
1 |
Microsoft.VisualBasic.Data.visualize.Network.Styling
| Type | Summary | Package | Members |
|---|---|---|---|
| BrushExpression | Microsoft.VisualBasic.Data.visualize.Network.Visualizer 1.0.9753.4776 |
3 | |
| BrushExpression | Microsoft.VisualBasic.Data.visualize.Network.Visualizer 1.0.9762.11310 |
3 | |
| MapperProcessor | Do style mapping from the parsed css file at here | Microsoft.VisualBasic.Data.visualize.Network.Visualizer 1.0.9753.4776 |
1 |
| MapperProcessor | Do style mapping from the parsed css file at here | Microsoft.VisualBasic.Data.visualize.Network.Visualizer 1.0.9762.11310 |
1 |
| NodeStyles | Microsoft.VisualBasic.Data.visualize.Network.Visualizer 1.0.9753.4776 |
1 | |
| NodeStyles | Microsoft.VisualBasic.Data.visualize.Network.Visualizer 1.0.9762.11310 |
1 | |
| SizeExpression | Microsoft.VisualBasic.Data.visualize.Network.Visualizer 1.0.9753.4776 |
2 | |
| SizeExpression | Microsoft.VisualBasic.Data.visualize.Network.Visualizer 1.0.9762.11310 |
2 | |
| StyleMappings | Color, size, shapes, line type, etc. | Microsoft.VisualBasic.Data.visualize.Network.Visualizer 1.0.9753.4776 |
2 |
| StyleMappings | Color, size, shapes, line type, etc. | Microsoft.VisualBasic.Data.visualize.Network.Visualizer 1.0.9762.11310 |
2 |
| SyntaxExtensions | Microsoft.VisualBasic.Data.visualize.Network.Visualizer 1.0.9753.4776 |
3 | |
| SyntaxExtensions | Microsoft.VisualBasic.Data.visualize.Network.Visualizer 1.0.9762.11310 |
3 |
Microsoft.VisualBasic.Data.visualize.Network.Styling.CSS
| Type | Summary | Package | Members |
|---|---|---|---|
| LabelStyle | Microsoft.VisualBasic.Data.visualize.Network.Visualizer 1.0.9753.4776 |
1 | |
| LabelStyle | Microsoft.VisualBasic.Data.visualize.Network.Visualizer 1.0.9762.11310 |
1 | |
| NodeStyle | Microsoft.VisualBasic.Data.visualize.Network.Visualizer 1.0.9753.4776 |
2 | |
| NodeStyle | Microsoft.VisualBasic.Data.visualize.Network.Visualizer 1.0.9762.11310 |
2 | |
| StyleCreator | Microsoft.VisualBasic.Data.visualize.Network.Visualizer 1.0.9753.4776 |
12 | |
| StyleCreator | Microsoft.VisualBasic.Data.visualize.Network.Visualizer 1.0.9762.11310 |
12 | |
| StyleMapper | Network object visualize styling object model, the network render css file parser | Microsoft.VisualBasic.Data.visualize.Network.Visualizer 1.0.9753.4776 |
4 |
| StyleMapper | Network object visualize styling object model, the network render css file parser | Microsoft.VisualBasic.Data.visualize.Network.Visualizer 1.0.9762.11310 |
4 |
| StyleParser | The Css file model parser | Microsoft.VisualBasic.Data.visualize.Network.Visualizer 1.0.9753.4776 |
0 |
| StyleParser | The Css file model parser | Microsoft.VisualBasic.Data.visualize.Network.Visualizer 1.0.9762.11310 |
0 |
| Styles | Microsoft.VisualBasic.Data.visualize.Network.Visualizer 1.0.9753.4776 |
3 | |
| Styles | Microsoft.VisualBasic.Data.visualize.Network.Visualizer 1.0.9762.11310 |
3 |
Microsoft.VisualBasic.Data.visualize.Network.Styling.FillBrushes
| Type | Summary | Package | Members |
|---|---|---|---|
| CategoryBrush | 差不多相当于离散映射的一种变种 | Microsoft.VisualBasic.Data.visualize.Network.Visualizer 1.0.9753.4776 |
1 |
| CategoryBrush | 差不多相当于离散映射的一种变种 | Microsoft.VisualBasic.Data.visualize.Network.Visualizer 1.0.9762.11310 |
1 |
| ColorRangeBrush | 区间映射,也可能是category映射 | Microsoft.VisualBasic.Data.visualize.Network.Visualizer 1.0.9753.4776 |
0 |
| ColorRangeBrush | 区间映射,也可能是category映射 | Microsoft.VisualBasic.Data.visualize.Network.Visualizer 1.0.9762.11310 |
0 |
| ImagePassthroughBrush | 属性名作为文件名,从指定的文件夹之中读取图片文件的passthrough映射 | Microsoft.VisualBasic.Data.visualize.Network.Visualizer 1.0.9753.4776 |
0 |
| ImagePassthroughBrush | 属性名作为文件名,从指定的文件夹之中读取图片文件的passthrough映射 | Microsoft.VisualBasic.Data.visualize.Network.Visualizer 1.0.9762.11310 |
0 |
| PassthroughBrush | 只能够映射颜色 | Microsoft.VisualBasic.Data.visualize.Network.Visualizer 1.0.9753.4776 |
0 |
| PassthroughBrush | 只能够映射颜色 | Microsoft.VisualBasic.Data.visualize.Network.Visualizer 1.0.9762.11310 |
0 |
| UnifyColorBrush | 全部都使用统一的颜色进行填充 | Microsoft.VisualBasic.Data.visualize.Network.Visualizer 1.0.9753.4776 |
0 |
| UnifyColorBrush | 全部都使用统一的颜色进行填充 | Microsoft.VisualBasic.Data.visualize.Network.Visualizer 1.0.9762.11310 |
0 |
| UnifyImageBrush | 全部都使用统一的图案 | Microsoft.VisualBasic.Data.visualize.Network.Visualizer 1.0.9753.4776 |
0 |
| UnifyImageBrush | 全部都使用统一的图案 | Microsoft.VisualBasic.Data.visualize.Network.Visualizer 1.0.9762.11310 |
0 |
Microsoft.VisualBasic.Data.visualize.Network.Styling.Numeric
| Type | Summary | Package | Members |
|---|---|---|---|
| IGetSize | Microsoft.VisualBasic.Data.visualize.Network.Visualizer 1.0.9753.4776 |
1 | |
| IGetSize | Microsoft.VisualBasic.Data.visualize.Network.Visualizer 1.0.9762.11310 |
1 | |
| PassthroughNumber | 从节点的给定属性之中得到对应的节点大小值 | Microsoft.VisualBasic.Data.visualize.Network.Visualizer 1.0.9753.4776 |
2 |
| PassthroughNumber | 从节点的给定属性之中得到对应的节点大小值 | Microsoft.VisualBasic.Data.visualize.Network.Visualizer 1.0.9762.11310 |
2 |
| UnifyNumber | 所有的节点都统一大小 | Microsoft.VisualBasic.Data.visualize.Network.Visualizer 1.0.9753.4776 |
0 |
| UnifyNumber | 所有的节点都统一大小 | Microsoft.VisualBasic.Data.visualize.Network.Visualizer 1.0.9762.11310 |
0 |
Microsoft.VisualBasic.Data.visualize.TabularRender
| Type | Summary | Package | Members |
|---|---|---|---|
| BarDataTableExtensions | csv format " ",serial1,serial2,... | Microsoft.VisualBasic.Data.visualize 5.0.9753.4776 |
0 |
| BarDataTableExtensions | csv format " ",serial1,serial2,... | Microsoft.VisualBasic.Data.visualize 5.0.9762.11310 |
0 |
| Extensions | Microsoft.VisualBasic.Data.visualize 5.0.9753.4776 |
1 | |
| Extensions | Microsoft.VisualBasic.Data.visualize 5.0.9762.11310 |
1 | |
| SerialData | Microsoft.VisualBasic.Data.visualize 5.0.9753.4776 |
9 | |
| SerialData | Microsoft.VisualBasic.Data.visualize 5.0.9762.11310 |
9 |
Microsoft.VisualBasic.Data.Wave
| Type | Summary | Package | Members |
|---|---|---|---|
| Channels | Legacy enumeration for common channel counts. | Microsoft.VisualBasic.Data.Wave 1.0.9753.4776 |
2 |
| Channels | Legacy enumeration for common channel counts. | Microsoft.VisualBasic.Data.Wave 1.0.9762.11310 |
2 |
| FMTSubChunk | The "fmt " subchunk describes the sound data's format | Microsoft.VisualBasic.Data.Wave 1.0.9753.4776 |
13 |
| FMTSubChunk | The "fmt " subchunk describes the sound data's format | Microsoft.VisualBasic.Data.Wave 1.0.9762.11310 |
13 |
| MelFilterbank | Mel 尺度三角滤波器组,用于将功率谱转换为 Mel 频率能量。 Mel 尺度模拟人耳对频率的感知:低频分辨率高,高频分辨率低。 公式:mel = 2595 * log10(1 + hz/700) | Microsoft.VisualBasic.Data.Wave 1.0.9753.4776 |
4 |
| MelFilterbank | Mel 尺度三角滤波器组,用于将功率谱转换为 Mel 频率能量。 Mel 尺度模拟人耳对频率的感知:低频分辨率高,高频分辨率低。 公式:mel = 2595 * log10(1 + hz/700) | Microsoft.VisualBasic.Data.Wave 1.0.9762.11310 |
4 |
| ParserDispatch | Central dispatch for choosing the correct parser based on audio format and bits per sample. | Microsoft.VisualBasic.Data.Wave 1.0.9753.4776 |
2 |
| ParserDispatch | Central dispatch for choosing the correct parser based on audio format and bits per sample. | Microsoft.VisualBasic.Data.Wave 1.0.9762.11310 |
2 |
| Sample | Microsoft.VisualBasic.Data.Wave 1.0.9753.4776 |
24 | |
| Sample | Microsoft.VisualBasic.Data.Wave 1.0.9762.11310 |
24 | |
| SignalProcessing | 信号处理工具模块,提供静态方法供声纹提取流水线调用。 | Microsoft.VisualBasic.Data.Wave 1.0.9753.4776 |
9 |
| SignalProcessing | 信号处理工具模块,提供静态方法供声纹提取流水线调用。 | Microsoft.VisualBasic.Data.Wave 1.0.9762.11310 |
9 |
| VoicePrintExtractor | 声纹向量提取器。 纯 DSP 实现,不依赖任何文件 I/O。 输入为归一化的音频样本数组,输出为固定维度的声纹向量。 | Microsoft.VisualBasic.Data.Wave 1.0.9753.4776 |
8 |
| VoicePrintExtractor | 声纹向量提取器。 纯 DSP 实现,不依赖任何文件 I/O。 输入为归一化的音频样本数组,输出为固定维度的声纹向量。 | Microsoft.VisualBasic.Data.Wave 1.0.9762.11310 |
8 |
| VoicePrintOptions | 声纹提取参数配置。 | Microsoft.VisualBasic.Data.Wave 1.0.9753.4776 |
11 |
| VoicePrintOptions | 声纹提取参数配置。 | Microsoft.VisualBasic.Data.Wave 1.0.9762.11310 |
11 |
| VoicePrintResult | 声纹提取结果(包含向量和元数据)。 | Microsoft.VisualBasic.Data.Wave 1.0.9753.4776 |
6 |
| VoicePrintResult | 声纹提取结果(包含向量和元数据)。 | Microsoft.VisualBasic.Data.Wave 1.0.9762.11310 |
6 |
| WaveFile | The wav file model | Microsoft.VisualBasic.Data.Wave 1.0.9753.4776 |
5 |
| WaveFile | The wav file model | Microsoft.VisualBasic.Data.Wave 1.0.9762.11310 |
5 |
| WaveWriter | Static utility class for writing WAV audio files from sample data. | Microsoft.VisualBasic.Data.Wave 1.0.9753.4776 |
15 |
| WaveWriter | Static utility class for writing WAV audio files from sample data. | Microsoft.VisualBasic.Data.Wave 1.0.9762.11310 |
15 |
| WavFormatGuids | Well-known GUIDs for WAVE_FORMAT_EXTENSIBLE SubFormat field. | Microsoft.VisualBasic.Data.Wave 1.0.9753.4776 |
4 |
| WavFormatGuids | Well-known GUIDs for WAVE_FORMAT_EXTENSIBLE SubFormat field. | Microsoft.VisualBasic.Data.Wave 1.0.9762.11310 |
4 |
| WavVoicePrintReader | 基于 WAV 文件的声纹提取辅助类。 提供一次性调用接口,自动处理文件打开、声道选取、时间窗口裁剪。 | Microsoft.VisualBasic.Data.Wave 1.0.9753.4776 |
3 |
| WavVoicePrintReader | 基于 WAV 文件的声纹提取辅助类。 提供一次性调用接口,自动处理文件打开、声道选取、时间窗口裁剪。 | Microsoft.VisualBasic.Data.Wave 1.0.9762.11310 |
3 |
| wFormatTag | Microsoft.VisualBasic.Data.Wave 1.0.9753.4776 |
10 | |
| wFormatTag | Microsoft.VisualBasic.Data.Wave 1.0.9762.11310 |
10 |
Microsoft.VisualBasic.DataMining
| Type | Summary | Package | Members |
|---|---|---|---|
| MarginalLikelihoodAnalysis | @author Marc Suchard @author Alexei Drummond Source translated from model_P.c (a component of BAli-Phy by Benjamin Redelings and Marc Suchard | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
12 |
| MarginalLikelihoodAnalysis | @author Marc Suchard @author Alexei Drummond Source translated from model_P.c (a component of BAli-Phy by Benjamin Redelings and Marc Suchard | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
12 |
| SelfOrganizingMap | SOM: Self-Organizing Map | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
8 |
| SelfOrganizingMap | SOM: Self-Organizing Map | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
8 |
| Standardizer | 每维度特征的 z-score 标准化器。 训练阶段按特征维计算均值/标准差,推理阶段复用同一套参数, 解决各维度特征量纲差异大导致的梯度不稳定问题。 零方差维度标准差置 1,避免除零。 | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
6 |
| Standardizer | 每维度特征的 z-score 标准化器。 训练阶段按特征维计算均值/标准差,推理阶段复用同一套参数, 解决各维度特征量纲差异大导致的梯度不稳定问题。 零方差维度标准差置 1,避免除零。 | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
6 |
| Statistics | Set of statistics functions. | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
6 |
| Statistics | Set of statistics functions. | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
6 |
| ValueMapping | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
7 | |
| ValueMapping | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
3 |
Microsoft.VisualBasic.DataMining.AprioriRules
| Type | Summary | Package | Members |
|---|---|---|---|
| AprioriExport | AprioriRules API export module | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
2 |
| AprioriExport | AprioriRules API export module | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
2 |
| Encoding | Transaction encoding helper.(对一个Transaction之中的独立部件编码为一个字符) | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
6 |
| Encoding | Transaction encoding helper.(对一个Transaction之中的独立部件编码为一个字符) | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
6 |
| Item | mapping the Item.Item string comparision to Item.Code comparision | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
9 |
| Item | mapping the Item.Item string comparision to Item.Code comparision | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
9 |
| ItemSet | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
18 | |
| ItemSet | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
18 |
Microsoft.VisualBasic.DataMining.AprioriRules.Entities
| Type | Summary | Package | Members |
|---|---|---|---|
| Output | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
6 | |
| Output | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
6 | |
| Rule | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
10 | |
| Rule | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
10 | |
| Transaction | a transaction record | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
4 |
| Transaction | a transaction record | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
4 |
Microsoft.VisualBasic.DataMining.AprioriRules.Impl
Microsoft.VisualBasic.DataMining.BinaryTree
| Type | Summary | Package | Members |
|---|---|---|---|
| BTreeCluster | Clustering data via binary tree | Microsoft.VisualBasic.DataMining.BinaryTreeClustering 1.0.9753.4776 |
7 |
| BTreeCluster | Clustering data via binary tree | Microsoft.VisualBasic.DataMining.BinaryTreeClustering 1.0.9762.11310 |
2 |
| ClusterTree | A simple cluster tree builder just provides the reference id of the target object for make the alignment or comparision. | Microsoft.VisualBasic.DataMining.BinaryTreeClustering 1.0.9753.4776 |
3 |
| ClusterTree | A simple cluster tree builder just provides the reference id of the target object for make the alignment or comparision. | Microsoft.VisualBasic.DataMining.BinaryTreeClustering 1.0.9762.11310 |
3 |
| ClusterViz | Microsoft.VisualBasic.DataMining.BinaryTreeClustering 1.0.9753.4776 |
1 | |
| ClusterViz | Microsoft.VisualBasic.DataMining.BinaryTreeClustering 1.0.9762.11310 |
1 | |
| Comparison | Data adapter for get comparision score from a pre-computed DistanceMatrix. | Microsoft.VisualBasic.DataMining.BinaryTreeClustering 1.0.9753.4776 |
2 |
| Comparison | Data adapter for get comparision score from a pre-computed DistanceMatrix. | Microsoft.VisualBasic.DataMining.BinaryTreeClustering 1.0.9762.11310 |
2 |
| ComparisonProvider | Microsoft.VisualBasic.DataMining.BinaryTreeClustering 1.0.9753.4776 |
6 | |
| ComparisonProvider | Microsoft.VisualBasic.DataMining.BinaryTreeClustering 1.0.9762.11310 |
6 | |
| DiffusionMap | Generate a diffusion map embedding | Microsoft.VisualBasic.DataMining.BinaryTreeClustering 1.0.9753.4776 |
2 |
| DiffusionMap | Generate a diffusion map embedding | Microsoft.VisualBasic.DataMining.BinaryTreeClustering 1.0.9762.11310 |
2 |
| KNNGraph | Microsoft.VisualBasic.DataMining.BinaryTreeClustering 1.0.9753.4776 |
3 | |
| KNNGraph | Microsoft.VisualBasic.DataMining.BinaryTreeClustering 1.0.9762.11310 |
3 | |
| NewickParser | http://www.evolgenius.info/evolview/ | Microsoft.VisualBasic.DataMining.BinaryTreeClustering 1.0.9753.4776 |
6 |
| NewickParser | http://www.evolgenius.info/evolview/ | Microsoft.VisualBasic.DataMining.BinaryTreeClustering 1.0.9762.11310 |
4 |
| Partitioning | Microsoft.VisualBasic.DataMining.BinaryTreeClustering 1.0.9753.4776 |
2 | |
| Partitioning | Microsoft.VisualBasic.DataMining.BinaryTreeClustering 1.0.9762.11310 |
2 |
Microsoft.VisualBasic.DataMining.BinaryTree.AffinityPropagation
| Type | Summary | Package | Members |
|---|---|---|---|
| AffinityPropagation | Affinity propagation In statistics and data mining, affinity propagation (AP) is a clustering algorithm based on the concept of "message passing" between data points. | Microsoft.VisualBasic.DataMining.BinaryTreeClustering 1.0.9753.4776 |
6 |
| AffinityPropagation | Affinity propagation In statistics and data mining, affinity propagation (AP) is a clustering algorithm based on the concept of "message passing" between data points. | Microsoft.VisualBasic.DataMining.BinaryTreeClustering 1.0.9762.11310 |
6 |
| QuickSelect | Microsoft.VisualBasic.DataMining.BinaryTreeClustering 1.0.9753.4776 |
1 | |
| QuickSelect | Microsoft.VisualBasic.DataMining.BinaryTreeClustering 1.0.9762.11310 |
1 | |
| SimilarityMatrix | Microsoft.VisualBasic.DataMining.BinaryTreeClustering 1.0.9753.4776 |
1 | |
| SimilarityMatrix | Microsoft.VisualBasic.DataMining.BinaryTreeClustering 1.0.9762.11310 |
1 |
Microsoft.VisualBasic.DataMining.BinaryTree.ClusterTree
Microsoft.VisualBasic.DataMining.BinaryTree.KNNGraph
| Type | Summary | Package | Members |
|---|---|---|---|
| NodeVisits | Microsoft.VisualBasic.DataMining.BinaryTreeClustering 1.0.9753.4776 |
1 | |
| NodeVisits | Microsoft.VisualBasic.DataMining.BinaryTreeClustering 1.0.9762.11310 |
1 |
Microsoft.VisualBasic.DataMining.Bonsai
| Type | Summary | Package | Members |
|---|---|---|---|
| Bonsai | Public entry point for the Bonsai high-dimensional data visualisation. | Microsoft.VisualBasic.DataMining.Bonsai 5.0.9753.4776 |
19 |
| Bonsai | Public entry point for the Bonsai high-dimensional data visualisation. | Microsoft.VisualBasic.DataMining.Bonsai 5.0.9762.11310 |
19 |
| BonsaiNode | A node in the Bonsai tree. | Microsoft.VisualBasic.DataMining.Bonsai 5.0.9753.4776 |
39 |
| BonsaiNode | A node in the Bonsai tree. | Microsoft.VisualBasic.DataMining.Bonsai 5.0.9762.11310 |
39 |
| BonsaiTree | The Bonsai tree-reconstruction engine. | Microsoft.VisualBasic.DataMining.Bonsai 5.0.9753.4776 |
30 |
| BonsaiTree | The Bonsai tree-reconstruction engine. | Microsoft.VisualBasic.DataMining.Bonsai 5.0.9762.11310 |
30 |
| Likelihood | Pure numeric core of the Bonsai likelihood model. | Microsoft.VisualBasic.DataMining.Bonsai 5.0.9753.4776 |
14 |
| Likelihood | Pure numeric core of the Bonsai likelihood model. | Microsoft.VisualBasic.DataMining.Bonsai 5.0.9762.11310 |
14 |
| Optimizer | Lightweight numerical optimisers used by the Bonsai core. | Microsoft.VisualBasic.DataMining.Bonsai 5.0.9753.4776 |
2 |
| Optimizer | Lightweight numerical optimisers used by the Bonsai core. | Microsoft.VisualBasic.DataMining.Bonsai 5.0.9762.11310 |
2 |
| PointSet | A point set of high-dimensional observations, stripped of all single-cell biology semantics. | Microsoft.VisualBasic.DataMining.Bonsai 5.0.9753.4776 |
22 |
| PointSet | A point set of high-dimensional observations, stripped of all single-cell biology semantics. | Microsoft.VisualBasic.DataMining.Bonsai 5.0.9762.11310 |
22 |
| TreeLayout | Tree layout routines that turn the reconstructed Bonsai topology (parent/child + branch times) into a two-dimensional embedding, mirroring the distortion-free 2D visualisation tha… | Microsoft.VisualBasic.DataMining.Bonsai 5.0.9753.4776 |
2 |
| TreeLayout | Tree layout routines that turn the reconstructed Bonsai topology (parent/child + branch times) into a two-dimensional embedding, mirroring the distortion-free 2D visualisation tha… | Microsoft.VisualBasic.DataMining.Bonsai 5.0.9762.11310 |
2 |
Microsoft.VisualBasic.DataMining.Bonsai.BonsaiTree
| Type | Summary | Package | Members |
|---|---|---|---|
| NNIState | Saved topology state for an NNI move so it can be reverted exactly when the move does not improve the likelihood. | Microsoft.VisualBasic.DataMining.Bonsai 5.0.9753.4776 |
0 |
| NNIState | Saved topology state for an NNI move so it can be reverted exactly when the move does not improve the likelihood. | Microsoft.VisualBasic.DataMining.Bonsai 5.0.9762.11310 |
0 |
| SPRState | Saved topology state for an SPR move (prune subtree X, regraft it onto a new parent Epar). | Microsoft.VisualBasic.DataMining.Bonsai 5.0.9753.4776 |
0 |
| SPRState | Saved topology state for an SPR move (prune subtree X, regraft it onto a new parent Epar). | Microsoft.VisualBasic.DataMining.Bonsai 5.0.9762.11310 |
0 |
Microsoft.VisualBasic.DataMining.Bonsai.Optimizer
| Type | Summary | Package | Members |
|---|---|---|---|
| ObjWithGrad | Delegate for a scalar objective that also returns its gradient. | Microsoft.VisualBasic.DataMining.Bonsai 5.0.9753.4776 |
3 |
| ObjWithGrad | Delegate for a scalar objective that also returns its gradient. | Microsoft.VisualBasic.DataMining.Bonsai 5.0.9762.11310 |
3 |
| ScalarFunc | Delegate for a 1-D scalar function f(t) whose root we want. | Microsoft.VisualBasic.DataMining.Bonsai 5.0.9753.4776 |
3 |
| ScalarFunc | Delegate for a 1-D scalar function f(t) whose root we want. | Microsoft.VisualBasic.DataMining.Bonsai 5.0.9762.11310 |
3 |
Microsoft.VisualBasic.DataMining.Clustering
| Type | Summary | Package | Members |
|---|---|---|---|
| CanopyBuilder | initial for k-means | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
7 |
| CanopyBuilder | initial for k-means | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
3 |
| ClusteringTableExtensions | 统一的二维表聚类扩展入口集合。 这里的每一个扩展方法都以经过预处理之后的纯数值二维表NumericTable 作为数据输入,并且将聚类结果写入标签矩阵,最终返回写入结果之后的原表对象。 | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
15 |
| ClusteringTableExtensions | 统一的二维表聚类扩展入口集合。 这里的每一个扩展方法都以经过预处理之后的纯数值二维表NumericTable 作为数据输入,并且将聚类结果写入标签矩阵,最终返回写入结果之后的原表对象。 | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
15 |
| Density | evaluate point density | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
4 |
| Density | evaluate point density | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
3 |
| KNN | KNN classifier | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
4 |
| KNN | KNN classifier | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
3 |
| Mark | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
4 | |
| Mark | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
4 | |
| NumericRow | 数值行对象:包装统一二维表NumericTable之中的一行数值数据, 同时携带样本 ID 与该行在原始表之中的下标。 该对象用于在不修改既有泛型聚类算法内部实现的前提之下,让这些算法直接消费 二维表的数值行。 | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
4 |
| NumericRow | 数值行对象:包装统一二维表NumericTable之中的一行数值数据, 同时携带样本 ID 与该行在原始表之中的下标。 该对象用于在不修改既有泛型聚类算法内部实现的前提之下,让这些算法直接消费 二维表的数值行。 | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
3 |
| Spectral | Spectral Clustering | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
12 |
| Spectral | Spectral Clustering | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
12 |
Microsoft.VisualBasic.DataMining.ComponentModel
| Type | Summary | Package | Members |
|---|---|---|---|
| EntityBase | An abstract property vector | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
4 |
| EntityBase | An abstract property vector | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
4 |
| IDataEmbedding | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
2 | |
| IDataEmbedding | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
2 | |
| IntegerEntity | {Properties} -> Class | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
4 |
| IntegerEntity | {Properties} -> Class | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
4 |
| TraceBackAlgorithm | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
2 | |
| TraceBackAlgorithm | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
2 | |
| TraceBackIterator | A helper module for record the clustering traceback information for run algorithm debug | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
8 |
| TraceBackIterator | A helper module for record the clustering traceback information for run algorithm debug | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
3 |
Microsoft.VisualBasic.DataMining.ComponentModel.Discretion
| Type | Summary | Package | Members |
|---|---|---|---|
| Discretizer | 通过这个对象来执行对连续性数值的数据集的离散化操作 | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
7 |
| Discretizer | 通过这个对象来执行对连续性数值的数据集的离散化操作 | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
6 |
| NormalRangeDiscretizer | 对原始数据进行区间离散化 | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
6 |
| NormalRangeDiscretizer | 对原始数据进行区间离散化 | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
6 |
Microsoft.VisualBasic.DataMining.ComponentModel.Encoder
| Type | Summary | Package | Members |
|---|---|---|---|
| ClassEncoder | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
11 | |
| ClassEncoder | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
11 | |
| ColorClass | Object entity classification class | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
16 |
| ColorClass | Object entity classification class | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
16 |
Microsoft.VisualBasic.DataMining.ComponentModel.Encoder.Variable
Microsoft.VisualBasic.DataMining.ComponentModel.EntityModels
| Type | Summary | Package | Members |
|---|---|---|---|
| ClusterEntity | A tagged numeric vector | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
12 |
| ClusterEntity | A tagged numeric vector | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
10 |
| EntityClusterModel | 存储在Csv文件里面的数据模型,近似等价于csv DataSet对象, 只不过多带了一个用来描述cluster的EntityClusterModel.Cluster 属性标签 | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
7 |
| EntityClusterModel | 存储在Csv文件里面的数据模型,近似等价于csv DataSet对象, 只不过多带了一个用来描述cluster的EntityClusterModel.Cluster 属性标签 | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
2 |
Microsoft.VisualBasic.DataMining.ComponentModel.Normalizer
| Type | Summary | Package | Members |
|---|---|---|---|
| Methods | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
6 | |
| Methods | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
6 | |
| Normalizations | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
3 | |
| Normalizations | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
3 |
Microsoft.VisualBasic.DataMining.ComponentModel.Serialization
| Type | Summary | Package | Members |
|---|---|---|---|
| EntityVectorFile | helper module for IPC parallel or store the result data | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
4 |
| EntityVectorFile | helper module for IPC parallel or store the result data | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
0 |
Microsoft.VisualBasic.DataMining.DBSCAN
| Type | Summary | Package | Members |
|---|---|---|---|
| DbscanAlgorithm | DBSCAN algorithm class, Density-based spatial clustering of applications with noise (DBSCAN) | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
2 |
| DbscanAlgorithm | DBSCAN algorithm class, Density-based spatial clustering of applications with noise (DBSCAN) | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
2 |
| DbscanPoint | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
6 | |
| DbscanPoint | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
1 | |
| DbscanSession | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
10 | |
| DbscanSession | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
8 |
Microsoft.VisualBasic.DataMining.DecisionTree
| Type | Summary | Package | Members |
|---|---|---|---|
| Algorithm | Algorithm module for train a new decision tree model | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
2 |
| Algorithm | Algorithm module for train a new decision tree model | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
2 |
| Attributes | Node attribute value | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
5 |
| Attributes | Node attribute value | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
5 |
| Tree | Implementation of the ID3 to create a decision tree > https://github.com/WolfgangOfner/DecisionTree | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
7 |
| Tree | Implementation of the ID3 to create a decision tree > https://github.com/WolfgangOfner/DecisionTree | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
7 |
| VisualDebugger | Display debug info on console | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
2 |
| VisualDebugger | Display debug info on console | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
2 |
Microsoft.VisualBasic.DataMining.DecisionTree.Data
| Type | Summary | Package | Members |
|---|---|---|---|
| DataImports | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
2 | |
| DataImports | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
2 | |
| DataTable | 训练集样本数据表 | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
7 |
| DataTable | 训练集样本数据表 | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
7 |
| Entity | A row in data table.(分类用的对象实例) | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
3 |
| Entity | A row in data table.(分类用的对象实例) | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
3 |
Microsoft.VisualBasic.DataMining.DFL_Driver
| Type | Summary | Package | Members |
|---|---|---|---|
| dflNode | A node in the fuzzy logic network.(模糊逻辑网络之中的一个节点) | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
3 |
| dflNode | A node in the fuzzy logic network.(模糊逻辑网络之中的一个节点) | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
3 |
| I_FactorElement | This object represents the factor which decides the node state changes.(决定dflNode的状态的因素) | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
10 |
| I_FactorElement | This object represents the factor which decides the node state changes.(决定dflNode的状态的因素) | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
10 |
Microsoft.VisualBasic.DataMining.DynamicProgramming
| Type | Summary | Package | Members |
|---|---|---|---|
| CenterStar | Multiple-sequence-alignment This program calculates the multiple sequence alignment of k>1 DNA sequences. | Microsoft.VisualBasic.DataMining.DynamicProgramming 1.0.9753.4776 |
22 |
| CenterStar | Multiple-sequence-alignment This program calculates the multiple sequence alignment of k>1 DNA sequences. | Microsoft.VisualBasic.DataMining.DynamicProgramming 1.0.9762.11310 |
22 |
| Extensions | Microsoft.VisualBasic.DataMining.DynamicProgramming 1.0.9753.4776 |
3 | |
| Extensions | Microsoft.VisualBasic.DataMining.DynamicProgramming 1.0.9762.11310 |
3 | |
| KBandSearch | Global alignment (Needleman-Wunsch) with a k-band heuristic. | Microsoft.VisualBasic.DataMining.DynamicProgramming 1.0.9753.4776 |
7 |
| KBandSearch | Global alignment (Needleman-Wunsch) with a k-band heuristic. | Microsoft.VisualBasic.DataMining.DynamicProgramming 1.0.9762.11310 |
7 |
Microsoft.VisualBasic.DataMining.DynamicProgramming.CenterStar
| Type | Summary | Package | Members |
|---|---|---|---|
| CenterGaps | 某一条序列与中心序列两两比对之后,在中心坐标上诱导出的空格列表。 | Microsoft.VisualBasic.DataMining.DynamicProgramming 1.0.9753.4776 |
4 |
| CenterGaps | 某一条序列与中心序列两两比对之后,在中心坐标上诱导出的空格列表。 | Microsoft.VisualBasic.DataMining.DynamicProgramming 1.0.9762.11310 |
4 |
Microsoft.VisualBasic.DataMining.DynamicProgramming.NeedlemanWunsch
| Type | Summary | Package | Members |
|---|---|---|---|
| NeedlemanWunsch | Needleman-Wunsch Algorithm Bioinformatics 1, WS 15/16 Dr. | Microsoft.VisualBasic.DataMining.DynamicProgramming 1.0.9753.4776 |
3 |
| NeedlemanWunsch | Needleman-Wunsch Algorithm Bioinformatics 1, WS 15/16 Dr. | Microsoft.VisualBasic.DataMining.DynamicProgramming 1.0.9762.11310 |
3 |
| ScoreMatrix | Microsoft.VisualBasic.DataMining.DynamicProgramming 1.0.9753.4776 |
5 | |
| ScoreMatrix | Microsoft.VisualBasic.DataMining.DynamicProgramming 1.0.9762.11310 |
4 | |
| Workspace | Base class for the Needleman-Wunsch Algorithm Bioinformatics 1, WS 15/16 Dr. | Microsoft.VisualBasic.DataMining.DynamicProgramming 1.0.9753.4776 |
10 |
| Workspace | Base class for the Needleman-Wunsch Algorithm Bioinformatics 1, WS 15/16 Dr. | Microsoft.VisualBasic.DataMining.DynamicProgramming 1.0.9762.11310 |
10 |
Microsoft.VisualBasic.DataMining.DynamicProgramming.SmithWaterman
| Type | Summary | Package | Members |
|---|---|---|---|
| Directions | Constants of directions. | Microsoft.VisualBasic.DataMining.DynamicProgramming 1.0.9753.4776 |
8 |
| Directions | Constants of directions. | Microsoft.VisualBasic.DataMining.DynamicProgramming 1.0.9762.11310 |
8 |
| GSW | Generic Smith-Waterman computing kernel.(Smith-Waterman泛型化通用计算核心) | Microsoft.VisualBasic.DataMining.DynamicProgramming 1.0.9753.4776 |
26 |
| GSW | Generic Smith-Waterman computing kernel.(Smith-Waterman泛型化通用计算核心) | Microsoft.VisualBasic.DataMining.DynamicProgramming 1.0.9762.11310 |
25 |
| LocalHSPMatch | Microsoft.VisualBasic.DataMining.DynamicProgramming 1.0.9753.4776 |
9 | |
| LocalHSPMatch | Microsoft.VisualBasic.DataMining.DynamicProgramming 1.0.9762.11310 |
9 | |
| Match | the smith-waterman HSP match class defintion | Microsoft.VisualBasic.DataMining.DynamicProgramming 1.0.9753.4776 |
11 |
| Match | the smith-waterman HSP match class defintion | Microsoft.VisualBasic.DataMining.DynamicProgramming 1.0.9762.11310 |
11 |
| SimpleChaining | Microsoft.VisualBasic.DataMining.DynamicProgramming 1.0.9753.4776 |
6 | |
| SimpleChaining | Microsoft.VisualBasic.DataMining.DynamicProgramming 1.0.9762.11310 |
6 |
Microsoft.VisualBasic.DataMining.Evaluation
| Type | Summary | Package | Members |
|---|---|---|---|
| ChangePoint | 混淆矩阵在排序扫描过程之中的一个变化点(SVM.NET 评估器内部使用)。 | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
0 |
| ClassificationResult | 机器学习分类结果的统一数据模型:(分数, 0/1 标签)。 该类型替代了原先散落在 Metric.auc())、ROC.AUC()) 等处的裸 Double() 参数组合,是统一评估框架之中分类结果的标准输入。 | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
11 |
| ClusteringIndices | 聚类质量指标的唯一实现。 输入统一为「行主序特征矩阵 + 整数簇标签」,不依赖任何具体的聚类算法模型 (避免耦合已经标记为 Obsolete 的 ClusterEntity / KMeans.Bisecting.Cluster)。 提供两类指标: + 内部指标(不需要真值标签):ClusteringIndices.Silhouette()… | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
14 |
| ClusteringResult | 聚类结果的统一数据模型:(特征矩阵, 簇标签),可选附带真值标签。 该类型刻意使用纯数值的 Double()() 与 Integer() 表示, 以避免依赖已经标记为 Obsolete 的 ClusterEntity / KMeans.Bisecting.Cluster。 | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
10 |
| EvaluationReport | 统一评估报告:一个结果数据在统一框架之下计算出的全部指标。 | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
9 |
| FakeAUCGenerator | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
2 | |
| FakeAUCGenerator | 依据目标 AUC 反向生成「假」的预测向量,用于构造测试数据。 | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
2 |
| IEvaluationResult | 统一评估框架的输入契约:任何可被评估的结果数据都需要声明自己的种类与名字。 | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
2 |
| IMetric | 统一的「(预测值, 标签) → 指标值」委托。 该签名属于公开契约(例如 xgboost 项目通过 Metric.GetMetric()) 使用), 因此在本轮重构之中保持不变。 | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
3 |
| IRocResult | 能够产生 ROC 曲线的结果数据(分类与回归结果)。 | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
1 |
| Metric | 经典模型评估指标的兼容入口。 数值实现全部委托到统一核心(Metric.auc()) 等),本类型只负责名称解析与 保持既有的公开签名不变。 | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
10 |
| MetricRegistry | 可扩展的评估指标注册表。 内置了分类/回归/聚类三类结果的标准指标,并允许 通过 MetricRegistry.Register()) 注册自定义指标, 从而把「统一评估框架」扩展到新的度量之上。 | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
5 |
| Metrics | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
11 | |
| Metrics | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
11 | |
| ModelEvaluation | 统一评估框架的入口(Facade)。 对「机器学习分类结果 / 回归结果 / 聚类结果」三类结果数据,调用 ModelEvaluation.Evaluate()) 等重载即可得到统一的 EvaluationReport,其中包含该结果种类下所有已注册指标 (参见 MetricRegistry)以及可选的 ROC 曲线。 | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
4 |
| NamedMetric | 一个具名评估指标:声明它适用于哪一类结果数据,以及如何计算。 | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
4 |
| PerformanceEvaluator | Class which evaluates an SVM model using several standard techniques. | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
5 |
| PerformanceEvaluator | Class which evaluates an SVM model using several standard techniques. | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
6 |
| RankPair | Class encoding a member of a ranked set of labels. | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
5 |
| RankPair | Class encoding a member of a ranked set of labels. | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
5 |
| RegressionClassify | The regression classifier result. | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
5 |
| RegressionClassify | The regression classifier result. | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
6 |
| RegressionResult | 回归结果的统一数据模型:(预测值, 连续真值)。 回归模型同样可以评估 ROC/AUC:通过把连续真值按照阈值切分为二分类问题 (参见 RegressionROC),这正是原先 RegressionClassify 所做的事情,现在统一由本类型承载。 | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
8 |
| RegressionROC | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
2 | |
| RegressionROC | 回归模型的 ROC 评估。 通过把连续真值按照阈值切分为二分类问题,从而为回归结果构造 ROC 曲线。 曲线的生成统一委托到 RocBuilder.SweepThresholds()), 本模块只保留「如何把回归误差转换为二分类判定」的业务逻辑。 | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
2 |
| ResultKinds | 评估结果数据的形式(对应统一评估框架所支持的三类结果)。 | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
6 |
| ROC | The ROC math module | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
4 |
| ROC | ROC / AUC 的兼容薄封装层。 本模块不再包含任何独立的 ROC 曲线或 AUC 计算逻辑, 全部委托到统一核心 RocBuilder(曲线构建)与 ROC.AUC())(面积计算)。 | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
5 |
| RocAuc | 统一的 AUC(Area Under the ROC Curve)计算核心。 这是整个 Evaluation 模块之中唯一的 AUC 实现: Metric.auc())、ROC.AUC())、 ROC.SimpleAUC())、Validation.AUC()) 以及 PerformanceEvaluator 的曲线面积全部委托到这里, 从而保… | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
8 |
| RocBuilder | 统一的 ROC 曲线构建器。 这是 Evaluation 模块之中唯一的曲线生成实现,提供三种入口: 1. | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
6 |
| RocCurve | 统一的 ROC 曲线模型:Evaluation 模块之中唯一的曲线结果载体。 一条 ROC 曲线由若干 Validation 阈值点组成(按 FPR 升序排列), 并附带由 RocAuc.Trapezoid()) 计算出来的曲线下面积 以及 RocAuc.BestThreshold()) 给出的最佳阈值下标。 | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
8 |
| Validate | 一个包含有多维度验证结果输出的样本验证结果 | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
7 |
| Validate | 一个包含有多维度验证结果输出的样本验证结果 | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
6 |
| Validation | 验证结果描述 灵敏度 = 真阳性人数 / (真阳性人数 + 假阴性人数) * 100% 特异度 = 真阴性人数 / (真阴性人数 + 假阳性人数) * 100% | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
28 |
| Validation | 验证结果描述:ROC 曲线之上的一个阈值点。 灵敏度 = 真阳性人数 / (真阳性人数 + 假阴性人数) 特异度 = 真阴性人数 / (真阴性人数 + 假阳性人数) 注意:本类型是整个 Evaluation 模块的规范 ROC 点, 其中 Validation.Sensibility / Validation.Specificity / Va… | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
12 |
Microsoft.VisualBasic.DataMining.FeatureFrame
| Type | Summary | Package | Members |
|---|---|---|---|
| Encoder | A helper module for encode the feature vector into numeric feature | Microsoft.VisualBasic.DataMining.FeatureFrame 1.0.9753.4776 |
4 |
| Encoder | A helper module for encode the feature vector into numeric feature | Microsoft.VisualBasic.DataMining.FeatureFrame 1.0.9762.11310 |
4 |
| EnumEncoder | the feature type should be the string type | Microsoft.VisualBasic.DataMining.FeatureFrame 1.0.9753.4776 |
1 |
| EnumEncoder | the feature type should be the string type | Microsoft.VisualBasic.DataMining.FeatureFrame 1.0.9762.11310 |
0 |
| FeatureEncoder | the base abstract data type of the vector encoder | Microsoft.VisualBasic.DataMining.FeatureFrame 1.0.9753.4776 |
1 |
| FeatureEncoder | the base abstract data type of the vector encoder | Microsoft.VisualBasic.DataMining.FeatureFrame 1.0.9762.11310 |
0 |
| FlagEncoder | the feature type should be the boolean type | Microsoft.VisualBasic.DataMining.FeatureFrame 1.0.9753.4776 |
1 |
| FlagEncoder | the feature type should be the boolean type | Microsoft.VisualBasic.DataMining.FeatureFrame 1.0.9762.11310 |
0 |
Microsoft.VisualBasic.DataMining.FuzzyCMeans
| Type | Summary | Package | Members |
|---|---|---|---|
| CMeans | the cmeans algorithm module Fuzzy clustering (also referred to as soft clustering) is a form of clustering in which each data point can belong to more than one cluster. | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
7 |
| CMeans | the cmeans algorithm module Fuzzy clustering (also referred to as soft clustering) is a form of clustering in which each data point can belong to more than one cluster. | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
6 |
| CMeansEngine | 基于数值行(Double())的模糊 C 均值聚类引擎。 该引擎直接消费NumericTable的特征矩阵,不再依赖 ClusterEntity 实体对象, 运算结果(隶属度矩阵与硬划分结果)可以写回标签矩阵。 | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
3 |
| CMeansEngine | 基于数值行(Double())的模糊 C 均值聚类引擎。 该引擎直接消费NumericTable的特征矩阵,不再依赖 ClusterEntity 实体对象, 运算结果(隶属度矩阵与硬划分结果)可以写回标签矩阵。 | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
3 |
| CMeansResult | 模糊 C 均值聚类的数值计算结果 | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
3 |
| CMeansResult | 模糊 C 均值聚类的数值计算结果 | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
3 |
| FuzzyCMeansEntity | A numeric vector object that tagged with the fuzzy cmeans cluster membership values | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
4 |
| FuzzyCMeansEntity | A numeric vector object that tagged with the fuzzy cmeans cluster membership values | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
2 |
Microsoft.VisualBasic.DataMining.HDBSCAN.Distance
| Type | Summary | Package | Members |
|---|---|---|---|
| CosineSimilarity | Computes cosine similarity between two points, d = 1 - ((X*Y) / (||X||*||Y||)) | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
2 |
| CosineSimilarity | Computes cosine similarity between two points, d = 1 - ((X*Y) / (||X||*||Y||)) | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
2 |
| EuclideanDistance | Computes the euclidean distance between two points, d = sqrt((x1-y1)^2 + (x2-y2)^2 + ... | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
1 |
| EuclideanDistance | Computes the euclidean distance between two points, d = sqrt((x1-y1)^2 + (x2-y2)^2 + ... | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
1 |
| IDistanceCalculator | An interface for classes which compute the distance between two points (where points are represented as arrays of doubles). | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
1 |
| IDistanceCalculator | An interface for classes which compute the distance between two points (where points are represented as arrays of doubles). | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
1 |
| ISparseMatrixSupport | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
1 | |
| ISparseMatrixSupport | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
1 | |
| ManhattanDistance | Computes the manhattan distance between two points, d = |x1-y1| + |x2-y2| + ... | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
1 |
| ManhattanDistance | Computes the manhattan distance between two points, d = |x1-y1| + |x2-y2| + ... | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
1 |
| PearsonCorrelation | Computes the euclidean distance between two points, d = 1 - (cov(X,Y) / (std_dev(X) * std_dev(Y))) | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
1 |
| PearsonCorrelation | Computes the euclidean distance between two points, d = 1 - (cov(X,Y) / (std_dev(X) * std_dev(Y))) | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
1 |
| SupremumDistance | Computes the supremum distance between two points, d = max[(x1-y1), (x2-y2), ... | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
1 |
| SupremumDistance | Computes the supremum distance between two points, d = max[(x1-y1), (x2-y2), ... | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
1 |
Microsoft.VisualBasic.DataMining.HDBSCAN.Hdbscanstar
| Type | Summary | Package | Members |
|---|---|---|---|
| Cluster | An HDBSCAN* cluster, which will have a birth level, death level, stability, and constraint satisfaction once fully constructed. | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
15 |
| Cluster | An HDBSCAN* cluster, which will have a birth level, death level, stability, and constraint satisfaction once fully constructed. | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
15 |
| HdbscanAlgorithm | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
8 | |
| HdbscanAlgorithm | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
8 | |
| HdbscanConstraint | A clustering constraint (either a must-link or cannot-link constraint between two points). | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
4 |
| HdbscanConstraint | A clustering constraint (either a must-link or cannot-link constraint between two points). | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
4 |
| OutlierScore | Simple storage class that keeps the outlier score, core distance, and id (index) for a single point. | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
4 |
| OutlierScore | Simple storage class that keeps the outlier score, core distance, and id (index) for a single point. | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
4 |
| UndirectedGraph | An undirected graph, with weights assigned to each edge. | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
11 |
| UndirectedGraph | An undirected graph, with weights assigned to each edge. | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
11 |
Microsoft.VisualBasic.DataMining.HiddenMarkovChain
| Type | Summary | Package | Members |
|---|---|---|---|
| Chain | Microsoft.VisualBasic.DataMining.HiddenMarkovChain 1.0.9753.4776 |
7 | |
| Chain | Microsoft.VisualBasic.DataMining.HiddenMarkovChain 1.0.9762.11310 |
7 | |
| HMM | HMM用于建模数据序列,无论是从连续概率分布还是从离散概率分布得出的。 它们与状态空间和高斯混合模型相关,因为它们旨在估计引起观测的状态。 状态是未知或“隐藏”的,并且HMM试图估计状态,类似于无监督聚类过程。 | Microsoft.VisualBasic.DataMining.HiddenMarkovChain 1.0.9753.4776 |
0 |
| HMM | HMM用于建模数据序列,无论是从连续概率分布还是从离散概率分布得出的。 它们与状态空间和高斯混合模型相关,因为它们旨在估计引起观测的状态。 状态是未知或“隐藏”的,并且HMM试图估计状态,类似于无监督聚类过程。 | Microsoft.VisualBasic.DataMining.HiddenMarkovChain 1.0.9762.11310 |
0 |
Microsoft.VisualBasic.DataMining.HiddenMarkovChain.Models
| Type | Summary | Package | Members |
|---|---|---|---|
| Alpha | alpha and alpha matrix | Microsoft.VisualBasic.DataMining.HiddenMarkovChain 1.0.9753.4776 |
2 |
| Alpha | alpha and alpha matrix | Microsoft.VisualBasic.DataMining.HiddenMarkovChain 1.0.9762.11310 |
2 |
| Beta | beta and beta matrix | Microsoft.VisualBasic.DataMining.HiddenMarkovChain 1.0.9753.4776 |
2 |
| Beta | beta and beta matrix | Microsoft.VisualBasic.DataMining.HiddenMarkovChain 1.0.9762.11310 |
2 |
| Observable | Microsoft.VisualBasic.DataMining.HiddenMarkovChain 1.0.9753.4776 |
3 | |
| Observable | Microsoft.VisualBasic.DataMining.HiddenMarkovChain 1.0.9762.11310 |
3 | |
| StatesObject | Microsoft.VisualBasic.DataMining.HiddenMarkovChain 1.0.9753.4776 |
3 | |
| StatesObject | Microsoft.VisualBasic.DataMining.HiddenMarkovChain 1.0.9762.11310 |
3 |
Microsoft.VisualBasic.DataMining.HierarchicalClustering
| Type | Summary | Package | Members |
|---|---|---|---|
| AverageLinkageStrategy | Implements the average-linkage (unweighted pair-group method using arithmetic averages, UPGMA) clustering strategy. | Microsoft.VisualBasic.DataMining.HierarchicalClustering 1.0.9753.4776 |
2 |
| AverageLinkageStrategy | Implements the average-linkage (unweighted pair-group method using arithmetic averages, UPGMA) clustering strategy. | Microsoft.VisualBasic.DataMining.HierarchicalClustering 1.0.9762.11310 |
2 |
| Cluster | Represents a node (cluster) in the hierarchical clustering tree (dendrogram). | Microsoft.VisualBasic.DataMining.HierarchicalClustering 1.0.9753.4776 |
21 |
| Cluster | Represents a node (cluster) in the hierarchical clustering tree (dendrogram). | Microsoft.VisualBasic.DataMining.HierarchicalClustering 1.0.9762.11310 |
23 |
| CompleteLinkageStrategy | Implements the complete-linkage (farthest neighbor) clustering strategy. | Microsoft.VisualBasic.DataMining.HierarchicalClustering 1.0.9753.4776 |
2 |
| CompleteLinkageStrategy | Implements the complete-linkage (farthest neighbor) clustering strategy. | Microsoft.VisualBasic.DataMining.HierarchicalClustering 1.0.9762.11310 |
2 |
| DefaultClusteringAlgorithm | Default implementation of the ClusteringAlgorithm interface that provides hierarchical agglomerative clustering functionality. | Microsoft.VisualBasic.DataMining.HierarchicalClustering 1.0.9753.4776 |
10 |
| DefaultClusteringAlgorithm | Default implementation of the ClusteringAlgorithm interface that provides hierarchical agglomerative clustering functionality. | Microsoft.VisualBasic.DataMining.HierarchicalClustering 1.0.9762.11310 |
10 |
| DendrogramPanel | Microsoft.VisualBasic.DataMining.HierarchicalClustering.Plot 1.0.9753.4776 |
2 | |
| DendrogramPanel | Microsoft.VisualBasic.DataMining.HierarchicalClustering.Plot 1.0.9762.11310 |
2 | |
| DendrogramPanelV2 | 绘制层次聚类图(竖直方向) | Microsoft.VisualBasic.DataMining.HierarchicalClustering.Plot 1.0.9753.4776 |
0 |
| DendrogramPanelV2 | 绘制层次聚类图(竖直方向) | Microsoft.VisualBasic.DataMining.HierarchicalClustering.Plot 1.0.9762.11310 |
0 |
| DoCluster | Microsoft.VisualBasic.DataMining.HierarchicalClustering 1.0.9753.4776 |
5 | |
| DoCluster | Microsoft.VisualBasic.DataMining.HierarchicalClustering 1.0.9762.11310 |
1 | |
| HierarchicalClusteringTableExtensions | 层次聚类算法(Hierarchical Clustering)的统一二维表入口。 数据流:特征表 →(distanceMatrix)→ 距离矩阵表 →(hca / hcut)→ 聚类树 / 带 cluster 标签的表 | Microsoft.VisualBasic.DataMining.HierarchicalClustering 1.0.9753.4776 |
9 |
| HierarchicalClusteringTableExtensions | 层次聚类算法(Hierarchical Clustering)的统一二维表入口。 数据流:特征表 →(distanceMatrix)→ 距离矩阵表 →(hca / hcut)→ 聚类树 / 带 cluster 标签的表 | Microsoft.VisualBasic.DataMining.HierarchicalClustering 1.0.9762.11310 |
16 |
| Layouts | 层次聚类树的绘制布局枚举 | Microsoft.VisualBasic.DataMining.HierarchicalClustering.Plot 1.0.9753.4776 |
7 |
| Layouts | 层次聚类树的绘制布局枚举 | Microsoft.VisualBasic.DataMining.HierarchicalClustering.Plot 1.0.9762.11310 |
7 |
| LinkageStrategy | Defines a strategy for calculating the distance between clusters in hierarchical clustering. | Microsoft.VisualBasic.DataMining.HierarchicalClustering 1.0.9753.4776 |
2 |
| LinkageStrategy | Defines a strategy for calculating the distance between clusters in hierarchical clustering. | Microsoft.VisualBasic.DataMining.HierarchicalClustering 1.0.9762.11310 |
2 |
| PDistClusteringAlgorithm | Microsoft.VisualBasic.DataMining.HierarchicalClustering 1.0.9753.4776 |
4 | |
| PDistClusteringAlgorithm | Microsoft.VisualBasic.DataMining.HierarchicalClustering 1.0.9762.11310 |
1 | |
| PrintHelper | Microsoft.VisualBasic.DataMining.HierarchicalClustering 1.0.9753.4776 |
2 | |
| PrintHelper | Microsoft.VisualBasic.DataMining.HierarchicalClustering 1.0.9762.11310 |
1 | |
| RadialDendrogram | 绘制环状(辐射状)层次聚类树 | Microsoft.VisualBasic.DataMining.HierarchicalClustering.Plot 1.0.9753.4776 |
3 |
| RadialDendrogram | 绘制环状(辐射状)层次聚类树 | Microsoft.VisualBasic.DataMining.HierarchicalClustering.Plot 1.0.9762.11310 |
3 |
| SingleLinkageStrategy | Implements the single-linkage (nearest neighbor) clustering strategy. | Microsoft.VisualBasic.DataMining.HierarchicalClustering 1.0.9753.4776 |
2 |
| SingleLinkageStrategy | Implements the single-linkage (nearest neighbor) clustering strategy. | Microsoft.VisualBasic.DataMining.HierarchicalClustering 1.0.9762.11310 |
2 |
| WeightedLinkageStrategy | Implements the weighted-linkage clustering strategy. | Microsoft.VisualBasic.DataMining.HierarchicalClustering 1.0.9753.4776 |
2 |
| WeightedLinkageStrategy | Implements the weighted-linkage clustering strategy. | Microsoft.VisualBasic.DataMining.HierarchicalClustering 1.0.9762.11310 |
2 |
Microsoft.VisualBasic.DataMining.HierarchicalClustering.BIRCH
| Type | Summary | Package | Members |
|---|---|---|---|
| BirchOptions | BIRCH 预聚类(CF-tree)参数。 BIRCH(Balanced Iterative Reducing and Clustering using Hierarchies)先用 CF-tree 把 n 个样本压缩成 m 个子簇(m << n),再对子簇质心执行(优化后的)凝聚层次聚类。 这样可以完全避免构造 n×n 距离矩阵,是面向… | Microsoft.VisualBasic.DataMining.HierarchicalClustering 1.0.9762.11310 |
8 |
| BirchPreclustering | BIRCH 预聚类的结果:m 个子簇的名称、质心,以及「子簇 -> 成员样本行索引」的映射。 | Microsoft.VisualBasic.DataMining.HierarchicalClustering 1.0.9762.11310 |
10 |
| CFEntry | @author Roberto Perdisci (roberto.perdisci@gmail.com) | Microsoft.VisualBasic.DataMining.HierarchicalClustering 1.0.9753.4776 |
4 |
| CFEntry | @author Roberto Perdisci (roberto.perdisci@gmail.com) | Microsoft.VisualBasic.DataMining.HierarchicalClustering 1.0.9762.11310 |
4 |
| CFEntryPair | @author Roberto Perdisci (roberto.perdisci@gmail.com) | Microsoft.VisualBasic.DataMining.HierarchicalClustering 1.0.9753.4776 |
4 |
| CFEntryPair | @author Roberto Perdisci (roberto.perdisci@gmail.com) | Microsoft.VisualBasic.DataMining.HierarchicalClustering 1.0.9762.11310 |
4 |
| CFNode | @author Roberto Perdisci (roberto.perdisci@gmail.com) @version 0.1 | Microsoft.VisualBasic.DataMining.HierarchicalClustering 1.0.9753.4776 |
19 |
| CFNode | @author Roberto Perdisci (roberto.perdisci@gmail.com) @version 0.1 | Microsoft.VisualBasic.DataMining.HierarchicalClustering 1.0.9762.11310 |
19 |
| CFTree | This is an implementation of the BIRCH clustering algorithm described in: T. | Microsoft.VisualBasic.DataMining.HierarchicalClustering 1.0.9753.4776 |
43 |
| CFTree | This is an implementation of the BIRCH clustering algorithm described in: T. | Microsoft.VisualBasic.DataMining.HierarchicalClustering 1.0.9762.11310 |
43 |
Microsoft.VisualBasic.DataMining.HierarchicalClustering.Hierarchy
| Type | Summary | Package | Members |
|---|---|---|---|
| Distance | distance value union the corresponding weight value(default weight is 1.0). | Microsoft.VisualBasic.DataMining.HierarchicalClustering 1.0.9753.4776 |
6 |
| Distance | distance value union the corresponding weight value(default weight is 1.0). | Microsoft.VisualBasic.DataMining.HierarchicalClustering 1.0.9762.11310 |
6 |
| DistanceMap | Container for linkages with the minimal methods needed in the package Created by Alexandre Masselot on 7/18/14. | Microsoft.VisualBasic.DataMining.HierarchicalClustering 1.0.9753.4776 |
9 |
| DistanceMap | Container for linkages with the minimal methods needed in the package Created by Alexandre Masselot on 7/18/14. | Microsoft.VisualBasic.DataMining.HierarchicalClustering 1.0.9762.11310 |
13 |
| HierarchyBuilder | Microsoft.VisualBasic.DataMining.HierarchicalClustering 1.0.9753.4776 |
7 | |
| HierarchyBuilder | Microsoft.VisualBasic.DataMining.HierarchicalClustering 1.0.9762.11310 |
7 | |
| HierarchyTreeNode | Microsoft.VisualBasic.DataMining.HierarchicalClustering 1.0.9753.4776 |
8 | |
| HierarchyTreeNode | Microsoft.VisualBasic.DataMining.HierarchicalClustering 1.0.9762.11310 |
2 | |
| LinkHashCode | Microsoft.VisualBasic.DataMining.HierarchicalClustering 1.0.9753.4776 |
1 | |
| LinkHashCode | Microsoft.VisualBasic.DataMining.HierarchicalClustering 1.0.9762.11310 |
2 |
Microsoft.VisualBasic.DataMining.HierarchicalClustering.Hierarchy.DistanceMap
| Type | Summary | Package | Members |
|---|---|---|---|
| LinkKeyComparer | 链接键(LinkHashCode.hashCodePair()))的字典比较器。 链接键由两个簇 ID 位拼接而成((min << 32) | max)。由于簇 ID 的取值较小, 拼接结果的高/低 32 位都集中在很窄的数值范围内;若直接使用 UInt64.GetHashCode() (其实现为高 32 位与低 32 位异或),得到的哈希… | Microsoft.VisualBasic.DataMining.HierarchicalClustering 1.0.9762.11310 |
0 |
Microsoft.VisualBasic.DataMining.Kernel.BayesianBeliefNetwork
| Type | Summary | Package | Members |
|---|---|---|---|
| BeliefNetwork | 贝叶斯信念网络 | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
4 |
| BeliefNetwork | 贝叶斯信念网络 | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
4 |
| BeliefNode | 贝叶斯信念网络中的一个节点 | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
10 |
| BeliefNode | 贝叶斯信念网络中的一个节点 | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
10 |
| BElim | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
1 | |
| BElim | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
1 |
Microsoft.VisualBasic.DataMining.Kernel.Classifier
| Type | Summary | Package | Members |
|---|---|---|---|
| Bayesian | 朴素贝叶斯分类器 | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
6 |
| Bayesian | 朴素贝叶斯分类器 | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
6 |
| Neuron | 朴素神经元分类器,只能够进行一些简单的分类工作 | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
6 |
| Neuron | 朴素神经元分类器,只能够进行一些简单的分类工作 | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
6 |
Microsoft.VisualBasic.DataMining.KMeans
| Type | Summary | Package | Members |
|---|---|---|---|
| Cluster | A collection of the target entity object will be a cluster | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
4 |
| Cluster | A collection of the target entity object will be a cluster | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
4 |
| ClusterCollection | A collection of Cluster objects or Clusters | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
5 |
| ClusterCollection | A collection of Cluster objects or Clusters | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
5 |
| Evaluation | 判断聚类结果优劣的两个距离判定方法 | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
13 |
| Evaluation | 判断聚类结果优劣的两个距离判定方法 | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
9 |
| EvaluationScore | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
12 | |
| EvaluationScore | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
9 | |
| Extensions | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
5 | |
| Extensions | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
4 | |
| KMeansAlgorithm | This class implement a KMeans clustering algorithm. | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
6 |
| KMeansAlgorithm | This class implement a KMeans clustering algorithm. | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
5 |
| KMeansCluster | A class containing a group of data with similar characteristics (cluster), KMeans Cluster | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
10 |
| KMeansCluster | A class containing a group of data with similar characteristics (cluster), KMeans Cluster | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
10 |
| KMeansEngine | 基于统一二维表NumericTable的 KMeans 聚类引擎。 算法直接消费数值行(Double())而不再依赖 EntityBase 实体对象, 运算结果可以方便的写入NumericTable.labels标签矩阵之中。 | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
5 |
| KMeansEngine | 基于统一二维表NumericTable的 KMeans 聚类引擎。 算法直接消费数值行(Double())而不再依赖 EntityBase 实体对象, 运算结果可以方便的写入NumericTable.labels标签矩阵之中。 | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
5 |
| Kmedoids | Partitioning around medoids(PAM) | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
3 |
| Kmedoids | Partitioning around medoids(PAM) | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
2 |
| NumericCluster | 统一二维表聚类所使用的数值簇对象。 和旧的泛型版本Cluster不一样的地方在于:这个簇对象 直接存放数值行(Double数组)以及该行在原始表中的下标与行名, 因此不再依赖EntityBase实体对象。 | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
8 |
| NumericCluster | 统一二维表聚类所使用的数值簇对象。 和旧的泛型版本Cluster不一样的地方在于:这个簇对象 直接存放数值行(Double数组)以及该行在原始表中的下标与行名, 因此不再依赖EntityBase实体对象。 | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
8 |
| NumericClusterCollection | NumericKMeansCluster 的集合,表示一次 KMeans 运算结果之中的全部簇。 | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
5 |
| NumericClusterCollection | NumericKMeansCluster 的集合,表示一次 KMeans 运算结果之中的全部簇。 | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
5 |
| NumericKMeansCluster | 统一二维表聚类所使用的 KMeans 簇对象,直接基于数值行进行均值与代价计算。 | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
9 |
| NumericKMeansCluster | 统一二维表聚类所使用的 KMeans 簇对象,直接基于数值行进行均值与代价计算。 | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
9 |
Microsoft.VisualBasic.DataMining.KMeans.Bisecting
| Type | Summary | Package | Members |
|---|---|---|---|
| BisectingKMeans | Created by touhid on 12/21/15. | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
5 |
| BisectingKMeans | Created by touhid on 12/21/15. | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
3 |
| Cluster | Created by touhid on 12/21/15. | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
8 |
| Cluster | Created by touhid on 12/21/15. | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
3 |
Microsoft.VisualBasic.DataMining.Lloyds
| Type | Summary | Package | Members |
|---|---|---|---|
| Clustering | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
2 | |
| Clustering | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
0 | |
| LloydsMethodClustering | Voronoi | Microsoft.VisualBasic.DataMining.Framework 1.0.9753.4776 |
2 |
| LloydsMethodClustering | Voronoi | Microsoft.VisualBasic.DataMining.Framework 1.0.9762.11310 |
0 |
Microsoft.VisualBasic.DataMining.UMAP
| Type | Summary | Package | Members |
|---|---|---|---|
| ABParams | Fit the a, b parameters for the differentiable curve that is used in the construction of the low dimensional fuzzy simplicial complex. | Microsoft.VisualBasic.DataMining.UMAP 5.0.9753.4776 |
8 |
| ABParams | Fit the a, b parameters for the differentiable curve that is used in the construction of the low dimensional fuzzy simplicial complex. | Microsoft.VisualBasic.DataMining.UMAP 5.0.9762.11310 |
8 |
| DefaultRandomGenerator | Microsoft.VisualBasic.DataMining.UMAP 5.0.9753.4776 |
2 | |
| DefaultRandomGenerator | Microsoft.VisualBasic.DataMining.UMAP 5.0.9762.11310 |
2 | |
| DistanceFunctions | Microsoft.VisualBasic.DataMining.UMAP 5.0.9753.4776 |
8 | |
| DistanceFunctions | Microsoft.VisualBasic.DataMining.UMAP 5.0.9762.11310 |
8 | |
| EpochSchedule | The number-of-epochs heuristic that is used by the SGD optimization. | Microsoft.VisualBasic.DataMining.UMAP 5.0.9753.4776 |
6 |
| EpochSchedule | The number-of-epochs heuristic that is used by the SGD optimization. | Microsoft.VisualBasic.DataMining.UMAP 5.0.9762.11310 |
6 |
| Heaps | Microsoft.VisualBasic.DataMining.UMAP 5.0.9753.4776 |
11 | |
| Heaps | Microsoft.VisualBasic.DataMining.UMAP 5.0.9762.11310 |
11 | |
| NNDescent | UMAP (Uniform Manifold Approximation and Projection) is a nonlinear dimensionality reduction technique widely used in data science and machine learning to visualize high-dimension… | Microsoft.VisualBasic.DataMining.UMAP 5.0.9753.4776 |
1 |
| NNDescent | UMAP (Uniform Manifold Approximation and Projection) is a nonlinear dimensionality reduction technique widely used in data science and machine learning to visualize high-dimension… | Microsoft.VisualBasic.DataMining.UMAP 5.0.9762.11310 |
1 |
| NNDescentFn | Microsoft.VisualBasic.DataMining.UMAP 5.0.9753.4776 |
1 | |
| NNDescentFn | Microsoft.VisualBasic.DataMining.UMAP 5.0.9762.11310 |
1 | |
| NNDescentLoop | implements NNDescent parallel loop | Microsoft.VisualBasic.DataMining.UMAP 5.0.9753.4776 |
1 |
| NNDescentLoop | implements NNDescent parallel loop | Microsoft.VisualBasic.DataMining.UMAP 5.0.9762.11310 |
1 |
| NumericTableExtensions | UMAP 降维算法的统一二维表入口。 | Microsoft.VisualBasic.DataMining.UMAP 5.0.9753.4776 |
1 |
| NumericTableExtensions | UMAP 降维算法的统一二维表入口。 | Microsoft.VisualBasic.DataMining.UMAP 5.0.9762.11310 |
1 |
| OptimizationState | Microsoft.VisualBasic.DataMining.UMAP 5.0.9753.4776 |
7 | |
| OptimizationState | Microsoft.VisualBasic.DataMining.UMAP 5.0.9762.11310 |
7 | |
| ParallelConfig | A unified parallelism configuration for the UMAP pipeline | Microsoft.VisualBasic.DataMining.UMAP 5.0.9753.4776 |
9 |
| ParallelConfig | A unified parallelism configuration for the UMAP pipeline | Microsoft.VisualBasic.DataMining.UMAP 5.0.9762.11310 |
9 |
| RowCol | Microsoft.VisualBasic.DataMining.UMAP 5.0.9753.4776 |
1 | |
| RowCol | Microsoft.VisualBasic.DataMining.UMAP 5.0.9762.11310 |
1 | |
| RPTree | In the context of the NNDescent algorithm, an rpTree (Random Projection Tree) is a data structure used to index high-dimensional data points for efficient nearest neighbor searc… | Microsoft.VisualBasic.DataMining.UMAP 5.0.9753.4776 |
1 |
| RPTree | In the context of the NNDescent algorithm, an rpTree (Random Projection Tree) is a data structure used to index high-dimensional data points for efficient nearest neighbor searc… | Microsoft.VisualBasic.DataMining.UMAP 5.0.9762.11310 |
1 |
| SgdEpochTask | implements the SGD optimization loop of one epoch in parallel | Microsoft.VisualBasic.DataMining.UMAP 5.0.9753.4776 |
1 |
| SgdEpochTask | implements the SGD optimization loop of one epoch in parallel | Microsoft.VisualBasic.DataMining.UMAP 5.0.9762.11310 |
1 |
| SparseMatrix | Microsoft.VisualBasic.DataMining.UMAP 5.0.9753.4776 |
19 | |
| SparseMatrix | Microsoft.VisualBasic.DataMining.UMAP 5.0.9762.11310 |
19 | |
| Umap | UMAP: Uniform Manifold Approximation and Projection for Dimension Reduction | Microsoft.VisualBasic.DataMining.UMAP 5.0.9753.4776 |
22 |
| Umap | UMAP: Uniform Manifold Approximation and Projection for Dimension Reduction | Microsoft.VisualBasic.DataMining.UMAP 5.0.9762.11310 |
22 |
| UMAPProject | binary file data model for save the UMAP embedding result | Microsoft.VisualBasic.DataMining.UMAP 5.0.9753.4776 |
8 |
| UMAPProject | binary file data model for save the UMAP embedding result | Microsoft.VisualBasic.DataMining.UMAP 5.0.9762.11310 |
8 |
| Utils | Microsoft.VisualBasic.DataMining.UMAP 5.0.9753.4776 |
6 | |
| Utils | Microsoft.VisualBasic.DataMining.UMAP 5.0.9762.11310 |
6 |
Microsoft.VisualBasic.DataMining.UMAP.KNN
| Type | Summary | Package | Members |
|---|---|---|---|
| KNearestNeighbour | K Nearest Neighbour Search Uses a kd-tree to find the p number of near neighbours for each point in an input/output dataset. | Microsoft.VisualBasic.DataMining.UMAP 5.0.9753.4776 |
3 |
| KNearestNeighbour | K Nearest Neighbour Search Uses a kd-tree to find the p number of near neighbours for each point in an input/output dataset. | Microsoft.VisualBasic.DataMining.UMAP 5.0.9762.11310 |
3 |
| KNNArguments | the argument collection of the KNN search and the nearest neighbour descent procedure | Microsoft.VisualBasic.DataMining.UMAP 5.0.9753.4776 |
17 |
| KNNArguments | the argument collection of the KNN search and the nearest neighbour descent procedure | Microsoft.VisualBasic.DataMining.UMAP 5.0.9762.11310 |
17 |
| KNNState | index and the distance matrix of the corresponding indexed entity | Microsoft.VisualBasic.DataMining.UMAP 5.0.9753.4776 |
2 |
| KNNState | index and the distance matrix of the corresponding indexed entity | Microsoft.VisualBasic.DataMining.UMAP 5.0.9762.11310 |
2 |
| SmoothKNN | Microsoft.VisualBasic.DataMining.UMAP 5.0.9753.4776 |
1 | |
| SmoothKNN | Microsoft.VisualBasic.DataMining.UMAP 5.0.9762.11310 |
1 |
Microsoft.VisualBasic.DataMining.UMAP.Tree
Microsoft.VisualBasic.DataStorage.FeatherFormat
| Type | Summary | Package | Members |
|---|---|---|---|
| BasisType | Represents whether a dataframe is using 0-based or 1-based indexing. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9753.4776 |
4 |
| BasisType | Represents whether a dataframe is using 0-based or 1-based indexing. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9762.11310 |
4 |
| Column | Represents a column of a DataFrame. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9753.4776 |
36 |
| Column | Represents a column of a DataFrame. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9762.11310 |
36 |
| ColumnEnumerable | Allocation free enumerable for the columns in a dataframe. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9753.4776 |
1 |
| ColumnEnumerable | Allocation free enumerable for the columns in a dataframe. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9762.11310 |
1 |
| ColumnEnumerator | Allocation free enumerator for the columns in a dataframe. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9753.4776 |
5 |
| ColumnEnumerator | Allocation free enumerator for the columns in a dataframe. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9762.11310 |
5 |
| ColumnMap | Utility class for addressing a dataframes columns. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9753.4776 |
3 |
| ColumnMap | Utility class for addressing a dataframes columns. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9762.11310 |
3 |
| ColumnValueEnumerator | Allocation free enumerator for a column. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9753.4776 |
5 |
| ColumnValueEnumerator | Allocation free enumerator for a column. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9762.11310 |
5 |
| DataFrame | Represents a dataframe. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9753.4776 |
50 |
| DataFrame | Represents a dataframe. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9762.11310 |
50 |
| FeatherReader | Utility class for reading Feather files. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9753.4776 |
8 |
| FeatherReader | Utility class for reading Feather files. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9762.11310 |
8 |
| FeatherWriter | Class for writing dataframes (or equivalently, sets of columns) to a file in the Feather format. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9753.4776 |
16 |
| FeatherWriter | Class for writing dataframes (or equivalently, sets of columns) to a file in the Feather format. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9762.11310 |
16 |
| ProxyDataFrame | Represents a dataframe, where each row has been mapped to an instance of a type. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9753.4776 |
22 |
| ProxyDataFrame | Represents a dataframe, where each row has been mapped to an instance of a type. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9762.11310 |
22 |
| ProxyRowEnumerable | Allocation free enumerable for a proxied row. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9753.4776 |
1 |
| ProxyRowEnumerable | Allocation free enumerable for a proxied row. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9762.11310 |
1 |
| ProxyRowEnumerator | Allocation free enumerator for a proxied row. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9753.4776 |
5 |
| ProxyRowEnumerator | Allocation free enumerator for a proxied row. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9762.11310 |
5 |
| ProxyRowMap | Utility class for addressing a ProxyDataFrame's rows. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9753.4776 |
2 |
| ProxyRowMap | Utility class for addressing a ProxyDataFrame's rows. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9762.11310 |
2 |
| Row | Represents a row of a DataFrame. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9753.4776 |
27 |
| Row | Represents a row of a DataFrame. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9762.11310 |
27 |
| RowEnumerable | Allocation free enumerable for a row. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9753.4776 |
1 |
| RowEnumerable | Allocation free enumerable for a row. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9762.11310 |
1 |
| RowEnumerator | Allocation free enumerator for a row. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9753.4776 |
5 |
| RowEnumerator | Allocation free enumerator for a row. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9762.11310 |
5 |
| RowMap | Utility class for addressing a dataframe's rows. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9753.4776 |
2 |
| RowMap | Utility class for addressing a dataframe's rows. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9762.11310 |
2 |
| RowValueEnumerator | Allocation free enumerator for a row. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9753.4776 |
5 |
| RowValueEnumerator | Allocation free enumerator for a row. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9762.11310 |
5 |
| TypedColumn | Represents a column of a TypedDataFrame, or a column of a DataFrame that has been mapped. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9753.4776 |
37 |
| TypedColumn | Represents a column of a TypedDataFrame, or a column of a DataFrame that has been mapped. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9762.11310 |
37 |
| TypedColumnEnumerator | Allocation free enumerator for a typed column. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9753.4776 |
5 |
| TypedColumnEnumerator | Allocation free enumerator for a typed column. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9762.11310 |
5 |
| TypedDataFrame | Represents a dataframe with one typed column. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9753.4776 |
3 |
| TypedDataFrame | Represents a dataframe with one typed column. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9762.11310 |
3 |
| TypedDataFrameBase | Represents a dataframe, where each column has been typed. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9753.4776 |
20 |
| TypedDataFrameBase | Represents a dataframe, where each column has been typed. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9762.11310 |
20 |
| TypedDataFrameType | Represents a dataframe with two typed columns. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9753.4776 |
3 |
| TypedDataFrameType | Represents a dataframe with two typed columns. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9762.11310 |
3 |
| TypedDataFrameType1 | Represents a dataframe with three typed columns. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9753.4776 |
4 |
| TypedDataFrameType1 | Represents a dataframe with three typed columns. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9762.11310 |
4 |
| TypedDataFrameType2 | Represents a dataframe with four typed columns. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9753.4776 |
5 |
| TypedDataFrameType2 | Represents a dataframe with four typed columns. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9762.11310 |
5 |
| TypedDataFrameType3 | Represents a dataframe with five typed columns. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9753.4776 |
6 |
| TypedDataFrameType3 | Represents a dataframe with five typed columns. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9762.11310 |
6 |
| TypedDataFrameType4 | Represents a dataframe with six typed columns. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9753.4776 |
7 |
| TypedDataFrameType4 | Represents a dataframe with six typed columns. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9762.11310 |
7 |
| TypedDataFrameType5 | Represents a dataframe with seven typed columns. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9753.4776 |
8 |
| TypedDataFrameType5 | Represents a dataframe with seven typed columns. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9762.11310 |
8 |
| TypedDataFrameType6 | Represents a dataframe with eight typed columns. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9753.4776 |
9 |
| TypedDataFrameType6 | Represents a dataframe with eight typed columns. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9762.11310 |
9 |
| TypedRow | Represents a typed row with 1 column. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9753.4776 |
19 |
| TypedRow | Represents a typed row with 1 column. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9762.11310 |
19 |
| TypedRowEnumerable | Allocation free enumerable for a typed row. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9753.4776 |
1 |
| TypedRowEnumerable | Allocation free enumerable for a typed row. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9762.11310 |
1 |
| TypedRowEnumerator | Allocation free enumerator for a typed row. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9753.4776 |
5 |
| TypedRowEnumerator | Allocation free enumerator for a typed row. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9762.11310 |
5 |
| TypedRowMap | Utility class for addressing a TypedDataFrameBase rows. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9753.4776 |
2 |
| TypedRowMap | Utility class for addressing a TypedDataFrameBase rows. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9762.11310 |
2 |
| TypedRowType | Represents a typed row with 2 columns. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9753.4776 |
20 |
| TypedRowType | Represents a typed row with 2 columns. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9762.11310 |
20 |
| TypedRowType1 | Represents a typed row with 3 columns. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9753.4776 |
21 |
| TypedRowType1 | Represents a typed row with 3 columns. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9762.11310 |
21 |
| TypedRowType2 | Represents a typed row with 4 columns. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9753.4776 |
22 |
| TypedRowType2 | Represents a typed row with 4 columns. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9762.11310 |
22 |
| TypedRowType3 | Represents a typed row with 5 columns. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9753.4776 |
23 |
| TypedRowType3 | Represents a typed row with 5 columns. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9762.11310 |
23 |
| TypedRowType4 | Represents a typed row with 6 columns. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9753.4776 |
24 |
| TypedRowType4 | Represents a typed row with 6 columns. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9762.11310 |
24 |
| TypedRowType5 | Represents a typed row with 7 columns. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9753.4776 |
25 |
| TypedRowType5 | Represents a typed row with 7 columns. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9762.11310 |
25 |
| TypedRowType6 | Represents a typed row with 8 columns. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9753.4776 |
26 |
| TypedRowType6 | Represents a typed row with 8 columns. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9762.11310 |
26 |
| TypedRowValueEnumerator | Allocation free enumerator for a typed row. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9753.4776 |
4 |
| TypedRowValueEnumerator | Allocation free enumerator for a typed row. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9762.11310 |
4 |
| Value | Represents a value in a dataframe cell. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9753.4776 |
10 |
| Value | Represents a value in a dataframe cell. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9762.11310 |
10 |
| WriteMode | Indicates how a FeatherWriter should schedule writing to disk. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9753.4776 |
4 |
| WriteMode | Indicates how a FeatherWriter should schedule writing to disk. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9762.11310 |
4 |
Microsoft.VisualBasic.DataStorage.FeatherFormat.FlatBuffers
| Type | Summary | Package | Members |
|---|---|---|---|
| ByteBuffer | Class to mimic Java's ByteBuffer which is used heavily in Flatbuffers. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9753.4776 |
0 |
| ByteBuffer | Class to mimic Java's ByteBuffer which is used heavily in Flatbuffers. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9762.11310 |
0 |
| FlatBufferBuilder | Responsible for building up and accessing a FlatBuffer formatted byte array (via ByteBuffer). | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9753.4776 |
37 |
| FlatBufferBuilder | Responsible for building up and accessing a FlatBuffer formatted byte array (via ByteBuffer). | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9762.11310 |
37 |
| IFlatbufferObject | This is the base for both structs and tables. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9753.4776 |
0 |
| IFlatbufferObject | This is the base for both structs and tables. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9762.11310 |
0 |
| Offset | Offset class for typesafe assignments. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9753.4776 |
0 |
| Offset | Offset class for typesafe assignments. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9762.11310 |
0 |
| Struct | All structs in the generated code derive from this class, and add their own accessors. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9753.4776 |
0 |
| Struct | All structs in the generated code derive from this class, and add their own accessors. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9762.11310 |
0 |
| Table | All tables in the generated code derive from this struct, and add their own accessors. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9753.4776 |
0 |
| Table | All tables in the generated code derive from this struct, and add their own accessors. | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9762.11310 |
0 |
Microsoft.VisualBasic.DataStorage.FeatherFormat.Impl.FbsMetadata
| Type | Summary | Package | Members |
|---|---|---|---|
| CategoryMetadata | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9753.4776 |
1 | |
| CategoryMetadata | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9762.11310 |
1 | |
| Column | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9753.4776 |
1 | |
| Column | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9762.11310 |
1 | |
| CTable | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9753.4776 |
3 | |
| CTable | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9762.11310 |
3 | |
| PrimitiveArray | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9753.4776 |
4 | |
| PrimitiveArray | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9762.11310 |
4 | |
| TimestampMetadata | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9753.4776 |
1 | |
| TimestampMetadata | Microsoft.VisualBasic.DataStorage.FeatherFormat 0.6.9762.11310 |
1 |
Microsoft.VisualBasic.DataStorage.HDSPack
| Type | Summary | Package | Members |
|---|---|---|---|
| AttributeMetadata | a name key tagged attribute metadata. | Microsoft.VisualBasic.DataStorage.HDSPack 1.0.9753.4776 |
5 |
| AttributeMetadata | a name key tagged attribute metadata. | Microsoft.VisualBasic.DataStorage.HDSPack 1.0.9762.11310 |
5 |
| Debugger | Microsoft.VisualBasic.DataStorage.HDSPack 1.0.9753.4776 |
3 | |
| Debugger | Microsoft.VisualBasic.DataStorage.HDSPack 1.0.9762.11310 |
3 | |
| Extensions | Microsoft.VisualBasic.DataStorage.HDSPack 1.0.9753.4776 |
4 | |
| Extensions | Microsoft.VisualBasic.DataStorage.HDSPack 1.0.9762.11310 |
2 | |
| LazyAttribute | Microsoft.VisualBasic.DataStorage.HDSPack 1.0.9753.4776 |
6 | |
| LazyAttribute | Microsoft.VisualBasic.DataStorage.HDSPack 1.0.9762.11310 |
6 | |
| TreeParser | Microsoft.VisualBasic.DataStorage.HDSPack 1.0.9753.4776 |
1 | |
| TreeParser | Microsoft.VisualBasic.DataStorage.HDSPack 1.0.9762.11310 |
1 | |
| TreeWriter | Microsoft.VisualBasic.DataStorage.HDSPack 1.0.9753.4776 |
1 | |
| TreeWriter | Microsoft.VisualBasic.DataStorage.HDSPack 1.0.9762.11310 |
1 |
Microsoft.VisualBasic.DataStorage.HDSPack.FileSystem
| Type | Summary | Package | Members |
|---|---|---|---|
| StreamBlock | A data file reference | Microsoft.VisualBasic.DataStorage.HDSPack 1.0.9753.4776 |
8 |
| StreamBlock | A data file reference | Microsoft.VisualBasic.DataStorage.HDSPack 1.0.9762.11310 |
7 |
| StreamBuffer | an in-memory stream buffer for write new file data | Microsoft.VisualBasic.DataStorage.HDSPack 1.0.9753.4776 |
15 |
| StreamBuffer | an in-memory stream buffer for write new file data | Microsoft.VisualBasic.DataStorage.HDSPack 1.0.9762.11310 |
15 |
| StreamGroup | a data folder | Microsoft.VisualBasic.DataStorage.HDSPack 1.0.9753.4776 |
18 |
| StreamGroup | a data folder | Microsoft.VisualBasic.DataStorage.HDSPack 1.0.9762.11310 |
13 |
| StreamObject | the abstract type of the file or directory object | Microsoft.VisualBasic.DataStorage.HDSPack 1.0.9753.4776 |
9 |
| StreamObject | the abstract type of the file or directory object | Microsoft.VisualBasic.DataStorage.HDSPack 1.0.9762.11310 |
3 |
| StreamPack | Hierarchical Data Stream Pack, A hdf5 liked file format | Microsoft.VisualBasic.DataStorage.HDSPack 1.0.9753.4776 |
35 |
| StreamPack | Hierarchical Data Stream Pack, A hdf5 liked file format | Microsoft.VisualBasic.DataStorage.HDSPack 1.0.9762.11310 |
26 |
Microsoft.VisualBasic.DataStorage.netCDF
| Type | Summary | Package | Members |
|---|---|---|---|
| CDFWriter | 这个对象没有显式调用的文件写函数,必须要通过IDisposable接口来完成文件数据的写操作 | Microsoft.VisualBasic.DataStorage.netCDF 1.0.9753.4776 |
17 |
| CDFWriter | 这个对象没有显式调用的文件写函数,必须要通过IDisposable接口来完成文件数据的写操作 | Microsoft.VisualBasic.DataStorage.netCDF 1.0.9762.11310 |
15 |
| netCDFReader | The dotCDF file of a CDF contains magic numbers and numerous internal records are used to organize information about the contents Of the CDF (For both Single-file And multi-file… | Microsoft.VisualBasic.DataStorage.netCDF 1.0.9753.4776 |
19 |
| netCDFReader | The dotCDF file of a CDF contains magic numbers and numerous internal records are used to organize information about the contents Of the CDF (For both Single-file And multi-file… | Microsoft.VisualBasic.DataStorage.netCDF 1.0.9762.11310 |
15 |
| ToStringHelper | CDF file summary | Microsoft.VisualBasic.DataStorage.netCDF 1.0.9753.4776 |
1 |
| ToStringHelper | CDF file summary | Microsoft.VisualBasic.DataStorage.netCDF 1.0.9762.11310 |
1 |
| Utils | Microsoft.VisualBasic.DataStorage.netCDF 1.0.9753.4776 |
11 | |
| Utils | Microsoft.VisualBasic.DataStorage.netCDF 1.0.9762.11310 |
11 |
Microsoft.VisualBasic.DataStorage.netCDF.Components
| Type | Summary | Package | Members |
|---|---|---|---|
| attribute | 属对象性,主要是记录一些注解信息 | Microsoft.VisualBasic.DataStorage.netCDF 1.0.9753.4776 |
6 |
| attribute | 属对象性,主要是记录一些注解信息 | Microsoft.VisualBasic.DataStorage.netCDF 1.0.9762.11310 |
6 |
| Dimension | [name => size] | Microsoft.VisualBasic.DataStorage.netCDF 1.0.9753.4776 |
5 |
| Dimension | [name => size] | Microsoft.VisualBasic.DataStorage.netCDF 1.0.9762.11310 |
2 |
| dimensionality | dimensionality (rank) of the variable 0 for scalar, 1 for vector, 2 for matrix | Microsoft.VisualBasic.DataStorage.netCDF 1.0.9753.4776 |
3 |
| dimensionality | dimensionality (rank) of the variable 0 for scalar, 1 for vector, 2 for matrix | Microsoft.VisualBasic.DataStorage.netCDF 1.0.9762.11310 |
3 |
| Header | Object with the fields: + recordDimension Number with the length of record dimension + dimensions: List of dimensions + globalAttributes: List of global attributes + vari… | Microsoft.VisualBasic.DataStorage.netCDF 1.0.9753.4776 |
13 |
| Header | Object with the fields: + recordDimension Number with the length of record dimension + dimensions: List of dimensions + globalAttributes: List of global attributes + vari… | Microsoft.VisualBasic.DataStorage.netCDF 1.0.9762.11310 |
12 |
| recordDimension | Metadata for the record dimension | Microsoft.VisualBasic.DataStorage.netCDF 1.0.9753.4776 |
5 |
| recordDimension | Metadata for the record dimension | Microsoft.VisualBasic.DataStorage.netCDF 1.0.9762.11310 |
5 |
| variable | 变量对象,CDF文件之中的实验数据之类的数据都是保存于这个对象之中的 | Microsoft.VisualBasic.DataStorage.netCDF 1.0.9753.4776 |
10 |
| variable | 变量对象,CDF文件之中的实验数据之类的数据都是保存于这个对象之中的 | Microsoft.VisualBasic.DataStorage.netCDF 1.0.9762.11310 |
10 |
Microsoft.VisualBasic.DataStorage.netCDF.Data
| Type | Summary | Package | Members |
|---|---|---|---|
| CDFDataTypes | The enum values of the CDF data types. | Microsoft.VisualBasic.DataStorage.netCDF 1.0.9753.4776 |
33 |
| CDFDataTypes | The enum values of the CDF data types. | Microsoft.VisualBasic.DataStorage.netCDF 1.0.9762.11310 |
33 |
| DataReader | Data reader methods for a given variable data value. | Microsoft.VisualBasic.DataStorage.netCDF 1.0.9753.4776 |
3 |
| DataReader | Data reader methods for a given variable data value. | Microsoft.VisualBasic.DataStorage.netCDF 1.0.9762.11310 |
3 |
| StructureParser | 在这个模块之中进行CDF文件的每一个Section的解析操作 | Microsoft.VisualBasic.DataStorage.netCDF 1.0.9753.4776 |
4 |
| StructureParser | 在这个模块之中进行CDF文件的每一个Section的解析操作 | Microsoft.VisualBasic.DataStorage.netCDF 1.0.9762.11310 |
4 |
| TypeExtensions | Microsoft.VisualBasic.DataStorage.netCDF 1.0.9753.4776 |
5 | |
| TypeExtensions | Microsoft.VisualBasic.DataStorage.netCDF 1.0.9762.11310 |
5 | |
| vlen_t | Microsoft.VisualBasic.DataStorage.netCDF 1.0.9753.4776 |
4 | |
| vlen_t | Microsoft.VisualBasic.DataStorage.netCDF 1.0.9762.11310 |
4 | |
| Xml | 将netCDF转储为XML文件 | Microsoft.VisualBasic.DataStorage.netCDF 1.0.9753.4776 |
7 |
| Xml | 将netCDF转储为XML文件 | Microsoft.VisualBasic.DataStorage.netCDF 1.0.9762.11310 |
5 |
Microsoft.VisualBasic.DataStorage.netCDF.DataVector
| Type | Summary | Package | Members |
|---|---|---|---|
| CDFData | 存储在CDF文件之中的数据的统一接口模块 | Microsoft.VisualBasic.DataStorage.netCDF 1.0.9753.4776 |
11 |
| CDFData | 存储在CDF文件之中的数据的统一接口模块 | Microsoft.VisualBasic.DataStorage.netCDF 1.0.9762.11310 |
1 |
| chars | A single string value is a char vector | Microsoft.VisualBasic.DataStorage.netCDF 1.0.9753.4776 |
11 |
| chars | A single string value is a char vector | Microsoft.VisualBasic.DataStorage.netCDF 1.0.9762.11310 |
2 |
Microsoft.VisualBasic.DeepLearning.LLM
| Type | Summary | Package | Members |
|---|---|---|---|
| AdamW | AdamW:解耦权重衰减的 Adam 优化器。 | Microsoft.VisualBasic.DeepLearning.LLM 1.0.9762.11310 |
14 |
| CausalSelfAttention | 因果自注意力层:y = Concat(head_1..head_H) · Wo, 其中 head_h = softmax(Q_h K_hᵀ/√d_k + mask) V_h。 | Microsoft.VisualBasic.DeepLearning.LLM 1.0.9762.11310 |
20 |
| ConstrainedDecoder | 按 JSON Schema 约束 logits 的解码器:保证生成的参数对象在语法上必然合法。 | Microsoft.VisualBasic.DeepLearning.LLM 1.0.9762.11310 |
25 |
| KVCache | 单层的 K/V 缓存:预分配 [maxSeq, nKvHeads, headDim],按位置顺序追加。 | Microsoft.VisualBasic.DeepLearning.LLM 1.0.9762.11310 |
17 |
| LLMBlock | 单层解码块:Pre-Norm 的"因果自注意力 + 前馈网络(稠密或 MoE)"。 | Microsoft.VisualBasic.DeepLearning.LLM 1.0.9762.11310 |
21 |
| LLMModel | 纯 decoder-only 的语言模型:词嵌入 + 若干 LLMBlock + 末端 RMSNorm + 绑定输出层。 | Microsoft.VisualBasic.DeepLearning.LLM 1.0.9762.11310 |
35 |
| LLMModelConfig | LLM 的结构超参。 | Microsoft.VisualBasic.DeepLearning.LLM 1.0.9762.11310 |
25 |
| LLMTensorOps | LLM 模块共用的张量工具与手写反向算子。 | Microsoft.VisualBasic.DeepLearning.LLM 1.0.9762.11310 |
15 |
| MoELayer | DeepSeekMoE:细粒度专家分割 + 共享专家隔离 + Sigmoid Top-K 路由 + 无辅助损失负载均衡。 | Microsoft.VisualBasic.DeepLearning.LLM 1.0.9762.11310 |
29 |
| ParameterSet | 与一组参数张量绑定的优化器状态集合。 | Microsoft.VisualBasic.DeepLearning.LLM 1.0.9762.11310 |
15 |
| RmsNorm | RMSNorm 归一化层(Pre-Norm 用法)。 | Microsoft.VisualBasic.DeepLearning.LLM 1.0.9762.11310 |
11 |
| RotaryEmbedding | RoPE 旋转位置编码:预计算 cos/sin 表,并按绝对位置对最后两维做旋转。 | Microsoft.VisualBasic.DeepLearning.LLM 1.0.9762.11310 |
9 |
| SwiGLUFeedForward | SwiGLU 前馈网络:y = (SiLU(x·Wg) ⊙ (x·Wu)) · Wd。 | Microsoft.VisualBasic.DeepLearning.LLM 1.0.9762.11310 |
15 |
Microsoft.VisualBasic.DeepLearning.LLM.Agent
| Type | Summary | Package | Members |
|---|---|---|---|
| AgentLoop | 多轮工具调用循环:模型负责"想",框架负责"做"。 | Microsoft.VisualBasic.DeepLearning.LLM 1.0.9762.11310 |
9 |
| AgentLoopOptions | Agent 循环的超参。 | Microsoft.VisualBasic.DeepLearning.LLM 1.0.9762.11310 |
8 |
| AgentRound | 工具循环中的一轮。 | Microsoft.VisualBasic.DeepLearning.LLM 1.0.9762.11310 |
14 |
| AgentRunResult | 一次完整 Agent 会话的结果。 | Microsoft.VisualBasic.DeepLearning.LLM 1.0.9762.11310 |
9 |
Microsoft.VisualBasic.DeepLearning.LLM.Agent.ToolCalls
| Type | Summary | Package | Members |
|---|---|---|---|
| JsonSchema | 工具参数的 JSON Schema(对象型)。 | Microsoft.VisualBasic.DeepLearning.LLM 1.0.9762.11310 |
11 |
| JsonSchemaProperty | 工具的一个参数(JSON Schema 的 property)。 | Microsoft.VisualBasic.DeepLearning.LLM 1.0.9762.11310 |
10 |
| ToolCall | 一次工具调用的解析结果。 | Microsoft.VisualBasic.DeepLearning.LLM 1.0.9762.11310 |
5 |
| ToolCallProtocol | 工具调用协议的标记常量与编解码工具。 | Microsoft.VisualBasic.DeepLearning.LLM 1.0.9762.11310 |
42 |
| ToolDefinition | 一个已注册的工具:名称 + 说明 + 参数 schema + 真实实现。 | Microsoft.VisualBasic.DeepLearning.LLM 1.0.9762.11310 |
5 |
| ToolRegistry | 工具注册表:承载"外部代码执行解析"职责。 | Microsoft.VisualBasic.DeepLearning.LLM 1.0.9762.11310 |
8 |
Microsoft.VisualBasic.DeepLearning.LLM.CausalSelfAttention
| Type | Summary | Package | Members |
|---|---|---|---|
| Cache | 前向传播的中间量缓存,供反向传播使用。 | Microsoft.VisualBasic.DeepLearning.LLM 1.0.9762.11310 |
22 |
Microsoft.VisualBasic.DeepLearning.LLM.ConstrainedDecoder
Microsoft.VisualBasic.DeepLearning.LLM.Generator
| Type | Summary | Package | Members |
|---|---|---|---|
| GenerationOptions | 生成超参。 | Microsoft.VisualBasic.DeepLearning.LLM 1.0.9762.11310 |
5 |
| GenerationResult | 一次生成的结果(含性能与路径信息)。 | Microsoft.VisualBasic.DeepLearning.LLM 1.0.9762.11310 |
11 |
| TextGenerator | 把模型与采样器组合成"给定 prompt 生成后续 token"的循环。 | Microsoft.VisualBasic.DeepLearning.LLM 1.0.9762.11310 |
5 |
Microsoft.VisualBasic.DeepLearning.LLM.LLMBlock
| Type | Summary | Package | Members |
|---|---|---|---|
| Cache | 前向传播的中间量缓存,供反向传播使用。 | Microsoft.VisualBasic.DeepLearning.LLM 1.0.9762.11310 |
18 |
Microsoft.VisualBasic.DeepLearning.LLM.LLMModel
| Type | Summary | Package | Members |
|---|---|---|---|
| ForwardCache | 一次训练前向的中间量,供反向使用。 | Microsoft.VisualBasic.DeepLearning.LLM 1.0.9762.11310 |
14 |
Microsoft.VisualBasic.DeepLearning.LLM.MoELayer
Microsoft.VisualBasic.DeepLearning.LLM.ParameterSet
| Type | Summary | Package | Members |
|---|---|---|---|
| Entry | 单个参数的登记项:名称 + 参数张量 + 它的 AdamW 状态。 | Microsoft.VisualBasic.DeepLearning.LLM 1.0.9762.11310 |
4 |
Microsoft.VisualBasic.DeepLearning.LLM.RmsNorm
| Type | Summary | Package | Members |
|---|---|---|---|
| Cache | 前向传播的中间量缓存,供反向传播使用。 | Microsoft.VisualBasic.DeepLearning.LLM 1.0.9762.11310 |
6 |
Microsoft.VisualBasic.DeepLearning.LLM.Sampler
| Type | Summary | Package | Members |
|---|---|---|---|
| LLMSampler | 采样器:把 logits 变成概率分布,再按配置选出一个 token。 | Microsoft.VisualBasic.DeepLearning.LLM 1.0.9762.11310 |
6 |
| SamplingConfig | 采样超参。 | Microsoft.VisualBasic.DeepLearning.LLM 1.0.9762.11310 |
11 |
Microsoft.VisualBasic.DeepLearning.LLM.SwiGLUFeedForward
| Type | Summary | Package | Members |
|---|---|---|---|
| Cache | 前向传播的中间量缓存,供反向传播使用。 | Microsoft.VisualBasic.DeepLearning.LLM 1.0.9762.11310 |
8 |
Microsoft.VisualBasic.DeepLearning.LLM.Text
| Type | Summary | Package | Members |
|---|---|---|---|
| ITextCodec | 文本与 token 之间的编解码接口。 | Microsoft.VisualBasic.DeepLearning.LLM 1.0.9762.11310 |
4 |
| TokenizerVocabulary | 词表的文本视图:把 token id 映射回它实际贡献的文本,并建立首字符倒排索引。 | Microsoft.VisualBasic.DeepLearning.LLM 1.0.9762.11310 |
10 |
| TokenStream | 自回归 token 流:持有上下文与缓存,按需给出下一个位置的 logits。 | Microsoft.VisualBasic.DeepLearning.LLM 1.0.9762.11310 |
9 |
Microsoft.VisualBasic.DeepLearning.LLM.Trainer
| Type | Summary | Package | Members |
|---|---|---|---|
| LMBatch | 一个训练批次:等长的若干条 token 序列(展平存放)+ 逐位置的损失掩码。 | Microsoft.VisualBasic.DeepLearning.LLM 1.0.9762.11310 |
8 |
| LMTrainer | 语言模型训练器:把"前向 → 掩码交叉熵 → 反向 → 裁剪 → AdamW → MoE 均衡"串成一个训练步。 | Microsoft.VisualBasic.DeepLearning.LLM 1.0.9762.11310 |
12 |
| TrainingConfig | 训练超参。 | Microsoft.VisualBasic.DeepLearning.LLM 1.0.9762.11310 |
7 |
| TrainingStepReport | 一个训练步的结果报告。 | Microsoft.VisualBasic.DeepLearning.LLM 1.0.9762.11310 |
9 |
Microsoft.VisualBasic.DeepLearning.SpikingNeuralNetwork
| Type | Summary | Package | Members |
|---|---|---|---|
| AdamOptimizer | Adam 优化器(含梯度 L2 范数裁剪)。 key 用于区分不同参数的动量状态(例如各层权重)。 | Microsoft.VisualBasic.DeepLearning.SpikingNeuralNetwork 1.0.0 |
5 |
| AdamOptimizer | Adam 优化器(含梯度 L2 范数裁剪)。 key 用于区分不同参数的动量状态(例如各层权重)。 | Microsoft.VisualBasic.DeepLearning.SpikingNeuralNetwork 1.0.9762.11310 |
5 |
| LIFLayer | Microsoft.VisualBasic.DeepLearning.SpikingNeuralNetwork 1.0.0 |
17 | |
| LIFLayer | Microsoft.VisualBasic.DeepLearning.SpikingNeuralNetwork 1.0.9762.11310 |
17 | |
| LIFResetMode | 膜电位复位模式 | Microsoft.VisualBasic.DeepLearning.SpikingNeuralNetwork 1.0.0 |
4 |
| LIFResetMode | 膜电位复位模式 | Microsoft.VisualBasic.DeepLearning.SpikingNeuralNetwork 1.0.9762.11310 |
4 |
| LinearReadout | 线性回归解码头:把脉冲网络状态(膜电位 / 发放率)线性映射为连续预测值。 | Microsoft.VisualBasic.DeepLearning.SpikingNeuralNetwork 1.0.9762.11310 |
13 |
| Losses | 损失函数库 | Microsoft.VisualBasic.DeepLearning.SpikingNeuralNetwork 1.0.0 |
1 |
| Losses | 损失函数库 | Microsoft.VisualBasic.DeepLearning.SpikingNeuralNetwork 1.0.9762.11310 |
1 |
| LossGradient | Softmax 交叉熵的返回结构 | Microsoft.VisualBasic.DeepLearning.SpikingNeuralNetwork 1.0.0 |
4 |
| LossGradient | Softmax 交叉熵的返回结构 | Microsoft.VisualBasic.DeepLearning.SpikingNeuralNetwork 1.0.9762.11310 |
4 |
| RecurrentGradients | 递归 LIF 层 BPTT 的梯度结果。 | Microsoft.VisualBasic.DeepLearning.SpikingNeuralNetwork 1.0.9762.11310 |
6 |
| RecurrentLIFLayer | 可训练的递归 LIF 层:同一神经元群内部的稠密稀疏化突触连接, 支持结构掩码冻结、硬/软复位与代理梯度 BPTT。 | Microsoft.VisualBasic.DeepLearning.SpikingNeuralNetwork 1.0.9762.11310 |
37 |
| RegressionLosses | 回归损失与结构正则原语 | Microsoft.VisualBasic.DeepLearning.SpikingNeuralNetwork 1.0.9762.11310 |
10 |
| SparseLIFLayer | Microsoft.VisualBasic.DeepLearning.SpikingNeuralNetwork 1.0.9762.11310 |
14 | |
| SparseMatrix | 稀疏突触连接矩阵(CSR 格式)。行 = 突触前神经元,列 = 突触后神经元。 | Microsoft.VisualBasic.DeepLearning.SpikingNeuralNetwork 1.0.9762.11310 |
11 |
| SparseNormalization | 突触权重归一化方式 | Microsoft.VisualBasic.DeepLearning.SpikingNeuralNetwork 1.0.9762.11310 |
8 |
| SpikeDecoders | 脉冲序列 → 连续值的解码工具 | Microsoft.VisualBasic.DeepLearning.SpikingNeuralNetwork 1.0.9762.11310 |
7 |
| SpikeEncoders | 脉冲编码器库 | Microsoft.VisualBasic.DeepLearning.SpikingNeuralNetwork 1.0.0 |
2 |
| SpikeEncoders | 脉冲编码器库 | Microsoft.VisualBasic.DeepLearning.SpikingNeuralNetwork 1.0.9762.11310 |
3 |
| SpikeEncoding | 输入脉冲编码方式 | Microsoft.VisualBasic.DeepLearning.SpikingNeuralNetwork 1.0.0 |
4 |
| SpikeEncoding | 输入脉冲编码方式 | Microsoft.VisualBasic.DeepLearning.SpikingNeuralNetwork 1.0.9762.11310 |
6 |
| SpikingNetwork | 脉冲神经网络:编码器 + 多个 LIF 层 + 时间展开 + 计数解码。 | Microsoft.VisualBasic.DeepLearning.SpikingNeuralNetwork 1.0.0 |
11 |
| SpikingNetwork | 脉冲神经网络:编码器 + 多个 LIF 层 + 时间展开 + 计数解码。 支持两种连接拓扑(互斥): 1. | Microsoft.VisualBasic.DeepLearning.SpikingNeuralNetwork 1.0.9762.11310 |
17 |
| STDPLayer | Microsoft.VisualBasic.DeepLearning.SpikingNeuralNetwork 1.0.0 |
13 | |
| STDPLayer | Microsoft.VisualBasic.DeepLearning.SpikingNeuralNetwork 1.0.9762.11310 |
13 | |
| Surrogate | 替代梯度函数库 | Microsoft.VisualBasic.DeepLearning.SpikingNeuralNetwork 1.0.0 |
3 |
| Surrogate | 替代梯度函数库 | Microsoft.VisualBasic.DeepLearning.SpikingNeuralNetwork 1.0.9762.11310 |
3 |
| SurrogateKind | 替代梯度函数类型 | Microsoft.VisualBasic.DeepLearning.SpikingNeuralNetwork 1.0.0 |
6 |
| SurrogateKind | 替代梯度函数类型 | Microsoft.VisualBasic.DeepLearning.SpikingNeuralNetwork 1.0.9762.11310 |
6 |
Microsoft.VisualBasic.Drawing
| Type | Summary | Package | Members |
|---|---|---|---|
| CssInterop | .NET clr gdi+ component convert to css model | Microsoft.VisualBasic.Drawing.Windows 1.0.9753.4776 |
0 |
| CssInterop | .NET clr gdi+ component convert to css model | Microsoft.VisualBasic.Drawing.Windows 1.0.9762.11310 |
0 |
| DrawingInterop | helper for make gdi+ graphics component conversion | Microsoft.VisualBasic.Drawing.Windows 1.0.9753.4776 |
9 |
| DrawingInterop | helper for make gdi+ graphics component conversion | Microsoft.VisualBasic.Drawing.Windows 1.0.9762.11310 |
9 |
| Extensions | Microsoft.VisualBasic.Drawing.Windows 1.0.9753.4776 |
9 | |
| Extensions | Microsoft.VisualBasic.Drawing.Windows 1.0.9762.11310 |
9 | |
| GDICanvas | 这个对象是Graphics2D以及Wmf公用的基础类型 | Microsoft.VisualBasic.Drawing.Windows 1.0.9753.4776 |
30 |
| GDICanvas | 这个对象是Graphics2D以及Wmf公用的基础类型 | Microsoft.VisualBasic.Drawing.Windows 1.0.9762.11310 |
30 |
| GifEncoder | Encodes multiple images as an animated gif to a stream. | Microsoft.VisualBasic.Drawing.Windows 1.0.9753.4776 |
3 |
| GifEncoder | Encodes multiple images as an animated gif to a stream. | Microsoft.VisualBasic.Drawing.Windows 1.0.9762.11310 |
3 |
| Graphics2D | GDI+ device handle for encapsulates a GDI+ drawing surface. | Microsoft.VisualBasic.Drawing.Windows 1.0.9753.4776 |
8 |
| Graphics2D | GDI+ device handle for encapsulates a GDI+ drawing surface. | Microsoft.VisualBasic.Drawing.Windows 1.0.9762.11310 |
7 |
| ImageExtensions | Microsoft.VisualBasic.Drawing.Windows 1.0.9753.4776 |
1 | |
| ImageExtensions | Microsoft.VisualBasic.Drawing.Windows 1.0.9762.11310 |
1 | |
| ImageFormatExtensions | Specifies the file format of the image. | Microsoft.VisualBasic.Drawing.Windows 1.0.9753.4776 |
3 |
| ImageFormatExtensions | Specifies the file format of the image. | Microsoft.VisualBasic.Drawing.Windows 1.0.9762.11310 |
3 |
| TiffWriter | Microsoft.VisualBasic.Drawing.Windows 1.0.9753.4776 |
1 | |
| TiffWriter | Microsoft.VisualBasic.Drawing.Windows 1.0.9762.11310 |
1 | |
| Wmf | Windows Metafile (WMF) is an image file format originally designed for Microsoft Windows in the 1990s. | Microsoft.VisualBasic.Drawing.Windows 1.0.9753.4776 |
9 |
| Wmf | Windows Metafile (WMF) is an image file format originally designed for Microsoft Windows in the 1990s. | Microsoft.VisualBasic.Drawing.Windows 1.0.9762.11310 |
4 |
Microsoft.VisualBasic.Drawing.DirectX
| Type | Summary | Package | Members |
|---|---|---|---|
| ComBase | The common helper api for the directx com interop layer | Microsoft.VisualBasic.Drawing.DirectX 1.0.9762.11310 |
12 |
| D2D1 | The Direct2D (d2d1.dll) interop declarations. | Microsoft.VisualBasic.Drawing.DirectX 1.0.9762.11310 |
1 |
| D2D1_MATRIX_3X2_F | D2D1_MATRIX_3X2_F, the field order is _11, _12, _21, _22, _31, _32 | Microsoft.VisualBasic.Drawing.DirectX 1.0.9762.11310 |
0 |
| D3D11 | The D3D11 (d3d11.dll) interop declarations. | Microsoft.VisualBasic.Drawing.DirectX 1.0.9762.11310 |
1 |
| DWrite | The DirectWrite (dwrite.dll) interop declarations, used for the text layout and the text metrics calculation. | Microsoft.VisualBasic.Drawing.DirectX 1.0.9762.11310 |
1 |
| Dx2DDriver | The device interop driver of the directx 2d graphics engine. | Microsoft.VisualBasic.Drawing.DirectX 1.0.9762.11310 |
1 |
| DxBrushCache | The direct2d resource cache of a render target. | Microsoft.VisualBasic.Drawing.DirectX 1.0.9762.11310 |
6 |
| DxCanvas | A winforms control that draws its whole content through the gpu accelerated directx 2d pipeline. | Microsoft.VisualBasic.Drawing.DirectX.WinForm 1.0.9762.11310 |
16 |
| DxDevice | The gpu device wrapper of the directx engine: a d3d11 device with the BGRA support flag, its immediate context, the direct2d factory and the directwrite factory. | Microsoft.VisualBasic.Drawing.DirectX 1.0.9762.11310 |
2 |
| DXGI | The DXGI (dxgi.dll) interop declarations. | Microsoft.VisualBasic.Drawing.DirectX 1.0.9762.11310 |
1 |
| DXGI_SWAP_CHAIN_DESC1 | DXGI_SWAP_CHAIN_DESC1, the 48 bytes sequential layout matches dxgi1_2.h | Microsoft.VisualBasic.Drawing.DirectX 1.0.9762.11310 |
1 |
| DxGraphics | A gpu accelerated 2d drawing canvas that is implemented on top of the Direct2D / D3D11 / DXGI / DirectWrite api. | Microsoft.VisualBasic.Drawing.DirectX 1.0.9762.11310 |
28 |
| DxPathBuilder | The direct2d geometry constructor: converts the gdi+ style drawing primitive into a ID2D1Geometry object so that it can be rasterized by the gpu device. | Microsoft.VisualBasic.Drawing.DirectX 1.0.9762.11310 |
13 |
| DxPixelFormat | The pixel buffer converter between the direct2d gpu texture and the managed raster image model. | Microsoft.VisualBasic.Drawing.DirectX 1.0.9762.11310 |
4 |
| DxPolygonBatch | The polygon batch submitter. | Microsoft.VisualBasic.Drawing.DirectX 1.0.9762.11310 |
9 |
| DxRenderEventArgs | The event data of the DxCanvas.Render event. | Microsoft.VisualBasic.Drawing.DirectX.WinForm 1.0.9762.11310 |
4 |
| DxRenderSurface | The abstract gpu render surface that the DxGraphics canvas draws on. | Microsoft.VisualBasic.Drawing.DirectX 1.0.9762.11310 |
15 |
| DxRenderTarget | An off screen gpu canvas: a d3d11 texture that is shared with direct2d through a dxgi surface. | Microsoft.VisualBasic.Drawing.DirectX 1.0.9762.11310 |
9 |
| DxSinkWriter | A allocation free writer of the ID2D1GeometrySink object. | Microsoft.VisualBasic.Drawing.DirectX 1.0.9762.11310 |
0 |
| DxSwapChainTarget | A gpu render surface that presents its frames onto a window: a dxgi flip model swap chain whose back buffer is used as the direct2d render target. | Microsoft.VisualBasic.Drawing.DirectX 1.0.9762.11310 |
21 |
| DxWindowCanvas | A gpu accelerated 2d drawing canvas that presents its frames onto a window. | Microsoft.VisualBasic.Drawing.DirectX 1.0.9762.11310 |
11 |
| ID2D1Bitmap | ID2D1Bitmap, created from the raw pixel buffer for the image drawing | Microsoft.VisualBasic.Drawing.DirectX 1.0.9762.11310 |
0 |
| ID2D1Brush | ID2D1Brush, all of the brush objects in this project are created as this interface type so that no extra QueryInterface is required when the brush is applied on the render target… | Microsoft.VisualBasic.Drawing.DirectX 1.0.9762.11310 |
0 |
| ID2D1GradientStopCollection | ID2D1GradientStopCollection, an opaque handle that is required by the linear gradient brush creation api | Microsoft.VisualBasic.Drawing.DirectX 1.0.9762.11310 |
0 |
| ID2D1Resource | ID2D1Resource: the base object of all of the direct2d resources | Microsoft.VisualBasic.Drawing.DirectX 1.0.9762.11310 |
0 |
| ID2D1StrokeStyle | ID2D1StrokeStyle, the dash style of the stroke pen | Microsoft.VisualBasic.Drawing.DirectX 1.0.9762.11310 |
0 |
| ID3D11Device | ID3D11Device, only ID3D11Device.CreateTexture2D()) (vtable slot 5) is used, the immediate device context is returned from D3D11.D3D11CreateDevice()) | Microsoft.VisualBasic.Drawing.DirectX 1.0.9762.11310 |
0 |
| ID3D11DeviceContext | ID3D11DeviceContext, the pixel read back is implemented via CopyResource (vtable slot 47) + Map/Unmap (vtable slot 14/15) | Microsoft.VisualBasic.Drawing.DirectX 1.0.9762.11310 |
0 |
| ID3D11Texture2D | ID3D11Texture2D, no method is required by this project | Microsoft.VisualBasic.Drawing.DirectX 1.0.9762.11310 |
0 |
| IDXGIFactory2 | IDXGIFactory2: used for creating a flip model swap chain on a window. | Microsoft.VisualBasic.Drawing.DirectX 1.0.9762.11310 |
1 |
| IDXGISurface | IDXGISurface: the dxgi surface object that is queried from the d3d11 texture2d resource, Direct2D renders on top of this surface. | Microsoft.VisualBasic.Drawing.DirectX 1.0.9762.11310 |
0 |
Microsoft.VisualBasic.Drawing.DirectX.D3D11
| Type | Summary | Package | Members |
|---|---|---|---|
| D3D11_CREATE_DEVICE_FLAG | Microsoft.VisualBasic.Drawing.DirectX 1.0.9762.11310 |
1 |
Microsoft.VisualBasic.Drawing.DirectX.Dx2DDriver
| Type | Summary | Package | Members |
|---|---|---|---|
| DxDriver | Microsoft.VisualBasic.Drawing.DirectX 1.0.9762.11310 |
1 |
Microsoft.VisualBasic.Drawing.DirectX.DXGI
| Type | Summary | Package | Members |
|---|---|---|---|
| DXGI_FORMAT | DXGI_FORMAT enumeration (subset) | Microsoft.VisualBasic.Drawing.DirectX 1.0.9762.11310 |
0 |
| DXGI_SWAP_EFFECT | how the swap chain presents the back buffer | Microsoft.VisualBasic.Drawing.DirectX 1.0.9762.11310 |
0 |
Microsoft.VisualBasic.Drawing.Drawing2D.Text
| Type | Summary | Package | Members |
|---|---|---|---|
| FontMetrics | Microsoft.VisualBasic.Drawing.Windows 1.0.9753.4776 |
4 | |
| FontMetrics | Microsoft.VisualBasic.Drawing.Windows 1.0.9762.11310 |
3 | |
| GraphicsText | 利用GDI+绘制旋转文字,矩形内可以根据布局方式排列文本 | Microsoft.VisualBasic.Drawing.Windows 1.0.9753.4776 |
2 |
| GraphicsText | 利用GDI+绘制旋转文字,矩形内可以根据布局方式排列文本 | Microsoft.VisualBasic.Drawing.Windows 1.0.9762.11310 |
2 |
| TextRender | 基于HTML语法的字符串的绘制描述信息的解析 | Microsoft.VisualBasic.Drawing.Windows 1.0.9753.4776 |
2 |
| TextRender | 基于HTML语法的字符串的绘制描述信息的解析 | Microsoft.VisualBasic.Drawing.Windows 1.0.9762.11310 |
2 |
Microsoft.VisualBasic.Drawing.Fonts.TrueType
| Type | Summary | Package | Members |
|---|---|---|---|
| TrueTypeFont | A TrueType parser for reading, glyphIds, names, descriptions, and kerning information from TrueType fonts | Microsoft.VisualBasic.Drawing.Fonts.TrueType 0.2.9762.11310 |
18 |
| TtcHeader | Header for TrueType Collection files | Microsoft.VisualBasic.Drawing.Fonts.TrueType 0.2.9762.11310 |
9 |
| WindowsEncoding | Microsoft.VisualBasic.Drawing.Fonts.TrueType 0.2.9762.11310 |
12 |
Microsoft.VisualBasic.Drawing.Fonts.TrueType.Helpers
| Type | Summary | Package | Members |
|---|---|---|---|
| GlyphHelper | Microsoft.VisualBasic.Drawing.Fonts.TrueType 0.2.9762.11310 |
1 | |
| KerningHelper | Microsoft.VisualBasic.Drawing.Fonts.TrueType 0.2.9762.11310 |
1 |
Microsoft.VisualBasic.Drawing.Fonts.TrueType.IO
| Type | Summary | Package | Members |
|---|---|---|---|
| FontReader | Extended BinaryReader with helper methods for reading number and text formats common in TrueType files | Microsoft.VisualBasic.Drawing.Fonts.TrueType 0.2.9762.11310 |
10 |
Microsoft.VisualBasic.Drawing.Fonts.TrueType.Tables
| Type | Summary | Package | Members |
|---|---|---|---|
| HeadTable | Font Header Table | Microsoft.VisualBasic.Drawing.Fonts.TrueType 0.2.9762.11310 |
19 |
| HheaTable | The Horizontal Header Table contains information for horizontal layout | Microsoft.VisualBasic.Drawing.Fonts.TrueType 0.2.9762.11310 |
16 |
| MaxpTable | Maximum Profile Table | Microsoft.VisualBasic.Drawing.Fonts.TrueType 0.2.9762.11310 |
16 |
| OffsetTable | Contains the offset in the file to the major tables (like CMAP, NAME, KERN, etc...) in this font | Microsoft.VisualBasic.Drawing.Fonts.TrueType 0.2.9762.11310 |
7 |
| Os2Table | OS/2 and Windows Metrics Table | Microsoft.VisualBasic.Drawing.Fonts.TrueType 0.2.9762.11310 |
40 |
| TrueTypeTableNames | Microsoft.VisualBasic.Drawing.Fonts.TrueType 0.2.9762.11310 |
20 | |
| VheaTable | The Vertical Header Table contains information for vertical layout | Microsoft.VisualBasic.Drawing.Fonts.TrueType 0.2.9762.11310 |
15 |
Microsoft.VisualBasic.Drawing.Fonts.TrueType.Tables.Cmap
| Type | Summary | Package | Members |
|---|---|---|---|
| CmapTable | Microsoft.VisualBasic.Drawing.Fonts.TrueType 0.2.9762.11310 |
3 | |
| EncodingRecord | Microsoft.VisualBasic.Drawing.Fonts.TrueType 0.2.9762.11310 |
6 |
Microsoft.VisualBasic.Drawing.Fonts.TrueType.Tables.Hmtx
| Type | Summary | Package | Members |
|---|---|---|---|
| HmtxTable | Horizontal Metrics Table | Microsoft.VisualBasic.Drawing.Fonts.TrueType 0.2.9762.11310 |
4 |
| LongHorMetric | Horizontal layout metrics for a glyph | Microsoft.VisualBasic.Drawing.Fonts.TrueType 0.2.9762.11310 |
3 |
Microsoft.VisualBasic.Drawing.Fonts.TrueType.Tables.Kern
| Type | Summary | Package | Members |
|---|---|---|---|
| KernTable | Contains adjustment to horizontal/vertical positions between glyphs | Microsoft.VisualBasic.Drawing.Fonts.TrueType 0.2.9762.11310 |
5 |
Microsoft.VisualBasic.Drawing.Fonts.TrueType.Tables.Name
| Type | Summary | Package | Members |
|---|---|---|---|
| NameTable | Microsoft.VisualBasic.Drawing.Fonts.TrueType 0.2.9762.11310 |
5 |
Microsoft.VisualBasic.Drawing.Fonts.TrueType.Tables.Vmtx
| Type | Summary | Package | Members |
|---|---|---|---|
| LongVerMetric | Horizontal layout metrics for a glyph | Microsoft.VisualBasic.Drawing.Fonts.TrueType 0.2.9762.11310 |
3 |
| VmtxTable | Vertical Metrics Table | Microsoft.VisualBasic.Drawing.Fonts.TrueType 0.2.9762.11310 |
4 |
Microsoft.VisualBasic.Drawing.Graphics2D
Microsoft.VisualBasic.Drawing.Imaging.BitmapImage
| Type | Summary | Package | Members |
|---|---|---|---|
| Effects | Microsoft.VisualBasic.Drawing.Windows 1.0.9753.4776 |
3 | |
| Effects | Microsoft.VisualBasic.Drawing.Windows 1.0.9762.11310 |
3 | |
| Imager | image resizing and cropping | Microsoft.VisualBasic.Drawing.Windows 1.0.9753.4776 |
5 |
| Imager | image resizing and cropping | Microsoft.VisualBasic.Drawing.Windows 1.0.9762.11310 |
5 |
| Utils | Tools function for processing on Image/Bitmap | Microsoft.VisualBasic.Drawing.Windows 1.0.9753.4776 |
1 |
| Utils | Tools function for processing on Image/Bitmap | Microsoft.VisualBasic.Drawing.Windows 1.0.9762.11310 |
1 |
Microsoft.VisualBasic.Drawing.Interop
| Type | Summary | Package | Members |
|---|---|---|---|
| BitmapBuffer | Microsoft.VisualBasic.Drawing.Windows 1.0.9753.4776 |
3 | |
| BitmapBuffer | Microsoft.VisualBasic.Drawing.Windows 1.0.9762.11310 |
3 |
Microsoft.VisualBasic.DynamicType
| Type | Summary | Package | Members |
|---|---|---|---|
| PropertyInfo | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
9 | |
| PropertyInfo | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
9 |
Microsoft.VisualBasic.Emit.Delegates
| Type | Summary | Package | Members |
|---|---|---|---|
| DataObjectVector | .net clr object vector data property get/set helper. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
7 |
| DataObjectVector | .net clr object vector data property get/set helper. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
7 |
| DataValue | .NET object collection data property value get/set helper. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| DataValue | .NET object collection data property value get/set helper. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
| DelegateFactory | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
57 | |
| DelegateFactory | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
57 | |
| TypeExtensions | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 | |
| TypeExtensions | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 |
Microsoft.VisualBasic.Emit.Marshal
| Type | Summary | Package | Members |
|---|---|---|---|
| Byte | Represents a pointer to an 8-bit unsigned integer array. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 |
| Byte | Represents a pointer to an 8-bit unsigned integer array. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 |
| IntPtr | Unmanaged Memory pointer in VisualBasic language.(内存指针) | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
11 |
| IntPtr | Unmanaged Memory pointer in VisualBasic language.(内存指针) | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
11 |
| MarshalExtensions | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 | |
| MarshalExtensions | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 | |
| Pointer | Array index helper. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
31 |
| Pointer | Array index helper. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
31 |
| Span | A simulation of system.span in .NET 5 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
10 |
| Span | A simulation of system.span in .NET 5 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
10 |
| UnsafeCopys | 读取原始的内存数据的操作 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| UnsafeCopys | 读取原始的内存数据的操作 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
| UnsafeWrite | 向原始的内存数据执行写入操作的函数指针 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| UnsafeWrite | 向原始的内存数据执行写入操作的函数指针 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
Microsoft.VisualBasic.Emit.Parameters
| Type | Summary | Package | Members |
|---|---|---|---|
| ParamLogUtility | Exception is a common issue in projects. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 |
| ParamLogUtility | Exception is a common issue in projects. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 |
Microsoft.VisualBasic.FileIO
| Type | Summary | Package | Members |
|---|---|---|---|
| CopyDirectoryAction | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 | |
| CopyDirectoryAction | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 | |
| Directory | A wrapper object for the processing of relative file path. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
25 |
| Directory | A wrapper object for the processing of relative file path. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
25 |
| Extensions | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 | |
| Extensions | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 | |
| FileModeDescriptor | Specifies how the operating system should open a file. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
8 |
| FileModeDescriptor | Specifies how the operating system should open a file. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
8 |
| NetFile | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 | |
| NetFile | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 | |
| TemporaryEnvironment | Workspace model 在TemporaryEnvironment.Dispose()的时候,文件夹会切换回来 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 |
| TemporaryEnvironment | Workspace model 在TemporaryEnvironment.Dispose()的时候,文件夹会切换回来 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 |
Microsoft.VisualBasic.FileIO.Path
| Type | Summary | Package | Members |
|---|---|---|---|
| FilePath | A file path string component object | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
13 |
| FilePath | A file path string component object | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
13 |
| Includes | File includes search tools | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| Includes | File includes search tools | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
| PathMatch | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 | |
| PathMatch | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 |
Microsoft.VisualBasic.FileIO.SymLinker
| Type | Summary | Package | Members |
|---|---|---|---|
| HardLink | Provides access to NTFS hard links in .Net. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 |
| HardLink | Provides access to NTFS hard links in .Net. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 |
| JunctionPoint | Provides access to NTFS junction points in .Net. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
14 |
| JunctionPoint | Provides access to NTFS junction points in .Net. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
14 |
| SymbolicLink | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
6 | |
| SymbolicLink | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
6 |
Microsoft.VisualBasic.FileIO.SymLinker.JunctionPoint
| Type | Summary | Package | Members |
|---|---|---|---|
| REPARSE_DATA_BUFFER | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
8 | |
| REPARSE_DATA_BUFFER | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
8 |
Microsoft.VisualBasic.Imaging
| Type | Summary | Package | Members |
|---|---|---|---|
| AdjustableArrowCap | Represents an adjustable arrow-shaped line cap. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 |
| AdjustableArrowCap | Represents an adjustable arrow-shaped line cap. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 |
| Bitmap | the gdi+ raster image data in memory | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
13 |
| Bitmap | the gdi+ raster image data in memory | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
13 |
| Blend | Defines a blend pattern for a gradient. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 |
| Blend | Defines a blend pattern for a gradient. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 |
| CMYKColor | The CMYK color model (also known as process color, or four color) is a subtractive color model, based on the CMY color model, used in color printing, and is also used to descri… | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
9 |
| CMYKColor | The CMYK color model (also known as process color, or four color) is a subtractive color model, based on the CMY color model, used in color printing, and is also used to descri… | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
9 |
| ColorBlend | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 | |
| ColorBlend | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 | |
| ColorCube | Describes the RGB color space as a 3D cube with the origin at Black. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
13 |
| ColorCube | Describes the RGB color space as a 3D cube with the origin at Black. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
13 |
| ColorMap | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
30 | |
| ColorMap | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
30 | |
| ColorMapsExtensions | Create Custom Color Maps | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| ColorMapsExtensions | Create Custom Color Maps | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
| ColorPalette | Defines an array of colors that make up a color palette. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 |
| ColorPalette | Defines an array of colors that make up a color palette. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 |
| CompositingMode | Specifies how the source colors are combined with the background colors during rendering. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 |
| CompositingMode | Specifies how the source colors are combined with the background colors during rendering. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 |
| CustomLineCap | Encapsulates a custom user-defined line cap. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
9 |
| CustomLineCap | Encapsulates a custom user-defined line cap. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
9 |
| DefaultFontValues | Default font values | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
0 |
| DefaultFontValues | Default font values | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
0 |
| Extensions | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
1 | |
| Extensions | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
1 | |
| FillMode | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 | |
| FillMode | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 | |
| Font | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
14 | |
| Font | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
14 | |
| FontFace | Font names collection | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
23 |
| FontFace | Font names collection | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
23 |
| FontStyle | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
7 | |
| FontStyle | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
7 | |
| GDIColors | Extensions function for the gdi+ color type. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
30 |
| GDIColors | Extensions function for the gdi+ color type. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
30 |
| GraphicsContextInfo | Describes the cumulative graphics context of an IGraphics driver. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| GraphicsContextInfo | Describes the cumulative graphics context of an IGraphics driver. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
| GraphicsExtensions | GDI+ | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
28 |
| GraphicsExtensions | GDI+ | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
28 |
| GraphicsPath | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
35 | |
| GraphicsPath | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
35 | |
| GraphicsState | Represents the state of a Graphics object. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 |
| GraphicsState | Represents the state of a Graphics object. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 |
| HexColor | Convert hex color string to RGB color | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
7 |
| HexColor | Convert hex color string to RGB color | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
7 |
| HSBColor | Provides methods for conversion between RGB and HSB color models | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
7 |
| HSBColor | Provides methods for conversion between RGB and HSB color models | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
7 |
| HSLColor | Describes a RGB color in Hue, Saturation, and Luminance values. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
7 |
| HSLColor | Describes a RGB color in Hue, Saturation, and Luminance values. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
7 |
| IGraphics | Encapsulates a GDI+(bitmap, wmf)/SVG etc drawing surface. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
93 |
| IGraphics | Encapsulates a GDI+(bitmap, wmf)/SVG etc drawing surface. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
93 |
| Image | the abstract image data model, example as gdi+ raster image bitmap, svg image, pdf image, etc | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
9 |
| Image | the abstract image data model, example as gdi+ raster image bitmap, svg image, pdf image, etc | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
9 |
| ImageFormat | Specifies the file format of the image. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
14 |
| ImageFormat | Specifies the file format of the image. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
14 |
| ImageFormats | Specifies the file format of the image. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
28 |
| ImageFormats | Specifies the file format of the image. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
28 |
| ImageTools | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
6 | |
| ImageTools | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
6 | |
| InterpolationMode | Specifies how intermediate values between two endpoints are calculated during scaling or rotation. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
18 |
| InterpolationMode | Specifies how intermediate values between two endpoints are calculated during scaling or rotation. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
18 |
| IReadOnlyPoint | a float 2d point | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 |
| IReadOnlyPoint | a float 2d point | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 |
| Layout2D | a float 2d point | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 |
| Layout2D | a float 2d point | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 |
| LinearGradientBrush | Encapsulates a brush with a linear gradient. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
13 |
| LinearGradientBrush | Encapsulates a brush with a linear gradient. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
13 |
| LinearGradientMode | Specifies the direction of a linear gradient. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
8 |
| LinearGradientMode | Specifies the direction of a linear gradient. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
8 |
| LineJoin | Specifies how to join consecutive line Or curve segments in a figure (subpath) contained in a System.Drawing.Drawing2D.GraphicsPath object. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
8 |
| LineJoin | Specifies how to join consecutive line Or curve segments in a figure (subpath) contained in a System.Drawing.Drawing2D.GraphicsPath object. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
8 |
| Matrix | Encapsulates a 3-by-3 affine matrix that represents a geometric transform. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
34 |
| Matrix | Encapsulates a 3-by-3 affine matrix that represents a geometric transform. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
34 |
| Metafile | Defines a graphic metafile. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 |
| Metafile | Defines a graphic metafile. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 |
| MetafileFrameUnit | Specifies a unit of measurement for the rectangle used to size and position a metafile. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
12 |
| MetafileFrameUnit | Specifies a unit of measurement for the rectangle used to size and position a metafile. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
12 |
| MetafileHeaderData | Contains attributes of an associated Metafile. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
8 |
| MetafileHeaderData | Contains attributes of an associated Metafile. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
8 |
| MetafileType | Specifies the layout of the metafile format. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
14 |
| MetafileType | Specifies the layout of the metafile format. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
14 |
| PathData | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 | |
| PathData | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 | |
| PathGradientBrush | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
11 | |
| PathGradientBrush | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
11 | |
| Pen | The stroke pen wrapper for .net 8.0 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
15 |
| Pen | The stroke pen wrapper for .net 8.0 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
15 |
| Pixel | a generic data model for HeatMap raster: [x,y,scale] | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 |
| Pixel | a generic data model for HeatMap raster: [x,y,scale] | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 |
| PixelFormat | Specifies the format of the color data for each pixel in the image. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
24 |
| PixelFormat | Specifies the format of the color data for each pixel in the image. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
24 |
| PixelOffsetMode | Specifies how pixels are offset during rendering. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
12 |
| PixelOffsetMode | Specifies how pixels are offset during rendering. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
12 |
| PointF3D | [x,y,z] 这个接口是为了实现Imaging模块的Point3D对象和数学函数模块的3D插值模块的兼容 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 |
| PointF3D | [x,y,z] 这个接口是为了实现Imaging模块的Point3D对象和数学函数模块的3D插值模块的兼容 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 |
| QualityMode | Specifies the overall quality when rendering GDI+ objects. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
8 |
| QualityMode | Specifies the overall quality when rendering GDI+ objects. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
8 |
| RasterPixel | [x,y] tuple | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 |
| RasterPixel | [x,y] tuple | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 |
| Region | Describes the interior of a graphics shape composed of rectangles and paths. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
37 |
| Region | Describes the interior of a graphics shape composed of rectangles and paths. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
37 |
| SmoothingMode | Specifies the smoothing/antialiasing quality applied to lines, curves and edges. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
12 |
| SmoothingMode | Specifies the smoothing/antialiasing quality applied to lines, curves and edges. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
12 |
| SpatialIndex3D | a index point in 3d spatial geometry space | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
6 |
| SpatialIndex3D | a index point in 3d spatial geometry space | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
6 |
| SystemBrushes | Each property of the SystemBrushes class is a SolidBrush that is the color of a Windows display element. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
33 |
| SystemBrushes | Each property of the SystemBrushes class is a SolidBrush that is the color of a Windows display element. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
33 |
| SystemPens | Each property of the SystemPens class is a Pen that is the color of a Windows display element. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
33 |
| SystemPens | Each property of the SystemPens class is a Pen that is the color of a Windows display element. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
33 |
| TextureResourceLoader | Default texture brush provider | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
3 |
| TextureResourceLoader | Default texture brush provider | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
3 |
| WarpMode | Specifies the warping mode. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 |
| WarpMode | Specifies the warping mode. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 |
Microsoft.VisualBasic.Imaging.AVIMedia
| Type | Summary | Package | Members |
|---|---|---|---|
| AVIMainHeader | Microsoft.VisualBasic.Imaging.AVIMedia 1.0.9753.4776 |
14 | |
| AVIMainHeader | Microsoft.VisualBasic.Imaging.AVIMedia 1.0.9762.11310 |
14 | |
| AVIStream | Microsoft.VisualBasic.Imaging.AVIMedia 1.0.9753.4776 |
8 | |
| AVIStream | Microsoft.VisualBasic.Imaging.AVIMedia 1.0.9762.11310 |
7 | |
| AVIStreamHeader | Microsoft.VisualBasic.Imaging.AVIMedia 1.0.9753.4776 |
20 | |
| AVIStreamHeader | Microsoft.VisualBasic.Imaging.AVIMedia 1.0.9762.11310 |
20 | |
| Encoder | A simple VB.NET AVI encoder > https://github.com/Sebmaster/avi.js | Microsoft.VisualBasic.Imaging.AVIMedia 1.0.9753.4776 |
6 |
| Encoder | A simple VB.NET AVI encoder > https://github.com/Sebmaster/avi.js | Microsoft.VisualBasic.Imaging.AVIMedia 1.0.9762.11310 |
6 |
| StreamTypes | 流的类型 | Microsoft.VisualBasic.Imaging.AVIMedia 1.0.9753.4776 |
8 |
| StreamTypes | 流的类型 | Microsoft.VisualBasic.Imaging.AVIMedia 1.0.9762.11310 |
8 |
Microsoft.VisualBasic.Imaging.BitmapImage
| Type | Summary | Package | Members |
|---|---|---|---|
| BitmapBuffer | Unsafe memory pointer of the Bitmap data buffer. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
57 |
| BitmapBuffer | Unsafe memory pointer of the Bitmap data buffer. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
57 |
| BitmapChannels | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 | |
| BitmapChannels | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 | |
| BitmapReader | a bitmap image data reader for help huge scientific image data processing. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
21 |
| BitmapReader | a bitmap image data reader for help huge scientific image data processing. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
21 |
| BitmapResizer | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
6 | |
| BitmapResizer | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
6 | |
| BitmapScale | Grayscale and binarization extensions | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
14 |
| BitmapScale | Grayscale and binarization extensions | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
14 |
| BitmapTools | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 | |
| BitmapTools | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 | |
| RTCP | .NET Implement of Real-time Contrast Preserving Decolorization | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| RTCP | .NET Implement of Real-time Contrast Preserving Decolorization | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
| SaveGdiBitmap | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 | |
| SaveGdiBitmap | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 |
Microsoft.VisualBasic.Imaging.BitmapImage.BitmapScale
| Type | Summary | Package | Members |
|---|---|---|---|
| PixelScanPointer | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 | |
| PixelScanPointer | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
Microsoft.VisualBasic.Imaging.BitmapImage.FileStream
| Type | Summary | Package | Members |
|---|---|---|---|
| Bitmap | A in-memory bitmap image model | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
15 |
| Bitmap | A in-memory bitmap image model | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
15 |
| BitmapFileHeader | Keep proper byte layout in memory | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
11 |
| BitmapFileHeader | Keep proper byte layout in memory | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
11 |
| BitmapFileHelper | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 | |
| BitmapFileHelper | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 | |
| BitmapInfoHeader | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
17 | |
| BitmapInfoHeader | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
17 | |
| BitmapInfoHeaderRGBA | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
8 | |
| BitmapInfoHeaderRGBA | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
8 | |
| BytesPerPixelEnum | Number of bytes for specific Pixel format. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| BytesPerPixelEnum | Number of bytes for specific Pixel format. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
Microsoft.VisualBasic.Imaging.d3js
| Type | Summary | Package | Members |
|---|---|---|---|
| ModuleAPI | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
4 | |
| ModuleAPI | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
3 | |
| ScaleChromatic | d3-scale-chromatic > https://github.com/d3/d3-scale-chromatic This module provides sequential, diverging and categorical color schemes derived from Cynthia A. | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
4 |
| ScaleChromatic | d3-scale-chromatic > https://github.com/d3/d3-scale-chromatic This module provides sequential, diverging and categorical color schemes derived from Cynthia A. | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
4 |
Microsoft.VisualBasic.Imaging.d3js.Layout
| Type | Summary | Package | Members |
|---|---|---|---|
| Anchor | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
6 | |
| Anchor | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
6 | |
| DataLabeler | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
10 | |
| DataLabeler | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
10 | |
| Forcedirected | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
7 | |
| Forcedirected | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
7 | |
| Label | a text label object | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
12 |
| Label | a text label object | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
12 |
| LabelCollisionSolver | 用于解决文本标签重叠问题的力导向迭代算法模块 | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
1 |
| LabelCollisionSolver | 用于解决文本标签重叠问题的力导向迭代算法模块 | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
1 |
| Labeler | A D3 plug-in for automatic label placement using simulated annealing that easily incorporates into existing D3 code, with syntax mirroring other D3 layouts. | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
13 |
| Labeler | A D3 plug-in for automatic label placement using simulated annealing that easily incorporates into existing D3 code, with syntax mirroring other D3 layouts. | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
13 |
Microsoft.VisualBasic.Imaging.d3js.scale
| Type | Summary | Package | Members |
|---|---|---|---|
| Extensions | + Continuous scales map a continuous, quantitative input domain to a continuous output range. | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
4 |
| Extensions | + Continuous scales map a continuous, quantitative input domain to a continuous output range. | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
2 |
| IScale | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
7 | |
| IScale | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
4 | |
| LinearScale | 连续性的映射 | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
15 |
| LinearScale | 连续性的映射 | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
10 |
| MapperTypes | 从graphics的属性值到相应的图形属性(大小,颜色,字体,形状)的映射操作类型 | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
6 |
| MapperTypes | 从graphics的属性值到相应的图形属性(大小,颜色,字体,形状)的映射操作类型 | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
6 |
| OrdinalScale | Unlike continuous scales, ordinal scales have a discrete domain and range. | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
12 |
| OrdinalScale | Unlike continuous scales, ordinal scales have a discrete domain and range. | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
6 |
| Scaler | data scaler and transform | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
8 |
| Scaler | data scaler and transform | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
8 |
Microsoft.VisualBasic.Imaging.d3js.SVG.CSS
| Type | Summary | Package | Members |
|---|---|---|---|
| DirectedForceGraph | Style generator for the value of CSS.style | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
4 |
| DirectedForceGraph | Style generator for the value of CSS.style | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
4 |
Microsoft.VisualBasic.Imaging.Drawing2D
| Type | Summary | Package | Members |
|---|---|---|---|
| Extensions | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
11 | |
| Extensions | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
8 | |
| g | Data plots graphics engine common abstract. | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
13 |
| g | Data plots graphics engine common abstract. | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
13 |
| GraphicsRegion | 绘图区域的参数 | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
9 |
| GraphicsRegion | 绘图区域的参数 | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
9 |
| IPlot | An abstract function interface for make graphics plot | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
0 |
| IPlot | An abstract function interface for make graphics plot | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
0 |
| Path2D | 通过模拟HTML之中的svg path的绘图操作来将html svg path转换为gdi+ path对象 | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
14 |
| Path2D | 通过模拟HTML之中的svg path的绘图操作来将html svg path转换为gdi+ path对象 | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
4 |
| PolarGraphics2D | 以极坐标为主的作图系统模块 | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
8 |
| PolarGraphics2D | 以极坐标为主的作图系统模块 | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
6 |
| PrinterDimension | the size definition of the printer, usually apply for the PDF output | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
15 |
| PrinterDimension | the size definition of the printer, usually apply for the PDF output | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
15 |
| RenderShape | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
7 | |
| RenderShape | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
2 | |
| Shadow | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
8 | |
| Shadow | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
5 |
Microsoft.VisualBasic.Imaging.Drawing2D.Colors
| Type | Summary | Package | Members |
|---|---|---|---|
| CategoryPalettes | color palette for category data. | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
47 |
| CategoryPalettes | color palette for category data. | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
47 |
| ColorBrewer | Colorbrewer is a nice application for creating color schemes. | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
49 |
| ColorBrewer | Colorbrewer is a nice application for creating color schemes. | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
49 |
| ColorMapLegend | a continues numeric scaler legend bar | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
17 |
| ColorMapLegend | a continues numeric scaler legend bar | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
1 |
| CustomDesigns | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
12 | |
| CustomDesigns | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
12 | |
| Designer | Generate color sequence | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
23 |
| Designer | Generate color sequence | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
23 |
| DesignerExpression | vbnet lighter(term, percentage) darker(term, percentage) alpha(term, percentage) percentage = [0, 1] reverse(term) skip(term, n) take(term, n) | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
5 |
| DesignerExpression | vbnet lighter(term, percentage) darker(term, percentage) alpha(term, percentage) percentage = [0, 1] reverse(term) skip(term, n) take(term, n) | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
0 |
| DesignerTerms | Color name terms | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
26 |
| DesignerTerms | Color name terms | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
26 |
| Legends | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
5 | |
| Legends | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
4 | |
| ScalerPalette | color set for visualize linear scale data color mapping | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
46 |
| ScalerPalette | color set for visualize linear scale data color mapping | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
46 |
| Viridis | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
8 | |
| Viridis | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
8 |
Microsoft.VisualBasic.Imaging.Drawing2D.Colors.ColorBrewer
| Type | Summary | Package | Members |
|---|---|---|---|
| DivergingSchemes | Diverging schemes put equal emphasis on mid-range critical values and extremes at both ends of the data range. | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
81 |
| DivergingSchemes | Diverging schemes put equal emphasis on mid-range critical values and extremes at both ends of the data range. | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
81 |
| QualitativeSchemes | Qualitative schemes do not imply magnitude differences between legend classes, and hues are used to create the primary visual differences between classes. | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
58 |
| QualitativeSchemes | Qualitative schemes do not imply magnitude differences between legend classes, and hues are used to create the primary visual differences between classes. | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
58 |
| SequentialSchemes | Sequential schemes are suited to ordered data that progress from low to high. | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
125 |
| SequentialSchemes | Sequential schemes are suited to ordered data that progress from low to high. | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
125 |
Microsoft.VisualBasic.Imaging.Drawing2D.Colors.OfficeAccent
| Type | Summary | Package | Members |
|---|---|---|---|
| OfficeColorThemes | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
8 | |
| OfficeColorThemes | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
2 | |
| srgbClr | 颜色值 | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
3 |
| srgbClr | 颜色值 | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
3 |
Microsoft.VisualBasic.Imaging.Drawing2D.Colors.Scaler
| Type | Summary | Package | Members |
|---|---|---|---|
| CategoryColorProfile | mapping term to color, used for category group plot | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
7 |
| CategoryColorProfile | mapping term to color, used for category group plot | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
6 |
| ColorHeightMap | Map a color to a single numeric value | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
4 |
| ColorHeightMap | Map a color to a single numeric value | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
3 |
| ColorIndex | map colors and the numeric range | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
2 |
| ColorIndex | map colors and the numeric range | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
0 |
| ColorProfile | A color collection | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
5 |
| ColorProfile | A color collection | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
4 |
| ColorRange | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
4 | |
| ColorRange | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
1 | |
| ValueScaleColorProfile | scale(color_schema_term_name), apply for the heatmap plot | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
9 |
| ValueScaleColorProfile | scale(color_schema_term_name), apply for the heatmap plot | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
7 |
Microsoft.VisualBasic.Imaging.Drawing2D.Extensions
Microsoft.VisualBasic.Imaging.Drawing2D.HeatMap
| Type | Summary | Package | Members |
|---|---|---|---|
| HeatMapBrushes | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
4 | |
| HeatMapBrushes | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
2 | |
| HeatMapParameters | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
10 | |
| HeatMapParameters | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
4 | |
| HeatMapRaster | A helper class or produce heatmap raster matrix data | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
12 |
| HeatMapRaster | A helper class or produce heatmap raster matrix data | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
11 |
| PixelData | A pixel spot object associate [x,y] with intensity scale data | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
8 |
| PixelData | A pixel spot object associate [x,y] with intensity scale data | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
1 |
| PixelRender | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
5 | |
| PixelRender | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
2 | |
| RasterMatrix | matrix helper for do heatmap rendering | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
4 |
| RasterMatrix | matrix helper for do heatmap rendering | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
4 |
| RasterScaler | do image size scaling | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
6 |
| RasterScaler | do image size scaling | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
5 |
| ReinhardColorNormalization | The Reinhard Color Normalization algorithm, developed by Reinhard et al., is a classical method for color transfer between images. | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
1 |
| ReinhardColorNormalization | The Reinhard Color Normalization algorithm, developed by Reinhard et al., is a classical method for color transfer between images. | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
0 |
Microsoft.VisualBasic.Imaging.Drawing2D.HeatMap.hqx
| Type | Summary | Package | Members |
|---|---|---|---|
| Hqx_2x | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
2 | |
| Hqx_2x | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
2 | |
| Hqx_3x | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
2 | |
| Hqx_3x | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
2 | |
| Hqx_4x | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
3 | |
| Hqx_4x | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
3 | |
| HqxScaling | + wikipedia: https://en.wikipedia.org/wiki/Hqx + Tamschi/hqxSharp: hqxSharp is a C# port of hqx, a fast, high-quality magnification filter designed for pixel art. | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
1 |
| HqxScaling | + wikipedia: https://en.wikipedia.org/wiki/Hqx + Tamschi/hqxSharp: hqxSharp is a C# port of hqx, a fast, high-quality magnification filter designed for pixel art. | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
1 |
| Interpolation | Helper class to interpolate colors. | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
1 |
| Interpolation | Helper class to interpolate colors. | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
1 |
| RgbYuv | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
4 | |
| RgbYuv | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
4 |
Microsoft.VisualBasic.Imaging.Drawing2D.Math2D
| Type | Summary | Package | Members |
|---|---|---|---|
| CanvasScaler | the scaler of the canvas size and rectangle | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
2 |
| CanvasScaler | the scaler of the canvas size and rectangle | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
2 |
| HullPolygonDraw | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
1 | |
| HullPolygonDraw | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
1 |
Microsoft.VisualBasic.Imaging.Drawing2D.Math2D.ConcaveHull
| Type | Summary | Package | Members |
|---|---|---|---|
| BallConcave | + http://www.tuicool.com/articles/iUvMjm + http://www.ian-ko.com/ET_GeoWizards/UserGuide/concaveHull.htm | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
9 |
| BallConcave | + http://www.tuicool.com/articles/iUvMjm + http://www.ian-ko.com/ET_GeoWizards/UserGuide/concaveHull.htm | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
6 |
| DelaunayTriangulation | http://www.tuicool.com/articles/iUvMjm | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
4 |
| DelaunayTriangulation | http://www.tuicool.com/articles/iUvMjm | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
4 |
| Extensions | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
1 | |
| Extensions | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
1 | |
| Triangle | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
7 | |
| Triangle | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
7 | |
| TriangleIndex | the 3d point index | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
4 |
| TriangleIndex | the 3d point index | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
4 |
Microsoft.VisualBasic.Imaging.Drawing2D.Math2D.ConvexHull
| Type | Summary | Package | Members |
|---|---|---|---|
| ConvexHull | In mathematics, the convex hull or convex envelope of a set X of points in the Euclidean plane or in a Euclidean space (or, more generally, in an affine space over the reals) is… | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
5 |
| ConvexHull | In mathematics, the convex hull or convex envelope of a set X of points in the Euclidean plane or in a Euclidean space (or, more generally, in an affine space over the reals) is… | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
5 |
Microsoft.VisualBasic.Imaging.Drawing2D.Math2D.DelaunayVoronoi
| Type | Summary | Package | Members |
|---|---|---|---|
| Edge | The line segment connecting the two Sites is part of the Delaunay triangulation The line segment connecting the two Vertices is part of the Voronoi diagram | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
24 |
| Edge | The line segment connecting the two Sites is part of the Delaunay triangulation The line segment connecting the two Vertices is part of the Voronoi diagram | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
7 |
| Voronoi | https://github.com/jfg8/csDelaunay | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
14 |
| Voronoi | https://github.com/jfg8/csDelaunay | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
4 |
Microsoft.VisualBasic.Imaging.Drawing2D.Math2D.MarchingSquares
| Type | Summary | Package | Members |
|---|---|---|---|
| ASCIIPrinter | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
2 | |
| ASCIIPrinter | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
2 | |
| ContourLayer | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
7 | |
| ContourLayer | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
7 | |
| ContourTracing | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
7 | |
| ContourTracing | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
7 | |
| GeneralPath | a collection of the polygon data | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
12 |
| GeneralPath | a collection of the polygon data | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
7 |
| IsoCell | IsoCell is used to describe properties of data cells, in particular, indicating whether neighbors are above or below a threshold value. | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
11 |
| IsoCell | IsoCell is used to describe properties of data cells, in particular, indicating whether neighbors are above or below a threshold value. | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
11 |
| MapMatrix | 将稀疏矩阵数据转换为稠密矩阵数据 | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
9 |
| MapMatrix | 将稀疏矩阵数据转换为稠密矩阵数据 | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
9 |
| MarchingSquares | Algorithm taken from: http://en.wikipedia.org/wiki/Marching_squares . | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
9 |
| MarchingSquares | Algorithm taken from: http://en.wikipedia.org/wiki/Marching_squares . | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
9 |
| MeasureData | 测量数据 | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
5 |
| MeasureData | 测量数据 | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
4 |
Microsoft.VisualBasic.Imaging.Drawing2D.Math2D.PolylineSimplify
| Type | Summary | Package | Members |
|---|---|---|---|
| ISimplifyUtility | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
1 | |
| ISimplifyUtility | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
1 | |
| SimplifyUtility | Simplification of a 2D-polyline. | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
2 |
| SimplifyUtility | Simplification of a 2D-polyline. | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
2 |
| SimplifyUtility3D | Simplification of a 3D-polyline. | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
3 |
| SimplifyUtility3D | Simplification of a 3D-polyline. | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
3 |
Microsoft.VisualBasic.Imaging.Drawing2D.Shapes
| Type | Summary | Package | Members |
|---|---|---|---|
| Arrow | 按照任意角度旋转的箭头对象 | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
12 |
| Arrow | 按照任意角度旋转的箭头对象 | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
12 |
| Box | rectangle model | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
5 |
| Box | rectangle model | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
5 |
| Circle | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
8 | |
| Circle | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
2 | |
| Hexagon | 六边形 | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
0 |
| Hexagon | 六边形 | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
0 |
| Line | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
5 | |
| Line | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
5 | |
| Pentacle | 五角星 | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
1 |
| Pentacle | 五角星 | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
1 |
| RoundRect | 绘制圆角矩形 | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
1 |
| RoundRect | 绘制圆角矩形 | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
1 |
| Shape | An abstract shape element with layout information data. | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
11 |
| Shape | An abstract shape element with layout information data. | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
10 |
| Triangle | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
8 | |
| Triangle | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
8 |
Microsoft.VisualBasic.Imaging.Drawing2D.Text
| Type | Summary | Package | Members |
|---|---|---|---|
| HTMLRender | 进行简单的HTML片段的渲染 | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
3 |
| HTMLRender | 进行简单的HTML片段的渲染 | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
2 |
| WordWrap | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
3 | |
| WordWrap | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
2 |
Microsoft.VisualBasic.Imaging.Drawing2D.Text.ASCIIArt
| Type | Summary | Package | Members |
|---|---|---|---|
| HelperMethods | Program that converts images to ASCII art images > https://github.com/juangallostra/Image2ASCII | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
4 |
| HelperMethods | Program that converts images to ASCII art images > https://github.com/juangallostra/Image2ASCII | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
2 |
| WeightedChar | a pixel char | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
4 |
| WeightedChar | a pixel char | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
2 |
Microsoft.VisualBasic.Imaging.Drawing2D.Text.Nudge
| Type | Summary | Package | Members |
|---|---|---|---|
| Adjustment | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
1 | |
| Adjustment | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
1 | |
| CloudOfTextRectangle | class to represent an esemble of TextRectangle object. | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
10 |
| CloudOfTextRectangle | class to represent an esemble of TextRectangle object. | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
10 |
| ConflictIndexTuple | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
5 | |
| ConflictIndexTuple | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
5 | |
| GraphicsTextHandle | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
1 | |
| GraphicsTextHandle | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
1 | |
| PlateRectangle | class of the geometrical figure of the plate rectangle, i.e the sides Of the rectangle are collinear With the canonical basis vectors (1,0) And (0,1). | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
7 |
| PlateRectangle | class of the geometrical figure of the plate rectangle, i.e the sides Of the rectangle are collinear With the canonical basis vectors (1,0) And (0,1). | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
7 |
| SimpleNudge | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
4 | |
| SimpleNudge | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
4 | |
| TextRectangle | class of particular rectangle in the context of pyplot. | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
8 |
| TextRectangle | class of particular rectangle in the context of pyplot. | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
8 |
Microsoft.VisualBasic.Imaging.Drawing3D
| Type | Summary | Package | Members |
|---|---|---|---|
| Camera | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
21 | |
| Camera | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
15 | |
| DrawGraphics | 3D plot for Gdidevice,由于是需要将图像显示到WinFom控件上面,所以在这里要求的是gdi+的图形驱动程序 | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
3 |
| DrawGraphics | 3D plot for Gdidevice,由于是需要将图像显示到WinFom控件上面,所以在这里要求的是gdi+的图形驱动程序 | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
0 |
| IPointCloud | A 3D spatial heatmap point, 3d point [x,y,z] combine with the color scaler(or heatmap) data | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
1 |
| IPointCloud | A 3D spatial heatmap point, 3d point [x,y,z] combine with the color scaler(or heatmap) data | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
0 |
| IsometricEngine | Isometric 3d graphics painter | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
11 |
| IsometricEngine | Isometric 3d graphics painter | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
7 |
| Light | Surface的表面光照的计算 | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
5 |
| Light | Surface的表面光照的计算 | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
5 |
| Model2D | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
4 | |
| Model2D | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
4 | |
| PainterAlgorithm | PAINTERS ALGORITHM provider | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
6 |
| PainterAlgorithm | PAINTERS ALGORITHM provider | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
6 |
| Point3D | Defines the Point3D class that represents points in 3D space with Double precise. | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
33 |
| Point3D | Defines the Point3D class that represents points in 3D space with Double precise. | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
21 |
| Surface | Object model that using for the 3D graphics. | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
5 |
| Surface | Object model that using for the 3D graphics. | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
2 |
Microsoft.VisualBasic.Imaging.Drawing3D.Math3D
| Type | Summary | Package | Members |
|---|---|---|---|
| DistanceFieldSampler | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
7 | |
| DistanceFieldSampler | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
5 | |
| Matrix | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
3 | |
| Matrix | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
1 | |
| MaxPlainCameraView | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
5 | |
| MaxPlainCameraView | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
5 | |
| Polyhedron | Robust point-in-polyhedron test. | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
4 |
| Polyhedron | Robust point-in-polyhedron test. | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
4 |
| PolyhedronMath | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
4 | |
| PolyhedronMath | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
4 | |
| Projection | 3D coordinate transformation tools. | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
7 |
| Projection | 3D coordinate transformation tools. | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
4 |
| Transformation | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
11 | |
| Transformation | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
8 | |
| Vector3D | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
11 | |
| Vector3D | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
3 | |
| VectorMath | helper for unity function | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
5 |
| VectorMath | helper for unity function | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
0 |
Microsoft.VisualBasic.Imaging.Drawing3D.Math3D.DistanceFieldSampler
| Type | Summary | Package | Members |
|---|---|---|---|
| Edge | A pair of vertices that define a line segment. | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
2 |
| Edge | A pair of vertices that define a line segment. | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
2 |
| Vertex | Represents a point along a path. | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
6 |
| Vertex | Represents a point along a path. | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
3 |
Microsoft.VisualBasic.Imaging.Drawing3D.Models
Microsoft.VisualBasic.Imaging.Drawing3D.Models.Isometric
| Type | Summary | Package | Members |
|---|---|---|---|
| Path3D | a collection of the 3d point consist a graphics path | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
19 |
| Path3D | a collection of the 3d point consist a graphics path | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
7 |
| Shape3D | A collection of the path3D data. | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
16 |
| Shape3D | A collection of the path3D data. | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
4 |
Microsoft.VisualBasic.Imaging.Drawing3D.Models.Isometric.Paths
| Type | Summary | Package | Members |
|---|---|---|---|
| Arc | 圆弧 | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
1 |
| Arc | 圆弧 | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
1 |
| Circle | Created by fabianterhorst on 01.04.17. | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
1 |
| Circle | Created by fabianterhorst on 01.04.17. | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
1 |
| Rectangle | Created by fabianterhorst on 01.04.17. | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
0 |
| Rectangle | Created by fabianterhorst on 01.04.17. | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
0 |
| Star | Created by fabianterhorst on 01.04.17. | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
0 |
| Star | Created by fabianterhorst on 01.04.17. | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
0 |
Microsoft.VisualBasic.Imaging.Drawing3D.Models.Isometric.Shapes
| Type | Summary | Package | Members |
|---|---|---|---|
| Cylinder | Created by fabianterhorst on 01.04.17. | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
0 |
| Cylinder | Created by fabianterhorst on 01.04.17. | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
0 |
| Knot | 彭罗斯三角三维模型 | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
1 |
| Knot | 彭罗斯三角三维模型 | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
1 |
| Octahedron | Created by fabianterhorst on 02.04.17. | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
0 |
| Octahedron | Created by fabianterhorst on 02.04.17. | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
0 |
| Pie | a 3d pie piece | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
0 |
| Pie | a 3d pie piece | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
0 |
| Prism | Created by fabianterhorst on 01.04.17. | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
2 |
| Prism | Created by fabianterhorst on 01.04.17. | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
2 |
| Pyramid | Created by fabianterhorst on 02.04.17. | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
0 |
| Pyramid | Created by fabianterhorst on 02.04.17. | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
0 |
| Stairs | Created by fabianterhorst on 02.04.17. | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
0 |
| Stairs | Created by fabianterhorst on 02.04.17. | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
0 |
Microsoft.VisualBasic.Imaging.Drawing3D.PainterAlgorithm
Microsoft.VisualBasic.Imaging.Driver
| Type | Summary | Package | Members |
|---|---|---|---|
| DeviceDescription | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
2 | |
| DeviceDescription | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
2 | |
| DeviceInterop | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 | |
| DeviceInterop | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 | |
| DriverLoad | Helper module for create the System.Drawing.Graphics object liked canvas object | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
11 |
| DriverLoad | Helper module for create the System.Drawing.Graphics object liked canvas object | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
11 |
| Drivers | The imaging graphics engine list for IGraphics | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
12 |
| Drivers | The imaging graphics engine list for IGraphics | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
12 |
| GdiRasterGraphics | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 | |
| GdiRasterGraphics | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 | |
| GraphicsData | gdi+ images: Image, Bitmap / SVG image: SvgDocument | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
2 |
| GraphicsData | gdi+ images: Image, Bitmap / SVG image: SvgDocument | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
2 |
| IElementCommentWriter | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
1 | |
| IElementCommentWriter | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
1 | |
| IGraphicsData | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
8 | |
| IGraphicsData | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
8 | |
| ImageData | Get image value from ImageData.Image | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
4 |
| ImageData | Get image value from ImageData.Image | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
4 |
| ImageDriver | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
3 | |
| ImageDriver | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
2 | |
| ImageSynthesis | Makes the DrawImage function compatible with old gdi+ interface | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
5 |
| ImageSynthesis | Makes the DrawImage function compatible with old gdi+ interface | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
5 |
| InternalCanvas | 可以借助这个画布对象创建多图层的绘图操作 | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
1 |
| InternalCanvas | 可以借助这个画布对象创建多图层的绘图操作 | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
1 |
| SVGData | SVG graphic data | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
6 |
| SVGData | SVG graphic data | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
6 |
Microsoft.VisualBasic.Imaging.Driver.CSS
| Type | Summary | Package | Members |
|---|---|---|---|
| RuntimeInvoker | 因为绘图的函数一般有很多的CSS样式参数用来调整图形上面的元素的样式, 通过命令行传递这么多的参数不现实,故而在这里通过CSS文件加反射的形式 来传递这些绘图参数,并且同时也保留对函数式编程的兼容性 | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
4 |
| RuntimeInvoker | 因为绘图的函数一般有很多的CSS样式参数用来调整图形上面的元素的样式, 通过命令行传递这么多的参数不现实,故而在这里通过CSS文件加反射的形式 来传递这些绘图参数,并且同时也保留对函数式编程的兼容性 | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
4 |
| Types | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
14 | |
| Types | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
14 |
Microsoft.VisualBasic.Imaging.Filters
| Type | Summary | Package | Members |
|---|---|---|---|
| GaussBlur | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
1 | |
| GaussBlur | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
1 | |
| GaussianSmooth | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
3 | |
| GaussianSmooth | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
3 | |
| ImageStrech | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
3 | |
| ImageStrech | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
3 | |
| Matrix | the bitmap image gauss smooth helper https://zhuanlan.zhihu.com/p/73363439 | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
4 |
| Matrix | the bitmap image gauss smooth helper https://zhuanlan.zhihu.com/p/73363439 | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
0 |
| Matrix2DFiltersAlgorithm | https://zhuanlan.zhihu.com/p/73421455 | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
0 |
| Matrix2DFiltersAlgorithm | https://zhuanlan.zhihu.com/p/73421455 | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
0 |
| TabulateClipScaler | processing of the grayscale/heatmap scale image | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
3 |
| TabulateClipScaler | processing of the grayscale/heatmap scale image | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
2 |
| Thresholding | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
6 | |
| Thresholding | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
6 |
Microsoft.VisualBasic.Imaging.Landscape.Collada
| Type | Summary | Package | Members |
|---|---|---|---|
| ColladaParser | COLLADA (.dae) 文件几何数据解析器 | Microsoft.VisualBasic.Imaging.Landscape 1.0.9753.4776 |
5 |
| ColladaParser | COLLADA (.dae) 文件几何数据解析器 | Microsoft.VisualBasic.Imaging.Landscape 1.0.9762.11310 |
5 |
| GeometrySource | 单个 <source> 元素的数据 | Microsoft.VisualBasic.Imaging.Landscape 1.0.9753.4776 |
0 |
| GeometrySource | 单个 <source> 元素的数据 | Microsoft.VisualBasic.Imaging.Landscape 1.0.9762.11310 |
0 |
Microsoft.VisualBasic.Imaging.Landscape.Data
| Type | Summary | Package | Members |
|---|---|---|---|
| ModelFormat | 支持的 3D 模型文件格式枚举 | Microsoft.VisualBasic.Imaging.Landscape 1.0.9753.4776 |
16 |
| ModelFormat | 支持的 3D 模型文件格式枚举 | Microsoft.VisualBasic.Imaging.Landscape 1.0.9762.11310 |
16 |
| ModelLoader | 三维模型统一加载器。 根据文件扩展名自动检测格式,将任意支持的 3D 模型文件 转换为统一的 SceneModel 对象,并可直接对接 Voxelizer.Voxelize()) 进行 CFD 体素化。 ## 支持的格式 - STL (.stl) — ASCII 和 Binary 格式自动检测 - glTF (.gltf) — JSO… | Microsoft.VisualBasic.Imaging.Landscape 1.0.9753.4776 |
4 |
| ModelLoader | 三维模型统一加载器。 根据文件扩展名自动检测格式,将任意支持的 3D 模型文件 转换为统一的 SceneModel 对象,并可直接对接 Voxelizer.Voxelize()) 进行 CFD 体素化。 ## 支持的格式 - STL (.stl) — ASCII 和 Binary 格式自动检测 - glTF (.gltf) — JSO… | Microsoft.VisualBasic.Imaging.Landscape 1.0.9762.11310 |
4 |
| SceneModel | The data model of the landscape 3D model. | Microsoft.VisualBasic.Imaging.Landscape 1.0.9753.4776 |
2 |
| SceneModel | The data model of the landscape 3D model. | Microsoft.VisualBasic.Imaging.Landscape 1.0.9762.11310 |
2 |
| Surface | 方便将3D模型保存与XML文件之中的数据模型对象 | Microsoft.VisualBasic.Imaging.Landscape 1.0.9753.4776 |
3 |
| Surface | 方便将3D模型保存与XML文件之中的数据模型对象 | Microsoft.VisualBasic.Imaging.Landscape 1.0.9762.11310 |
3 |
| Vertex | Microsoft.VisualBasic.Imaging.Landscape 1.0.9753.4776 |
1 | |
| Vertex | Microsoft.VisualBasic.Imaging.Landscape 1.0.9762.11310 |
1 |
Microsoft.VisualBasic.Imaging.Landscape.Gltf
| Type | Summary | Package | Members |
|---|---|---|---|
| Accessor | 访问器:描述如何从 BufferView 中读取类型化数组数据 | Microsoft.VisualBasic.Imaging.Landscape 1.0.9753.4776 |
9 |
| Accessor | 访问器:描述如何从 BufferView 中读取类型化数组数据 | Microsoft.VisualBasic.Imaging.Landscape 1.0.9762.11310 |
9 |
| AssetInfo | 资产描述信息 | Microsoft.VisualBasic.Imaging.Landscape 1.0.9753.4776 |
2 |
| AssetInfo | 资产描述信息 | Microsoft.VisualBasic.Imaging.Landscape 1.0.9762.11310 |
2 |
| BufferView | 缓冲区视图:描述 Buffer 中的一个子区域 | Microsoft.VisualBasic.Imaging.Landscape 1.0.9753.4776 |
5 |
| BufferView | 缓冲区视图:描述 Buffer 中的一个子区域 | Microsoft.VisualBasic.Imaging.Landscape 1.0.9762.11310 |
5 |
| GlbReader | GLB (GL Transmission Format Binary) 二进制格式 3D 模型文件解析器 GLB 是 glTF 的二进制容器格式,将所有 JSON 和二进制数据打包在单个文件中。 GLB 文件结构: ┌──────────────────────────────┐ │ Header (12 bytes) │… | Microsoft.VisualBasic.Imaging.Landscape 1.0.9753.4776 |
3 |
| GlbReader | GLB (GL Transmission Format Binary) 二进制格式 3D 模型文件解析器 GLB 是 glTF 的二进制容器格式,将所有 JSON 和二进制数据打包在单个文件中。 GLB 文件结构: ┌──────────────────────────────┐ │ Header (12 bytes) │… | Microsoft.VisualBasic.Imaging.Landscape 1.0.9762.11310 |
3 |
| GltfBuffer | 缓冲区:存储实际的二进制数据 | Microsoft.VisualBasic.Imaging.Landscape 1.0.9753.4776 |
2 |
| GltfBuffer | 缓冲区:存储实际的二进制数据 | Microsoft.VisualBasic.Imaging.Landscape 1.0.9762.11310 |
2 |
| GltfComponentType | 访问器组件类型常量 | Microsoft.VisualBasic.Imaging.Landscape 1.0.9753.4776 |
0 |
| GltfComponentType | 访问器组件类型常量 | Microsoft.VisualBasic.Imaging.Landscape 1.0.9762.11310 |
0 |
| GltfMaterial | 材质定义 | Microsoft.VisualBasic.Imaging.Landscape 1.0.9753.4776 |
2 |
| GltfMaterial | 材质定义 | Microsoft.VisualBasic.Imaging.Landscape 1.0.9762.11310 |
2 |
| GltfMesh | 网格定义:包含多个图元 (Primitive) | Microsoft.VisualBasic.Imaging.Landscape 1.0.9753.4776 |
2 |
| GltfMesh | 网格定义:包含多个图元 (Primitive) | Microsoft.VisualBasic.Imaging.Landscape 1.0.9762.11310 |
2 |
| GltfPrimitiveMode | 图元渲染模式常量 | Microsoft.VisualBasic.Imaging.Landscape 1.0.9753.4776 |
0 |
| GltfPrimitiveMode | 图元渲染模式常量 | Microsoft.VisualBasic.Imaging.Landscape 1.0.9762.11310 |
0 |
| GltfReader | glTF (.gltf) 文本格式 3D 模型文件解析器 glTF (GL Transmission Format) 是 Khronos Group 制定的开放标准 3D 场景格式。 文本格式 (.gltf) 使用 JSON 描述场景结构,外部二进制文件 (.bin) 存储顶点数据。 | Microsoft.VisualBasic.Imaging.Landscape 1.0.9753.4776 |
3 |
| GltfReader | glTF (.gltf) 文本格式 3D 模型文件解析器 glTF (GL Transmission Format) 是 Khronos Group 制定的开放标准 3D 场景格式。 文本格式 (.gltf) 使用 JSON 描述场景结构,外部二进制文件 (.bin) 存储顶点数据。 | Microsoft.VisualBasic.Imaging.Landscape 1.0.9762.11310 |
3 |
| GltfRoot | glTF JSON 根对象,对应 glTF 2.0 规范的顶层结构 | Microsoft.VisualBasic.Imaging.Landscape 1.0.9753.4776 |
9 |
| GltfRoot | glTF JSON 根对象,对应 glTF 2.0 规范的顶层结构 | Microsoft.VisualBasic.Imaging.Landscape 1.0.9762.11310 |
9 |
| ModelBuilder | glTF / GLB 共享的 SceneModel 构建逻辑。 负责将已加载的 GltfRoot JSON 模型和二进制缓冲区数组转换为 Data.SceneModel。 | Microsoft.VisualBasic.Imaging.Landscape 1.0.9753.4776 |
11 |
| ModelBuilder | glTF / GLB 共享的 SceneModel 构建逻辑。 负责将已加载的 GltfRoot JSON 模型和二进制缓冲区数组转换为 Data.SceneModel。 | Microsoft.VisualBasic.Imaging.Landscape 1.0.9762.11310 |
11 |
| Node | 场景图中的节点,可包含网格引用、变换矩阵和子节点 | Microsoft.VisualBasic.Imaging.Landscape 1.0.9753.4776 |
7 |
| Node | 场景图中的节点,可包含网格引用、变换矩阵和子节点 | Microsoft.VisualBasic.Imaging.Landscape 1.0.9762.11310 |
7 |
| PbrMetallicRoughness | PBR 金属粗糙度材质属性 | Microsoft.VisualBasic.Imaging.Landscape 1.0.9753.4776 |
1 |
| PbrMetallicRoughness | PBR 金属粗糙度材质属性 | Microsoft.VisualBasic.Imaging.Landscape 1.0.9762.11310 |
1 |
| Primitive | 图元:描述一个可渲染的几何体单元 | Microsoft.VisualBasic.Imaging.Landscape 1.0.9753.4776 |
4 |
| Primitive | 图元:描述一个可渲染的几何体单元 | Microsoft.VisualBasic.Imaging.Landscape 1.0.9762.11310 |
4 |
| Scene | 场景定义:包含一组根节点索引 | Microsoft.VisualBasic.Imaging.Landscape 1.0.9753.4776 |
2 |
| Scene | 场景定义:包含一组根节点索引 | Microsoft.VisualBasic.Imaging.Landscape 1.0.9762.11310 |
2 |
Microsoft.VisualBasic.Imaging.Landscape.Max3DS
| Type | Summary | Package | Members |
|---|---|---|---|
| Chunk3DS | 3DS 文件块(Chunk)结构。 3DS 格式使用类似 RIFF/IFF 的分块存储: - 2 字节 Chunk ID (UInt16) - 4 字节 Chunk 长度 (UInt32),包含自身这 6 字节头部 - N 字节数据 | Microsoft.VisualBasic.Imaging.Landscape 1.0.9753.4776 |
5 |
| Chunk3DS | 3DS 文件块(Chunk)结构。 3DS 格式使用类似 RIFF/IFF 的分块存储: - 2 字节 Chunk ID (UInt16) - 4 字节 Chunk 长度 (UInt32),包含自身这 6 字节头部 - N 字节数据 | Microsoft.VisualBasic.Imaging.Landscape 1.0.9762.11310 |
5 |
| Material3DS | 3DS 材质定义。 | Microsoft.VisualBasic.Imaging.Landscape 1.0.9753.4776 |
4 |
| Material3DS | 3DS 材质定义。 | Microsoft.VisualBasic.Imaging.Landscape 1.0.9762.11310 |
4 |
| Max3DSParser | 3DS (3D-Studio) 三维模型文件解析器。 3DS 是 Autodesk 3ds Max 使用的旧版标准交换格式。 采用分块(Chunk)存储结构,支持网格几何数据、材质定义、 纹理坐标以及局部变换矩阵的解析。 注意:.max 是 3ds Max 的专有私有格式(无公开文档,无法可靠解析), 本模块解析的是 .3ds 格式文件。 | Microsoft.VisualBasic.Imaging.Landscape 1.0.9753.4776 |
22 |
| Max3DSParser | 3DS (3D-Studio) 三维模型文件解析器。 3DS 是 Autodesk 3ds Max 使用的旧版标准交换格式。 采用分块(Chunk)存储结构,支持网格几何数据、材质定义、 纹理坐标以及局部变换矩阵的解析。 注意:.max 是 3ds Max 的专有私有格式(无公开文档,无法可靠解析), 本模块解析的是 .3ds 格式文件。 | Microsoft.VisualBasic.Imaging.Landscape 1.0.9762.11310 |
22 |
| Mesh3DS | 3DS 网格数据内部表示。 包含从单个 0x4100 (OBJ_MESH) Chunk 中解析出的所有几何信息。 | Microsoft.VisualBasic.Imaging.Landscape 1.0.9753.4776 |
7 |
| Mesh3DS | 3DS 网格数据内部表示。 包含从单个 0x4100 (OBJ_MESH) Chunk 中解析出的所有几何信息。 | Microsoft.VisualBasic.Imaging.Landscape 1.0.9762.11310 |
7 |
Microsoft.VisualBasic.Imaging.Landscape.Ply
| Type | Summary | Package | Members |
|---|---|---|---|
| Header | Microsoft.VisualBasic.Imaging.Landscape 1.0.9753.4776 |
5 | |
| Header | Microsoft.VisualBasic.Imaging.Landscape 1.0.9762.11310 |
4 | |
| PlyReader | PLY point cloud file reader. | Microsoft.VisualBasic.Imaging.Landscape 1.0.9753.4776 |
16 |
| PlyReader | PLY point cloud file reader. | Microsoft.VisualBasic.Imaging.Landscape 1.0.9762.11310 |
16 |
Microsoft.VisualBasic.Imaging.Landscape.Ply.PlyReader
| Type | Summary | Package | Members |
|---|---|---|---|
| PlyPropertyDef | Represents a single PLY property definition from the header. | Microsoft.VisualBasic.Imaging.Landscape 1.0.9753.4776 |
6 |
| PlyPropertyDef | Represents a single PLY property definition from the header. | Microsoft.VisualBasic.Imaging.Landscape 1.0.9762.11310 |
6 |
| PlyVertexFormat | Describes the vertex element format parsed from the PLY header. | Microsoft.VisualBasic.Imaging.Landscape 1.0.9753.4776 |
5 |
| PlyVertexFormat | Describes the vertex element format parsed from the PLY header. | Microsoft.VisualBasic.Imaging.Landscape 1.0.9762.11310 |
5 |
| PropertyMapping | Holds property-to-PointCloud field index mappings. | Microsoft.VisualBasic.Imaging.Landscape 1.0.9753.4776 |
0 |
| PropertyMapping | Holds property-to-PointCloud field index mappings. | Microsoft.VisualBasic.Imaging.Landscape 1.0.9762.11310 |
0 |
Microsoft.VisualBasic.Imaging.Landscape.Stl
| Type | Summary | Package | Members |
|---|---|---|---|
| StlParser | STL (Stereolithography) 三角网格三维模型文件解析器 支持 ASCII 文本格式和 Binary 二进制格式的 STL 文件读取, 自动检测文件格式并将数据转换为统一的 Surface 数组。 具体的 ASCII / Binary 解析逻辑分别在 StlAsciiReader 与 StlBinaryReader 这两个 Pa… | Microsoft.VisualBasic.Imaging.Landscape 1.0.9753.4776 |
7 |
| StlParser | STL (Stereolithography) 三角网格三维模型文件解析器 支持 ASCII 文本格式和 Binary 二进制格式的 STL 文件读取, 自动检测文件格式并将数据转换为统一的 Surface 数组。 具体的 ASCII / Binary 解析逻辑分别在 StlAsciiReader 与 StlBinaryReader 这两个 Pa… | Microsoft.VisualBasic.Imaging.Landscape 1.0.9762.11310 |
7 |
Microsoft.VisualBasic.Imaging.Landscape.ThreeMF
| Type | Summary | Package | Members |
|---|---|---|---|
| Extensions | 3mf 格式相关的扩展工具方法 | Microsoft.VisualBasic.Imaging.Landscape 1.0.9753.4776 |
4 |
| Extensions | 3mf 格式相关的扩展工具方法 | Microsoft.VisualBasic.Imaging.Landscape 1.0.9762.11310 |
4 |
| ModelIO | Microsoft.VisualBasic.Imaging.Landscape 1.0.9753.4776 |
4 | |
| ModelIO | Microsoft.VisualBasic.Imaging.Landscape 1.0.9762.11310 |
4 | |
| Project | Microsoft.VisualBasic.Imaging.Landscape 1.0.9753.4776 |
5 | |
| Project | Microsoft.VisualBasic.Imaging.Landscape 1.0.9762.11310 |
4 |
Microsoft.VisualBasic.Imaging.Landscape.ThreeMF.Xml
| Type | Summary | Package | Members |
|---|---|---|---|
| BaseMaterial | Microsoft.VisualBasic.Imaging.Landscape 1.0.9753.4776 |
3 | |
| BaseMaterial | Microsoft.VisualBasic.Imaging.Landscape 1.0.9762.11310 |
3 | |
| Mesh | Microsoft.VisualBasic.Imaging.Landscape 1.0.9753.4776 |
1 | |
| Mesh | Microsoft.VisualBasic.Imaging.Landscape 1.0.9762.11310 |
1 | |
| Triangle3D | 3 vertex index to create a triangle of the surface model data | Microsoft.VisualBasic.Imaging.Landscape 1.0.9753.4776 |
6 |
| Triangle3D | 3 vertex index to create a triangle of the surface model data | Microsoft.VisualBasic.Imaging.Landscape 1.0.9762.11310 |
6 |
| XmlModel3D | 3D/3dmodel.model xml file. | Microsoft.VisualBasic.Imaging.Landscape 1.0.9753.4776 |
4 |
| XmlModel3D | 3D/3dmodel.model xml file. | Microsoft.VisualBasic.Imaging.Landscape 1.0.9762.11310 |
4 |
Microsoft.VisualBasic.Imaging.Landscape.Voxelization
| Type | Summary | Package | Members |
|---|---|---|---|
| BVH | 三角形网格的包围盒层次结构 (Bounding Volume Hierarchy),用于加速 "空间中任意一点到网格最近三角面" 的查询。 采用质心 AABB 最长轴中位数分割递归构建 (非 SAH),叶子节点三角形数量 不超过 BVH.LeafSize。最近查询通过 "点到节点 AABB 的距离下界" 做分支剪枝,将暴力 O(T) 查询降至近似… | Microsoft.VisualBasic.Imaging.Landscape 1.0.9753.4776 |
10 |
| BVH | 三角形网格的包围盒层次结构 (Bounding Volume Hierarchy),用于加速 "空间中任意一点到网格最近三角面" 的查询。 采用质心 AABB 最长轴中位数分割递归构建 (非 SAH),叶子节点三角形数量 不超过 BVH.LeafSize。最近查询通过 "点到节点 AABB 的距离下界" 做分支剪枝,将暴力 O(T) 查询降至近似… | Microsoft.VisualBasic.Imaging.Landscape 1.0.9762.11310 |
10 |
| SDFTriangle | SDF 体素化使用的三角面片,预存三个顶点、轴对齐包围盒 (AABB) 与质心, 以加速 BVH 的构建与最近三角面查询。 | Microsoft.VisualBasic.Imaging.Landscape 1.0.9753.4776 |
4 |
| SDFTriangle | SDF 体素化使用的三角面片,预存三个顶点、轴对齐包围盒 (AABB) 与质心, 以加速 BVH 的构建与最近三角面查询。 | Microsoft.VisualBasic.Imaging.Landscape 1.0.9762.11310 |
4 |
| SDFVolume | 连续符号距离场 (Signed Distance Field, SDF) 体积数据模型,用于 CFD 高精度边界处理。 与 VoxelModel 共享同一套三维网格定义与一维索引公式 index = (x * Height + y) * Depth + z,以保证 SDF 场与二进制体素模型 在空间上完全对齐。 ## 数据含义 - SDFVo… | Microsoft.VisualBasic.Imaging.Landscape 1.0.9753.4776 |
13 |
| SDFVolume | 连续符号距离场 (Signed Distance Field, SDF) 体积数据模型,用于 CFD 高精度边界处理。 与 VoxelModel 共享同一套三维网格定义与一维索引公式 index = (x * Height + y) * Depth + z,以保证 SDF 场与二进制体素模型 在空间上完全对齐。 ## 数据含义 - SDFVo… | Microsoft.VisualBasic.Imaging.Landscape 1.0.9762.11310 |
13 |
| SDFVoxelizer | 基于符号距离场 (Signed Distance Field, SDF) 的高精度三角网格体素化器。 相比 Voxelizer 的列扫描射线投射算法 (仅做布尔内外判定、边界呈 明显阶梯伪影),本模块为 CFD 高精度仿真提供更精细的体素化结果: ## 算法概述 1. | Microsoft.VisualBasic.Imaging.Landscape 1.0.9753.4776 |
10 |
| SDFVoxelizer | 基于符号距离场 (Signed Distance Field, SDF) 的高精度三角网格体素化器。 相比 Voxelizer 的列扫描射线投射算法 (仅做布尔内外判定、边界呈 明显阶梯伪影),本模块为 CFD 高精度仿真提供更精细的体素化结果: ## 算法概述 1. | Microsoft.VisualBasic.Imaging.Landscape 1.0.9762.11310 |
10 |
| Voxelizer | 三角网格模型 → CFD 实心体素模型的转换器。 接受任意格式(STL、OBJ、glTF/GLB、COLLADA、3DS、3MF)解析后的 SceneModel 作为输入,将其转换为可用于 CFD 流体动力学仿真的实心体素模型。 ## 体素化算法 采用 列扫描射线投射 (Column-based Ray Casting) 算法: 1. | Microsoft.VisualBasic.Imaging.Landscape 1.0.9753.4776 |
9 |
| Voxelizer | 三角网格模型 → CFD 实心体素模型的转换器。 接受任意格式(STL、OBJ、glTF/GLB、COLLADA、3DS、3MF)解析后的 SceneModel 作为输入,将其转换为可用于 CFD 流体动力学仿真的实心体素模型。 ## 体素化算法 采用 列扫描射线投射 (Column-based Ray Casting) 算法: 1. | Microsoft.VisualBasic.Imaging.Landscape 1.0.9762.11310 |
9 |
| VoxelModel | 三维体素模型,用于 CFD 流体动力学仿真计算。 使用一维 Boolean 数组表示三维空间中每个体素的状态: False = 空/外部空间(无计算数据), True = 固体区域(模拟环境空间的一部分,在 CFD 中作为固体边界处理)。 一维索引公式: index = (x * Height + y) * Depth + z | Microsoft.VisualBasic.Imaging.Landscape 1.0.9753.4776 |
13 |
| VoxelModel | 三维体素模型,用于 CFD 流体动力学仿真计算。 使用一维 Boolean 数组表示三维空间中每个体素的状态: False = 空/外部空间(无计算数据), True = 固体区域(模拟环境空间的一部分,在 CFD 中作为固体边界处理)。 一维索引公式: index = (x * Height + y) * Depth + z | Microsoft.VisualBasic.Imaging.Landscape 1.0.9762.11310 |
13 |
Microsoft.VisualBasic.Imaging.Landscape.Voxelization.BVH
| Type | Summary | Package | Members |
|---|---|---|---|
| CentroidComparer | 按指定坐标轴比较三角形质心,用于 BVH 中位数分割排序。 | Microsoft.VisualBasic.Imaging.Landscape 1.0.9753.4776 |
0 |
| CentroidComparer | 按指定坐标轴比较三角形质心,用于 BVH 中位数分割排序。 | Microsoft.VisualBasic.Imaging.Landscape 1.0.9762.11310 |
0 |
Microsoft.VisualBasic.Imaging.Landscape.Voxelization.SDFVoxelizer
| Type | Summary | Package | Members |
|---|---|---|---|
| BoundingBox | 内部包围盒结构 (可变,供 SDFVoxelizer.ApplyMargin()) ByRef 修改)。 | Microsoft.VisualBasic.Imaging.Landscape 1.0.9753.4776 |
0 |
| BoundingBox | 内部包围盒结构 (可变,供 SDFVoxelizer.ApplyMargin()) ByRef 修改)。 | Microsoft.VisualBasic.Imaging.Landscape 1.0.9762.11310 |
0 |
Microsoft.VisualBasic.Imaging.Landscape.Wavefront
| Type | Summary | Package | Members |
|---|---|---|---|
| ObjModel | Microsoft.VisualBasic.Imaging.Landscape 1.0.9753.4776 |
5 | |
| ObjModel | Microsoft.VisualBasic.Imaging.Landscape 1.0.9762.11310 |
5 | |
| ObjTextParser | OBJ (Wavefront) 文件文本解析器 | Microsoft.VisualBasic.Imaging.Landscape 1.0.9753.4776 |
4 |
| ObjTextParser | OBJ (Wavefront) 文件文本解析器 | Microsoft.VisualBasic.Imaging.Landscape 1.0.9762.11310 |
4 |
Microsoft.VisualBasic.Imaging.LayoutModel
| Type | Summary | Package | Members |
|---|---|---|---|
| ColaExtensions | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 | |
| ColaExtensions | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 | |
| ILayoutedObject | Any typed object with a location layout value | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 |
| ILayoutedObject | Any typed object with a location layout value | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 |
| Point2D | Implements a 2-dimensional point with Double precision coordinates. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
15 |
| Point2D | Implements a 2-dimensional point with Double precision coordinates. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
15 |
| Rectangle2D | Implements a 2-dimensional rectangle with double precision coordinates. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
28 |
| Rectangle2D | Implements a 2-dimensional rectangle with double precision coordinates. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
28 |
Microsoft.VisualBasic.Imaging.Math2D
| Type | Summary | Package | Members |
|---|---|---|---|
| AffineTransform | 2D Affine Transformation parameters. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
10 |
| AffineTransform | 2D Affine Transformation parameters. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
10 |
| EllipseShape | Ellipse shape polygon generator | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
7 |
| EllipseShape | Ellipse shape polygon generator | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
7 |
| GeometryMath | https://stackoverflow.com/questions/30080/how-to-know-if-a-line-intersects-a-plane-in-c-basic-2d-geometry 与几何相关的辅助类 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
9 |
| GeometryMath | https://stackoverflow.com/questions/30080/how-to-know-if-a-line-intersects-a-plane-in-c-basic-2d-geometry 与几何相关的辅助类 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
9 |
| GeometryTransform | make geometry transform of a given Polygon2D with given Transform or AffineTransform parameters. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 |
| GeometryTransform | make geometry transform of a given Polygon2D with given Transform or AffineTransform parameters. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 |
| GeomTransform | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
46 | |
| GeomTransform | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
46 | |
| Intersections | 几何体之间的关系类型 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
7 |
| Intersections | 几何体之间的关系类型 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
7 |
| Line | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
9 | |
| Line | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
9 | |
| Line2D | This Line2D represents a line segment in {@code (x,y)} coordinate space. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
6 |
| Line2D | This Line2D represents a line segment in {@code (x,y)} coordinate space. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
6 |
| Line3D | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 | |
| Line3D | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 | |
| Moran | This function is useful for calculating Moran's I Without holding an entire distance matrix in memory | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 |
| Moran | This function is useful for calculating Moran's I Without holding an entire distance matrix in memory | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 |
| PolarPoint | 极坐标点 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
6 |
| PolarPoint | 极坐标点 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
6 |
| Polygon2D | polygon object in 2D plain | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
27 |
| Polygon2D | polygon object in 2D plain | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
27 |
| PolygonFiller | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 | |
| PolygonFiller | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 | |
| QuadrantRegions | 请注意,视图上面的象限的位置和计算机之中的象限是反过来的 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
14 |
| QuadrantRegions | 请注意,视图上面的象限的位置和计算机之中的象限是反过来的 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
14 |
| RasterData | 栅格化结果容器:每个栅格存储该区域内点的列表 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
10 |
| RasterData | 栅格化结果容器:每个栅格存储该区域内点的列表 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
10 |
| Rasterizer | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 | |
| Rasterizer | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 | |
| Transform | 2D transformation parameters | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
8 |
| Transform | 2D transformation parameters | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
8 |
| Vector2D | PointF, basic model for physical simulator | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
16 |
| Vector2D | PointF, basic model for physical simulator | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
16 |
| VectorMath2D | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
8 | |
| VectorMath2D | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
8 |
Microsoft.VisualBasic.Imaging.Physics
| Type | Summary | Package | Members |
|---|---|---|---|
| FluidEngine3D | A 3D Smoothed Particle Hydrodynamics (SPH) water simulation engine. | Microsoft.VisualBasic.Imaging.Physics 1.0.9753.4776 |
18 |
| FluidEngine3D | A 3D Smoothed Particle Hydrodynamics (SPH) water simulation engine. | Microsoft.VisualBasic.Imaging.Physics 1.0.9762.11310 |
18 |
| FluidKernels | SPH smoothing kernels used by FluidEngine. | Microsoft.VisualBasic.Imaging.Physics 1.0.9753.4776 |
5 |
| FluidKernels | SPH smoothing kernels used by FluidEngine. | Microsoft.VisualBasic.Imaging.Physics 1.0.9762.11310 |
5 |
| FluidKernels3D | SPH smoothing kernels used by the 3D fluid engine FluidEngine3D. | Microsoft.VisualBasic.Imaging.Physics 1.0.9753.4776 |
5 |
| FluidKernels3D | SPH smoothing kernels used by the 3D fluid engine FluidEngine3D. | Microsoft.VisualBasic.Imaging.Physics 1.0.9762.11310 |
5 |
| ForceMath | Microsoft.VisualBasic.Imaging.Physics 1.0.9753.4776 |
8 | |
| ForceMath | Microsoft.VisualBasic.Imaging.Physics 1.0.9762.11310 |
8 | |
| Grid3D | The 3D counterpart of the 2D GridDynamics spatial hash. | Microsoft.VisualBasic.Imaging.Physics 1.0.9753.4776 |
3 |
| Grid3D | The 3D counterpart of the 2D GridDynamics spatial hash. | Microsoft.VisualBasic.Imaging.Physics 1.0.9762.11310 |
3 |
| IContainer3D | the 3D volume container of the particles(the 3D counterpart of the 2D IContainer). | Microsoft.VisualBasic.Imaging.Physics 1.0.9753.4776 |
2 |
| IContainer3D | the 3D volume container of the particles(the 3D counterpart of the 2D IContainer). | Microsoft.VisualBasic.Imaging.Physics 1.0.9762.11310 |
2 |
| Particle | Microsoft.VisualBasic.Imaging.Physics 1.0.9753.4776 |
8 | |
| Particle | Microsoft.VisualBasic.Imaging.Physics 1.0.9762.11310 |
1 | |
| Particle3D | A single water particle inside the 3D SPH fluid simulation. | Microsoft.VisualBasic.Imaging.Physics 1.0.9753.4776 |
6 |
| Particle3D | A single water particle inside the 3D SPH fluid simulation. | Microsoft.VisualBasic.Imaging.Physics 1.0.9762.11310 |
6 |
| PhysicsMaterial | 物理材质:摩擦系数 (friction) 与恢复系数 (restitution)。 碰撞时由碰撞双方材质组合得到最终的接触参数。 | Microsoft.VisualBasic.Imaging.Physics 1.0.9753.4776 |
4 |
| PhysicsMaterial | 物理材质:摩擦系数 (friction) 与恢复系数 (restitution)。 碰撞时由碰撞双方材质组合得到最终的接触参数。 | Microsoft.VisualBasic.Imaging.Physics 1.0.9762.11310 |
4 |
| PhysicsWorld | 2D 物理世界。以 PhysicsWorld.Step()) 固定步长驱动,内部按子步执行: 施加力场 → 由力积分速度 → 宽相位 → 窄相位 → 顺序冲量求解(接触 + 关节)→ 由速度积分位置 → 关节位置修正。 可直接接入游戏主循环(每帧调用一次 PhysicsWorld.Step()) 传入真实 dt)。 | Microsoft.VisualBasic.Imaging.Physics 1.0.9753.4776 |
20 |
| PhysicsWorld | 2D 物理世界。以 PhysicsWorld.Step()) 固定步长驱动,内部按子步执行: 施加力场 → 由力积分速度 → 宽相位 → 窄相位 → 顺序冲量求解(接触 + 关节)→ 由速度积分位置 → 关节位置修正。 可直接接入游戏主循环(每帧调用一次 PhysicsWorld.Step()) 传入真实 dt)。 | Microsoft.VisualBasic.Imaging.Physics 1.0.9762.11310 |
20 |
| RigidBody | 2D 刚体。不会发生形变,受力后整体平动 + 转动。 位置 RigidBody.Position 表示质心(世界坐标),RigidBody.Rotation 为 2D 标量角(弧度)。 | Microsoft.VisualBasic.Imaging.Physics 1.0.9753.4776 |
36 |
| RigidBody | 2D 刚体。不会发生形变,受力后整体平动 + 转动。 位置 RigidBody.Position 表示质心(世界坐标),RigidBody.Rotation 为 2D 标量角(弧度)。 | Microsoft.VisualBasic.Imaging.Physics 1.0.9762.11310 |
36 |
| Vector2Math | unity math + 2D rigid body helpers | Microsoft.VisualBasic.Imaging.Physics 1.0.9753.4776 |
12 |
| Vector2Math | unity math + 2D rigid body helpers | Microsoft.VisualBasic.Imaging.Physics 1.0.9762.11310 |
6 |
| Vector3 | A self-contained double precision 3D vector used by the 3D fluid simulation engine FluidEngine3D. | Microsoft.VisualBasic.Imaging.Physics 1.0.9753.4776 |
18 |
| Vector3 | A self-contained double precision 3D vector used by the 3D fluid simulation engine FluidEngine3D. | Microsoft.VisualBasic.Imaging.Physics 1.0.9762.11310 |
18 |
Microsoft.VisualBasic.Imaging.Physics.Boids
| Type | Summary | Package | Members |
|---|---|---|---|
| Boid | Boids flocking algorithm | Microsoft.VisualBasic.Imaging.Physics 1.0.9753.4776 |
7 |
| Boid | Boids flocking algorithm | Microsoft.VisualBasic.Imaging.Physics 1.0.9762.11310 |
1 |
| Field | Boids flocking algorithm | Microsoft.VisualBasic.Imaging.Physics 1.0.9753.4776 |
7 |
| Field | Boids flocking algorithm | Microsoft.VisualBasic.Imaging.Physics 1.0.9762.11310 |
0 |
Microsoft.VisualBasic.Imaging.Physics.Collision
| Type | Summary | Package | Members |
|---|---|---|---|
| AABB | 轴对齐包围盒 | Microsoft.VisualBasic.Imaging.Physics 1.0.9753.4776 |
7 |
| AABB | 轴对齐包围盒 | Microsoft.VisualBasic.Imaging.Physics 1.0.9762.11310 |
2 |
| BroadPhase | Broad Phase 宽相位剔除。将所有刚体的 AABB 写入均匀网格, 只返回网格相邻单元内可能相交的物体对,将碰撞检测从 O(n²) 降到约 O(n)。 | Microsoft.VisualBasic.Imaging.Physics 1.0.9753.4776 |
1 |
| BroadPhase | Broad Phase 宽相位剔除。将所有刚体的 AABB 写入均匀网格, 只返回网格相邻单元内可能相交的物体对,将碰撞检测从 O(n²) 降到约 O(n)。 | Microsoft.VisualBasic.Imaging.Physics 1.0.9762.11310 |
1 |
| CircleCollider | 圆形碰撞体,圆心位于局部原点(= 质心) | Microsoft.VisualBasic.Imaging.Physics 1.0.9753.4776 |
4 |
| CircleCollider | 圆形碰撞体,圆心位于局部原点(= 质心) | Microsoft.VisualBasic.Imaging.Physics 1.0.9762.11310 |
3 |
| Collider | 碰撞几何体基类 | Microsoft.VisualBasic.Imaging.Physics 1.0.9753.4776 |
3 |
| Collider | 碰撞几何体基类 | Microsoft.VisualBasic.Imaging.Physics 1.0.9762.11310 |
3 |
| ContactSolver | 顺序冲量接触求解器。对每个接触点迭代计算法向冲量(含恢复系数与 Baumgarte 穿透修正)和切向冲量(库仑摩擦),并将冲量应用到两个刚体。 | Microsoft.VisualBasic.Imaging.Physics 1.0.9753.4776 |
7 |
| ContactSolver | 顺序冲量接触求解器。对每个接触点迭代计算法向冲量(含恢复系数与 Baumgarte 穿透修正)和切向冲量(库仑摩擦),并将冲量应用到两个刚体。 | Microsoft.VisualBasic.Imaging.Physics 1.0.9762.11310 |
7 |
| Manifold | 碰撞流形(接触信息)。法向量 Manifold.Normal 由 A 指向 B。 接触点最多 2 个(世界坐标),用于顺序冲量求解。 | Microsoft.VisualBasic.Imaging.Physics 1.0.9753.4776 |
16 |
| Manifold | 碰撞流形(接触信息)。法向量 Manifold.Normal 由 A 指向 B。 接触点最多 2 个(世界坐标),用于顺序冲量求解。 | Microsoft.VisualBasic.Imaging.Physics 1.0.9762.11310 |
16 |
| NarrowPhase | Narrow Phase 窄相位精确碰撞检测。根据几何体类型分派到具体算法, 生成 Manifold(法向由 A 指向 B、穿透深度、接触点)。 | Microsoft.VisualBasic.Imaging.Physics 1.0.9753.4776 |
5 |
| NarrowPhase | Narrow Phase 窄相位精确碰撞检测。根据几何体类型分派到具体算法, 生成 Manifold(法向由 A 指向 B、穿透深度、接触点)。 | Microsoft.VisualBasic.Imaging.Physics 1.0.9762.11310 |
5 |
| PolygonCollider | 凸多边形碰撞体,顶点存储为相对质心(中心)的局部坐标 | Microsoft.VisualBasic.Imaging.Physics 1.0.9753.4776 |
12 |
| PolygonCollider | 凸多边形碰撞体,顶点存储为相对质心(中心)的局部坐标 | Microsoft.VisualBasic.Imaging.Physics 1.0.9762.11310 |
10 |
Microsoft.VisualBasic.Imaging.Physics.Collision.BroadPhase
Microsoft.VisualBasic.Imaging.Physics.ForceFields
| Type | Summary | Package | Members |
|---|---|---|---|
| ForceField | 力场基类。覆盖一个区域(ForceField.Region,为 Nothing 时表示全局), 每步对场内刚体施加力。派生类实现 ForceField.Apply())。 | Microsoft.VisualBasic.Imaging.Physics 1.0.9753.4776 |
4 |
| ForceField | 力场基类。覆盖一个区域(ForceField.Region,为 Nothing 时表示全局), 每步对场内刚体施加力。派生类实现 ForceField.Apply())。 | Microsoft.VisualBasic.Imaging.Physics 1.0.9762.11310 |
4 |
| GravityField | 重力场:对场内每个刚体施加 F = m·g(默认向下)。 可用于创建局部重力井或不同强度的重力区域。 | Microsoft.VisualBasic.Imaging.Physics 1.0.9753.4776 |
3 |
| GravityField | 重力场:对场内每个刚体施加 F = m·g(默认向下)。 可用于创建局部重力井或不同强度的重力区域。 | Microsoft.VisualBasic.Imaging.Physics 1.0.9762.11310 |
3 |
| MagneticField | 磁力场(点源):以 MagneticField.Center 为中心,对场内刚体施加随距离 平方衰减的吸引或排斥力,模拟磁极/引力井等效果。 | Microsoft.VisualBasic.Imaging.Physics 1.0.9753.4776 |
9 |
| MagneticField | 磁力场(点源):以 MagneticField.Center 为中心,对场内刚体施加随距离 平方衰减的吸引或排斥力,模拟磁极/引力井等效果。 | Microsoft.VisualBasic.Imaging.Physics 1.0.9762.11310 |
9 |
| WindField | 风力场:在区域内沿 WindField.Direction 施加风力,叠加正弦湍流使效果更自然。 力大小与刚体质量成正比(类比气压对物体的作用)。 | Microsoft.VisualBasic.Imaging.Physics 1.0.9753.4776 |
7 |
| WindField | 风力场:在区域内沿 WindField.Direction 施加风力,叠加正弦湍流使效果更自然。 力大小与刚体质量成正比(类比气压对物体的作用)。 | Microsoft.VisualBasic.Imaging.Physics 1.0.9762.11310 |
7 |
Microsoft.VisualBasic.Imaging.Physics.Joints
| Type | Summary | Package | Members |
|---|---|---|---|
| IConstraint | 约束(关节)统一接口。在物理世界的速度迭代阶段调用 IConstraint.SolveVelocity()), 在位置阶段调用 IConstraint.SolvePosition()) 做穿透/漂移修正。 | Microsoft.VisualBasic.Imaging.Physics 1.0.9753.4776 |
2 |
| IConstraint | 约束(关节)统一接口。在物理世界的速度迭代阶段调用 IConstraint.SolveVelocity()), 在位置阶段调用 IConstraint.SolvePosition()) 做穿透/漂移修正。 | Microsoft.VisualBasic.Imaging.Physics 1.0.9762.11310 |
2 |
| PrismaticJoint | 滑块(棱柱)关节:允许两个刚体沿给定世界轴 PrismaticJoint.axis 自由滑动, 但约束垂直于该轴的相对平移以及相对旋转。 | Microsoft.VisualBasic.Imaging.Physics 1.0.9753.4776 |
6 |
| PrismaticJoint | 滑块(棱柱)关节:允许两个刚体沿给定世界轴 PrismaticJoint.axis 自由滑动, 但约束垂直于该轴的相对平移以及相对旋转。 | Microsoft.VisualBasic.Imaging.Physics 1.0.9762.11310 |
6 |
| RevoluteJoint | 铰链(旋转)关节:将两个刚体在各自的局部锚点处钉在一起,允许绕该点自由旋转。 在 2D 中这与球窝关节等价。 | Microsoft.VisualBasic.Imaging.Physics 1.0.9753.4776 |
8 |
| RevoluteJoint | 铰链(旋转)关节:将两个刚体在各自的局部锚点处钉在一起,允许绕该点自由旋转。 在 2D 中这与球窝关节等价。 | Microsoft.VisualBasic.Imaging.Physics 1.0.9762.11310 |
8 |
| SpringJoint | 弹簧关节:在两个刚体的锚点之间施加胡克弹力(与形变成正比)和阻尼力 (与相对速度成正比),模拟弹性连接(如绳索、弹簧、悬挂)。 | Microsoft.VisualBasic.Imaging.Physics 1.0.9753.4776 |
12 |
| SpringJoint | 弹簧关节:在两个刚体的锚点之间施加胡克弹力(与形变成正比)和阻尼力 (与相对速度成正比),模拟弹性连接(如绳索、弹簧、悬挂)。 | Microsoft.VisualBasic.Imaging.Physics 1.0.9762.11310 |
12 |
| WeldJoint | 固定(焊接)关节:将两个刚体的相对位置与相对角度完全锁定, 相当于刚性连接(如焊接、铆接)。 | Microsoft.VisualBasic.Imaging.Physics 1.0.9753.4776 |
6 |
| WeldJoint | 固定(焊接)关节:将两个刚体的相对位置与相对角度完全锁定, 相当于刚性连接(如焊接、铆接)。 | Microsoft.VisualBasic.Imaging.Physics 1.0.9762.11310 |
6 |
Microsoft.VisualBasic.Imaging.Physics.layout
| Type | Summary | Package | Members |
|---|---|---|---|
| AbstractForce | @author Helder Suzuki | Microsoft.VisualBasic.Imaging.Physics 1.0.9753.4776 |
2 |
| AbstractForce | @author Helder Suzuki | Microsoft.VisualBasic.Imaging.Physics 1.0.9762.11310 |
0 |
| Displacement | @author Helder Suzuki | Microsoft.VisualBasic.Imaging.Physics 1.0.9753.4776 |
2 |
| Displacement | @author Helder Suzuki | Microsoft.VisualBasic.Imaging.Physics 1.0.9762.11310 |
1 |
| ForceLayoutData | @author Helder Suzuki | Microsoft.VisualBasic.Imaging.Physics 1.0.9753.4776 |
3 |
| ForceLayoutData | @author Helder Suzuki | Microsoft.VisualBasic.Imaging.Physics 1.0.9762.11310 |
3 |
| ForceVector | @author Helder Suzuki | Microsoft.VisualBasic.Imaging.Physics 1.0.9753.4776 |
10 |
| ForceVector | @author Helder Suzuki | Microsoft.VisualBasic.Imaging.Physics 1.0.9762.11310 |
10 |
| ForceVectorNodeLayoutData | @author Mathieu Bastian | Microsoft.VisualBasic.Imaging.Physics 1.0.9753.4776 |
6 |
| ForceVectorNodeLayoutData | @author Mathieu Bastian | Microsoft.VisualBasic.Imaging.Physics 1.0.9762.11310 |
6 |
| ForceVectorUtils | @author Mathieu Jacomy | Microsoft.VisualBasic.Imaging.Physics 1.0.9753.4776 |
11 |
| ForceVectorUtils | @author Mathieu Jacomy | Microsoft.VisualBasic.Imaging.Physics 1.0.9762.11310 |
2 |
| LabelAdjust | @author Mathieu Jacomy | Microsoft.VisualBasic.Imaging.Physics 1.0.9753.4776 |
7 |
| LabelAdjust | @author Mathieu Jacomy | Microsoft.VisualBasic.Imaging.Physics 1.0.9762.11310 |
6 |
| LabelAdjustLayoutData | @author Mathieu Bastian | Microsoft.VisualBasic.Imaging.Physics 1.0.9753.4776 |
0 |
| LabelAdjustLayoutData | @author Mathieu Bastian | Microsoft.VisualBasic.Imaging.Physics 1.0.9762.11310 |
0 |
| Node | the layout data model | Microsoft.VisualBasic.Imaging.Physics 1.0.9753.4776 |
6 |
| Node | the layout data model | Microsoft.VisualBasic.Imaging.Physics 1.0.9762.11310 |
0 |
| ProportionalDisplacement | The movement of the node is in the direction of the force and it's proportional to is module. | Microsoft.VisualBasic.Imaging.Physics 1.0.9753.4776 |
2 |
| ProportionalDisplacement | The movement of the node is in the direction of the force and it's proportional to is module. | Microsoft.VisualBasic.Imaging.Physics 1.0.9762.11310 |
1 |
| StepDisplacement | The node is moved a fixed distance (step) in the direction of the force. | Microsoft.VisualBasic.Imaging.Physics 1.0.9753.4776 |
2 |
| StepDisplacement | The node is moved a fixed distance (step) in the direction of the force. | Microsoft.VisualBasic.Imaging.Physics 1.0.9762.11310 |
1 |
| TextProperties | the label drawing style data | Microsoft.VisualBasic.Imaging.Physics 1.0.9753.4776 |
2 |
| TextProperties | the label drawing style data | Microsoft.VisualBasic.Imaging.Physics 1.0.9762.11310 |
2 |
Microsoft.VisualBasic.Imaging.Physics.Particles2D
| Type | Summary | Package | Members |
|---|---|---|---|
| Emitter | 粒子发射器:在 Emitter.Position 处沿 Emitter.BaseAngle 方向、 以 Emitter.Spread 张角随机产生粒子。支持一次性爆发或持续生成。 | Microsoft.VisualBasic.Imaging.Physics 1.0.9753.4776 |
15 |
| Emitter | 粒子发射器:在 Emitter.Position 处沿 Emitter.BaseAngle 方向、 以 Emitter.Spread 张角随机产生粒子。支持一次性爆发或持续生成。 | Microsoft.VisualBasic.Imaging.Physics 1.0.9762.11310 |
15 |
| GameParticle | 单个粒子。数据极简(位置、速度、寿命、尺寸、颜色), 不与其他物理系统耦合以支持海量粒子。 | Microsoft.VisualBasic.Imaging.Physics 1.0.9753.4776 |
8 |
| GameParticle | 单个粒子。数据极简(位置、速度、寿命、尺寸、颜色), 不与其他物理系统耦合以支持海量粒子。 | Microsoft.VisualBasic.Imaging.Physics 1.0.9762.11310 |
8 |
| ParticleSystem | 轻量粒子系统。使用对象池复用 GameParticle,避免频繁分配; 每个粒子仅受重力与线性阻力影响,可承载海量粒子(爆炸、火花、灰尘、魔法等)。 不与刚体耦合,以保证性能。 | Microsoft.VisualBasic.Imaging.Physics 1.0.9753.4776 |
8 |
| ParticleSystem | 轻量粒子系统。使用对象池复用 GameParticle,避免频繁分配; 每个粒子仅受重力与线性阻力影响,可承载海量粒子(爆炸、火花、灰尘、魔法等)。 不与刚体耦合,以保证性能。 | Microsoft.VisualBasic.Imaging.Physics 1.0.9762.11310 |
8 |
Microsoft.VisualBasic.Imaging.PostScript
| Type | Summary | Package | Members |
|---|---|---|---|
| GraphicsPostScript | Graphics for create postscript | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
66 |
| GraphicsPostScript | Graphics for create postscript | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
5 |
| Matrix2D | a light weight 2D affine transformation matrix | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
16 |
| Matrix2D | a light weight 2D affine transformation matrix | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
16 |
| Parser | A general purpose ASCII postscript parser. | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
13 |
| Parser | A general purpose ASCII postscript parser. | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
13 |
| PostScriptBuilder | A helper module for convert the postscript object as ASCII script text | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
7 |
| PostScriptBuilder | A helper module for convert the postscript object as ASCII script text | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
5 |
| PsComment | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
3 | |
| PsComment | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
3 | |
| PSElement | abstract model of the painting elements | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
2 |
| PSElement | abstract model of the painting elements | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
2 |
| PSElement | An postscript graphics element | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
1 |
| PSElement | An postscript graphics element | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
1 |
| Writer | file writer for the postscript file | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
22 |
| Writer | file writer for the postscript file | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
22 |
Microsoft.VisualBasic.Imaging.PostScript.Elements
Microsoft.VisualBasic.Imaging.PostScript.Parser
Microsoft.VisualBasic.Imaging.Region
| Type | Summary | Package | Members |
|---|---|---|---|
| region_op | Internal operation record for region transforms, similar to GraphicsPath's opSet pattern. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
0 |
| region_op | Internal operation record for region transforms, similar to GraphicsPath's opSet pattern. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
0 |
Microsoft.VisualBasic.Imaging.SVG
| Type | Summary | Package | Members |
|---|---|---|---|
| GeometryElement | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
7 | |
| GeometryElement | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
1 | |
| GraphicsSVG | SVG graphics generator | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
69 |
| GraphicsSVG | SVG graphics generator | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
6 |
| MatrixTransform | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
8 | |
| MatrixTransform | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
8 | |
| Renderer | Rendering svg vector image to gdi+ pixel image. | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
6 |
| Renderer | Rendering svg vector image to gdi+ pixel image. | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
5 |
| SVGDataLayers | 使用SvgGroup图层的方式构建出一个完整的SVG模型 | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
6 |
| SVGDataLayers | 使用SvgGroup图层的方式构建出一个完整的SVG模型 | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
5 |
| SVGWriter | Write the data in GraphicsSVG as a xml file. | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
4 |
| SVGWriter | Write the data in GraphicsSVG as a xml file. | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
4 |
Microsoft.VisualBasic.Imaging.SVG.CSS
Microsoft.VisualBasic.Imaging.SVG.PathHelper
| Type | Summary | Package | Members |
|---|---|---|---|
| Command | the base command for build a svg path | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
4 |
| Command | the base command for build a svg path | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
4 |
| Interpreter | the svg path Command interpreter | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
11 |
| Interpreter | the svg path Command interpreter | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
1 |
| ModelBuilder | gdi+ object to svg model convertor | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
4 |
| ModelBuilder | gdi+ object to svg model convertor | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
4 |
Microsoft.VisualBasic.Imaging.SVG.XML
| Type | Summary | Package | Members |
|---|---|---|---|
| SvgBasicShape | Basic shapes There are several basic shapes used for most SVG drawing. | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
0 |
| SvgBasicShape | Basic shapes There are several basic shapes used for most SVG drawing. | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
0 |
| SvgCircle | The <circle> SVG element is an SVG basic shape, used to draw circles based on a center point and a radius. | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
4 |
| SvgCircle | The <circle> SVG element is an SVG basic shape, used to draw circles based on a center point and a radius. | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
4 |
| SvgContainer | SVG之中的画布对象 | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
15 |
| SvgContainer | SVG之中的画布对象 | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
15 |
| SvgDocument | SVG: Scalable Vector Graphics Scalable Vector Graphics (SVG) is an XML-based markup language for describing two-dimensional based vector graphics. | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
19 |
| SvgDocument | SVG: Scalable Vector Graphics Scalable Vector Graphics (SVG) is an XML-based markup language for describing two-dimensional based vector graphics. | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
8 |
| SvgElement | The basically SVG XML document node, it can be tweaks on the style by using CSS | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
25 |
| SvgElement | The basically SVG XML document node, it can be tweaks on the style by using CSS | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
25 |
| SvgEllipse | An <ellipse> is a more general form of the <circle> element, where you can scale the x and y radius (commonly referred to as the semimajor and semiminor axes in maths) of the c… | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
4 |
| SvgEllipse | An <ellipse> is a more general form of the <circle> element, where you can scale the x and y radius (commonly referred to as the semimajor and semiminor axes in maths) of the c… | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
4 |
| SvgGroup | The <g> SVG element is a container used to group other SVG elements. | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
0 |
| SvgGroup | The <g> SVG element is a container used to group other SVG elements. | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
0 |
| SvgImage | The <image> SVG element includes images inside SVG documents. | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
11 |
| SvgImage | The <image> SVG element includes images inside SVG documents. | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
6 |
| SvgLine | The <line> element takes the positions of two points as parameters and draws a straight line between them. | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
7 |
| SvgLine | The <line> element takes the positions of two points as parameters and draws a straight line between them. | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
7 |
| SvgMarker | The <marker> element defines a graphic used for drawing arrowheads or polymarkers on a given <path>, <line>, <polyline> or <polygon> element. | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
6 |
| SvgMarker | The <marker> element defines a graphic used for drawing arrowheads or polymarkers on a given <path>, <line>, <polyline> or <polygon> element. | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
6 |
| SvgMetadata | the svg RDF metadata node | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
0 |
| SvgMetadata | the svg RDF metadata node | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
0 |
| SvgPath | A <path> is the most general shape that can be used in SVG. | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
3 |
| SvgPath | A <path> is the most general shape that can be used in SVG. | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
3 |
| SvgPolygon | A <polygon> is similar to a <polyline>, in that it is composed of straight line segments connecting a list of points. | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
3 |
| SvgPolygon | A <polygon> is similar to a <polyline>, in that it is composed of straight line segments connecting a list of points. | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
3 |
| SvgPolyLine | A <polyline> is a group of connected straight lines. | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
1 |
| SvgPolyLine | A <polyline> is a group of connected straight lines. | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
1 |
| SvgRect | The <rect> element draws a rectangle on the screen. | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
8 |
| SvgRect | The <rect> element draws a rectangle on the screen. | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
8 |
| SvgSymbol | The <symbol> element is used to define graphical template objects which can be instantiated by a <use> element. | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
1 |
| SvgSymbol | The <symbol> element is used to define graphical template objects which can be instantiated by a <use> element. | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
1 |
| SvgText | The SVG <text> element draws a graphics element consisting of text. | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
14 |
| SvgText | The SVG <text> element draws a graphics element consisting of text. | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
14 |
| SvgUse | The <use> element takes nodes from within the SVG document, and duplicates them somewhere else. | Microsoft.VisualBasic.Imaging 1.0.9753.4776 |
6 |
| SvgUse | The <use> element takes nodes from within the SVG document, and duplicates them somewhere else. | Microsoft.VisualBasic.Imaging 1.0.9762.11310 |
6 |
Microsoft.VisualBasic.Imaging.SVG.XML.Enums
Microsoft.VisualBasic.Language
| Type | Summary | Package | Members |
|---|---|---|---|
| ArgumentReference | [name => value] tuple | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
9 |
| ArgumentReference | [name => value] tuple | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
9 |
| AssertAll | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 | |
| AssertAll | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 | |
| AssertAny | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 | |
| AssertAny | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 | |
| AssertEqualsExtensions | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 | |
| AssertEqualsExtensions | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 | |
| f64 | Double | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
32 |
| f64 | Double | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
32 |
| FormatHelper | CLangStringFormatProvider.sprintf()) reference | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 |
| FormatHelper | CLangStringFormatProvider.sprintf()) reference | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 |
| FormatHelpers | CLangStringFormatProvider.sprintf()) syntax helpers | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
7 |
| FormatHelpers | CLangStringFormatProvider.sprintf()) syntax helpers | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
7 |
| i32 | Alias of Int32 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
27 |
| i32 | Alias of Int32 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
27 |
| Indexer | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 | |
| Indexer | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 | |
| LanguageAPI | The VisualBasic language syntax helper API. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
27 |
| LanguageAPI | The VisualBasic language syntax helper API. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
27 |
| LanguageExtensions | List initizlize syntax supports | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 |
| LanguageExtensions | List initizlize syntax supports | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 |
| LinqAPI | Language syntax extension for the Linq expression in VisualBasic language | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
14 |
| LinqAPI | Language syntax extension for the Linq expression in VisualBasic language | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
14 |
| List | Represents a strongly typed list of objects that can be accessed by index. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
41 |
| List | Represents a strongly typed list of objects that can be accessed by index. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
41 |
| Numeric | Defines a generalized type-specific comparison method that a value type or class implements to order or sort its instances. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
19 |
| Numeric | Defines a generalized type-specific comparison method that a value type or class implements to order or sort its instances. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
19 |
| Pointer | Type of Int32 pointer class to the Array class. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
16 |
| Pointer | Type of Int32 pointer class to the Array class. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
16 |
| Rapply | Helper for implements lapply and sapply liked operations from R language | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 |
| Rapply | Helper for implements lapply and sapply liked operations from R language | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 |
| Record | Data record type in VisualBasic | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 |
| Record | Data record type in VisualBasic | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 |
| Runtime | Runtime helper vbnet Imports VB = Microsoft.VisualBasic.Language.Runtime With New VB ' ... | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 |
| Runtime | Runtime helper vbnet Imports VB = Microsoft.VisualBasic.Language.Runtime With New VB ' ... | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 |
| Value | Variable model in VisualBasic | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
6 |
| Value | Variable model in VisualBasic | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
6 |
| Value | You can applying this data type into a dictionary object to makes the mathematics calculation more easily. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
26 |
| Value | You can applying this data type into a dictionary object to makes the mathematics calculation more easily. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
26 |
| Variant | Union type of A and B | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
11 |
| Variant | Union type of A and B | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
11 |
Microsoft.VisualBasic.Language.C
| Type | Summary | Package | Members |
|---|---|---|---|
| CLangStringFormatProvider | Provides C like format print | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
7 |
| CLangStringFormatProvider | Provides C like format print | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
7 |
| CString | This class provides the ability to simulate various classic C string functions which don't have exact equivalents in the .NET Framework. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
7 |
| CString | This class provides the ability to simulate various classic C string functions which don't have exact equivalents in the .NET Framework. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
7 |
| File | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
7 | |
| File | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
7 | |
| RandomNumbers | This class provides the ability to simulate the behavior of the C/C++ functions for generating random numbers, using the .NET Framework Random class. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 |
| RandomNumbers | This class provides the ability to simulate the behavior of the C/C++ functions for generating random numbers, using the .NET Framework Random class. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 |
| Vector | std::vector helper for C++ language | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| Vector | std::vector helper for C++ language | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
Microsoft.VisualBasic.Language.C.CString
| Type | Summary | Package | Members |
|---|---|---|---|
| __tokensHelper | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 | |
| __tokensHelper | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 |
Microsoft.VisualBasic.Language.Default
| Type | Summary | Package | Members |
|---|---|---|---|
| BinaryAssert | + Test of A eqauls to B? | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| BinaryAssert | + Test of A eqauls to B? | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
| Default | The default value | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
19 |
| Default | The default value | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
19 |
| DefaultExtensions | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
7 | |
| DefaultExtensions | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
7 | |
| DefaultString | CommandLine optional value helper data model | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
18 |
| DefaultString | CommandLine optional value helper data model | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
18 |
| IsEmpty | Apply on the structure type that assert the object is null or not. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 |
| IsEmpty | Apply on the structure type that assert the object is null or not. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 |
Microsoft.VisualBasic.Language.Java
| Type | Summary | Package | Members |
|---|---|---|---|
| Arrays | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
11 | |
| Arrays | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
11 | |
| Collections | This class consists exclusively of static methods that operate on or return collections. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
9 |
| Collections | This class consists exclusively of static methods that operate on or return collections. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
9 |
| LogTricks | @author Marc Suchard | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
9 |
| LogTricks | @author Marc Suchard | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
9 |
| MathUtils | Handy utility functions which have some Mathematical relavance. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
21 |
| MathUtils | Handy utility functions which have some Mathematical relavance. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
21 |
| Reflection | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 | |
| Reflection | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 |
Microsoft.VisualBasic.Language.LinqAPIHelpers
| Type | Summary | Package | Members |
|---|---|---|---|
| CountHelper | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 | |
| CountHelper | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 | |
| ExecHelper | Execute a linq expression. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| ExecHelper | Execute a linq expression. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
| FirstOrDefaultHelper | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 | |
| FirstOrDefaultHelper | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 | |
| ListHelper | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 | |
| ListHelper | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 | |
| ToArrayHelper | Execute a linq expression. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| ToArrayHelper | Execute a linq expression. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
Microsoft.VisualBasic.Language.Perl
| Type | Summary | Package | Members |
|---|---|---|---|
| ExceptionHandle | Syntax supports for perl language like exception handler vbnet Dim value = func() or die("message") | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 |
| ExceptionHandle | Syntax supports for perl language like exception handler vbnet Dim value = func() or die("message") | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 |
| Functions | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
10 | |
| Functions | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
10 |
Microsoft.VisualBasic.Language.Python
| Type | Summary | Package | Members |
|---|---|---|---|
| Collection | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 | |
| Collection | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 | |
| NamedTuple | namedtuple() Factory Function for Tuples with Named Fields | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 |
| NamedTuple | namedtuple() Factory Function for Tuples with Named Fields | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 |
| re | This module provides regular expression matching operations similar to those found in Perl. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 |
| re | This module provides regular expression matching operations similar to those found in Perl. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 |
Microsoft.VisualBasic.Language.Python.re
Microsoft.VisualBasic.Language.UnixBash
| Type | Summary | Package | Members |
|---|---|---|---|
| CowsayTricks | Cowsay tricks for showing your message more friendly. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
7 |
| CowsayTricks | Cowsay tricks for showing your message more friendly. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
7 |
| FileDelete | rm -rf / | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| FileDelete | rm -rf / | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
| GrepOptions | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
11 | |
| GrepOptions | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
11 | |
| GrepRegx | grep -acinv * "pattern" <= "filename or text" | grep -acinv * "pattern" << "filename" | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
7 |
| GrepRegx | grep -acinv * "pattern" <= "filename or text" | grep -acinv * "pattern" << "filename" | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
7 |
| PS1 | PS (Prompt Sign) | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
15 |
| PS1 | PS (Prompt Sign) | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
15 |
| Search | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
15 | |
| Search | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
15 | |
| ShellSyntax | VB.NET language shell syntax supports exports | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
9 |
| ShellSyntax | VB.NET language shell syntax supports exports | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
9 |
| TextAPI | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
9 | |
| TextAPI | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
9 | |
| tree | bash tree | awk -F: '{print '}|tail -n1 # 865 directories, 7957 files | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
0 |
| tree | bash tree | awk -F: '{print '}|tail -n1 # 865 directories, 7957 files | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
0 |
| wildcardsCompatible | Using regular expression to find a match on the file name. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
7 |
| wildcardsCompatible | Using regular expression to find a match on the file name. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
7 |
Microsoft.VisualBasic.Language.UnixBash.FileSystem
| Type | Summary | Package | Members |
|---|---|---|---|
| File | Asbtract file IO model | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 |
| File | Asbtract file IO model | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 |
| FileHandle | 文件系统对象的句柄 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
7 |
| FileHandle | 文件系统对象的句柄 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
7 |
Microsoft.VisualBasic.Language.UnixBash.SearchOpt
Microsoft.VisualBasic.Language.Value`1
Microsoft.VisualBasic.Language.Values
| Type | Summary | Package | Members |
|---|---|---|---|
| ByRefValueExtensions | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
6 | |
| ByRefValueExtensions | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
6 | |
| Clones | Some extension for copy a collection object. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| Clones | Some extension for copy a collection object. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
Microsoft.VisualBasic.Language.Vectorization
| Type | Summary | Package | Members |
|---|---|---|---|
| BooleanVector | Boolean Array | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
17 |
| BooleanVector | Boolean Array | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
17 |
| Extensions | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 | |
| Extensions | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 | |
| Strings | The String module contains procedures used to perform string operations. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 |
| Strings | The String module contains procedures used to perform string operations. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 |
| StringVector | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
9 | |
| StringVector | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
9 | |
| Vector | VB.NET object collection | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
22 |
| Vector | VB.NET object collection | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
22 |
| VectorSchemaProvider | Schema provider of the VectorShadows | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
22 |
| VectorSchemaProvider | Schema provider of the VectorShadows | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
22 |
| VectorShadows | Vectorization programming language feature for VisualBasic | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
18 |
| VectorShadows | Vectorization programming language feature for VisualBasic | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
18 |
Microsoft.VisualBasic.Linq
| Type | Summary | Package | Members |
|---|---|---|---|
| Enumeration | Exposes the enumerator, which supports a simple iteration over a collection of a specified type.To browse the .NET Framework source code for this type, see the Reference Source. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 |
| Enumeration | Exposes the enumerator, which supports a simple iteration over a collection of a specified type.To browse the .NET Framework source code for this type, see the Reference Source. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 |
| EnumerationExtensions | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 | |
| EnumerationExtensions | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 | |
| Extensions | Linq Helpers.(为了方便编写Linq代码而构建的一个拓展模块) | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
44 |
| Extensions | Linq Helpers.(为了方便编写Linq代码而构建的一个拓展模块) | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
44 |
| IteratorExtensions | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
13 | |
| IteratorExtensions | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
13 | |
| JoinExtensions | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
6 | |
| JoinExtensions | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
6 | |
| NumericSequence | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
6 | |
| NumericSequence | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
6 | |
| PipelineExtensions | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 | |
| PipelineExtensions | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 | |
| SeqValue | Value T with sequence index SeqValue.i. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
15 |
| SeqValue | Value T with sequence index SeqValue.i. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
15 |
| SetValue | Set value linq expression helper | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
9 |
| SetValue | Set value linq expression helper | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
9 |
| SetValuExtension | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 | |
| SetValuExtension | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 | |
| TakesExtension | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
10 | |
| TakesExtension | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
10 | |
| VectorAssertExtensions | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 | |
| VectorAssertExtensions | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 | |
| VectorAssertor | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
7 | |
| VectorAssertor | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
7 | |
| WhichIndex | Where is the Min() or Max() or first TRUE or FALSE ? (这个模块之中的函数返回来的都是集合之中的符合条件的对象元素的index坐标) | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
20 |
| WhichIndex | Where is the Min() or Max() or first TRUE or FALSE ? (这个模块之中的函数返回来的都是集合之中的符合条件的对象元素的index坐标) | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
20 |
| WhichSymbol | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 | |
| WhichSymbol | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 |
Microsoft.VisualBasic.MachineLearning
| Type | Summary | Package | Members |
|---|---|---|---|
| Extensions | Microsoft.VisualBasic.DeepLearning 6.0.9753.4776 |
3 | |
| Extensions | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
4 | |
| Extensions | Numerically stable activation and normalization helpers shared by the deep learning models. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
3 |
| Extensions | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
3 | |
| IterationReporter | 用于报告基于迭代的机器学习算法的状态进度之类的信息的框架 | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
2 |
| IterationReporter | 用于报告基于迭代的机器学习算法的状态进度之类的信息的框架 | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
2 |
| Model | the base type of the machine learning model | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
0 |
| Model | the base type of the machine learning model | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
0 |
Microsoft.VisualBasic.MachineLearning.Bootstrapping.GraphEmbedding
| Type | Summary | Package | Members |
|---|---|---|---|
| Algorithm | "Improving Knowledge Graph Embedding Using Simple Constraints" (ACL-2018) ### Parameters You can changes parameter when training the model k = number of dimensions lmbda… | Microsoft.VisualBasic.MachineLearning.Bootstrapping 1.0.9753.4776 |
14 |
| Algorithm | "Improving Knowledge Graph Embedding Using Simple Constraints" (ACL-2018) ### Parameters You can changes parameter when training the model k = number of dimensions lmbda… | Microsoft.VisualBasic.MachineLearning.Bootstrapping 1.0.9762.11310 |
14 |
Microsoft.VisualBasic.MachineLearning.Bootstrapping.GraphEmbedding.complex
Microsoft.VisualBasic.MachineLearning.Bootstrapping.GraphEmbedding.complex_NNE
Microsoft.VisualBasic.MachineLearning.Bootstrapping.GraphEmbedding.complex_NNE_AER
Microsoft.VisualBasic.MachineLearning.Bootstrapping.GraphEmbedding.complex_R
Microsoft.VisualBasic.MachineLearning.Bootstrapping.GraphEmbedding.struct
Microsoft.VisualBasic.MachineLearning.Bootstrapping.node2vec
| Type | Summary | Package | Members |
|---|---|---|---|
| AliasMethod | Microsoft.VisualBasic.MachineLearning.Bootstrapping 1.0.9753.4776 |
2 | |
| AliasMethod | Microsoft.VisualBasic.MachineLearning.Bootstrapping 1.0.9762.11310 |
2 | |
| Graph | Created by freemso on 17-3-14. | Microsoft.VisualBasic.MachineLearning.Bootstrapping 1.0.9753.4776 |
9 |
| Graph | Created by freemso on 17-3-14. | Microsoft.VisualBasic.MachineLearning.Bootstrapping 1.0.9762.11310 |
9 |
| Solver | Created by freemso on 17-3-14. | Microsoft.VisualBasic.MachineLearning.Bootstrapping 1.0.9753.4776 |
2 |
| Solver | Created by freemso on 17-3-14. | Microsoft.VisualBasic.MachineLearning.Bootstrapping 1.0.9762.11310 |
2 |
Microsoft.VisualBasic.MachineLearning.CellularAutomaton
| Type | Summary | Package | Members |
|---|---|---|---|
| BoundaryMode | 网格边界处理模式。 | Microsoft.VisualBasic.MachineLearning.CellularAutomaton 1.0.9753.4776 |
4 |
| BoundaryMode | 网格边界处理模式。 | Microsoft.VisualBasic.MachineLearning.CellularAutomaton 1.0.9762.11310 |
4 |
| CellEntity | Microsoft.VisualBasic.MachineLearning.CellularAutomaton 1.0.9753.4776 |
4 | |
| CellEntity | Microsoft.VisualBasic.MachineLearning.CellularAutomaton 1.0.9762.11310 |
4 | |
| Individual | Microsoft.VisualBasic.MachineLearning.CellularAutomaton 1.0.9753.4776 |
2 | |
| Individual | Microsoft.VisualBasic.MachineLearning.CellularAutomaton 1.0.9762.11310 |
2 | |
| Neighborhoods | 邻居拓扑偏移表的生成器。各拓扑的偏移集合集中维护,新增拓扑仅需扩充本模块,符合开闭原则。 | Microsoft.VisualBasic.MachineLearning.CellularAutomaton 1.0.9753.4776 |
3 |
| Neighborhoods | 邻居拓扑偏移表的生成器。各拓扑的偏移集合集中维护,新增拓扑仅需扩充本模块,符合开闭原则。 | Microsoft.VisualBasic.MachineLearning.CellularAutomaton 1.0.9762.11310 |
3 |
| NeighborhoodType | 元胞自动机的邻居拓扑类型。 | Microsoft.VisualBasic.MachineLearning.CellularAutomaton 1.0.9753.4776 |
6 |
| NeighborhoodType | 元胞自动机的邻居拓扑类型。 | Microsoft.VisualBasic.MachineLearning.CellularAutomaton 1.0.9762.11310 |
6 |
| Simulator | Microsoft.VisualBasic.MachineLearning.CellularAutomaton 1.0.9753.4776 |
4 | |
| Simulator | Microsoft.VisualBasic.MachineLearning.CellularAutomaton 1.0.9762.11310 |
4 |
Microsoft.VisualBasic.MachineLearning.CNN
| Type | Summary | Package | Members |
|---|---|---|---|
| CNNLayerArguments | 层的“规格”(layer specification):一个被延迟创建的层描述。 | Microsoft.VisualBasic.DeepLearning 6.0.9753.4776 |
4 |
| CNNLayerArguments | The "layer specification": a deferred description of a layer that has not been created yet. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
4 |
| CNNLayers | 搭建 CNN 网络时使用的“层规格”工厂函数。 | Microsoft.VisualBasic.DeepLearning 6.0.9753.4776 |
17 |
| CNNLayers | Factory functions for building the layer specifications of a CNN network. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
17 |
| ConvolutionalNN | A network class holding the layers and some helper functions for training and validation. | Microsoft.VisualBasic.DeepLearning 6.0.9753.4776 |
14 |
| ConvolutionalNN | A network class holding the layers and some helper functions for training and validation. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
17 |
| DataLink | Microsoft.VisualBasic.DeepLearning 6.0.9753.4776 |
1 | |
| DataLink | Base class for layer links that hold the input and output DataBlock of a layer. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
1 |
| Dimension | The layer dimension data | Microsoft.VisualBasic.DeepLearning 6.0.9753.4776 |
8 |
| Dimension | The layer dimension data | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
10 |
| LayerBuilder | Microsoft.VisualBasic.DeepLearning 6.0.9753.4776 |
21 | |
| LayerBuilder | Builder that assembles the ordered layer list of a ConvolutionalNN. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
23 |
| LayerTypes | Microsoft.VisualBasic.DeepLearning 6.0.9753.4776 |
23 | |
| LayerTypes | Identifies the kind of a CNN layer; the DescriptionAttribute value is the tag persisted in the model file. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
38 |
| ReadModelCNN | Deserializes a ConvolutionalNN from the CNN binary model format produced by SaveModelCNN. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
1 |
| SaveModelCNN | Serializes a ConvolutionalNN into the CNN binary model format that is read back by ReadModelCNN. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
1 |
| Trainer | Microsoft.VisualBasic.DeepLearning 6.0.9753.4776 |
1 | |
| Trainer | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
2 | |
| Util | Microsoft.VisualBasic.DeepLearning 6.0.9753.4776 |
1 | |
| Util | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
1 |
Microsoft.VisualBasic.MachineLearning.CNN.data
| Type | Summary | Package | Members |
|---|---|---|---|
| BackPropResult | When we have done a back propagation of the network we will receive a result of weight adjustments required to learn. | Microsoft.VisualBasic.DeepLearning 6.0.9753.4776 |
7 |
| BackPropResult | When we have done a back propagation of the network we will receive a result of weight adjustments required to learn. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
8 |
| DataBlock | Holding all the data handled by the network. | Microsoft.VisualBasic.DeepLearning 6.0.9753.4776 |
44 |
| DataBlock | Holding all the data handled by the network. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
47 |
| OutputDefinition | This class will hold the definitions that bridge two layers. | Microsoft.VisualBasic.DeepLearning 6.0.9753.4776 |
5 |
| OutputDefinition | This class will hold the definitions that bridge two layers. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
7 |
| TrainResult | Created by danielp on 1/27/17. | Microsoft.VisualBasic.DeepLearning 6.0.9753.4776 |
2 |
| TrainResult | Created by danielp on 1/27/17. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
3 |
Microsoft.VisualBasic.MachineLearning.CNN.layers
| Type | Summary | Package | Members |
|---|---|---|---|
| Conv2DTransposeLayer | Microsoft.VisualBasic.DeepLearning 6.0.9753.4776 |
5 | |
| Conv2DTransposeLayer | Transposed (de)convolution layer: it upsamples a feature map back to a larger spatial size by scattering each input value over the receptive field of every filter. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
7 |
| ConvolutionLayer | This layer uses different filters to find attributes of the data that affects the result. | Microsoft.VisualBasic.DeepLearning 6.0.9753.4776 |
8 |
| ConvolutionLayer | This layer uses different filters to find attributes of the data that affects the result. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
10 |
| DropoutLayer | This layer will remove some random activations in order to defeat over-fitting. | Microsoft.VisualBasic.DeepLearning 6.0.9753.4776 |
5 |
| DropoutLayer | This layer will remove some random activations in order to defeat over-fitting. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
7 |
| FourierFeatureLayer | Based on the paper "Fourier Features Let Networks Learn High Frequency Functions in Low Dimensional Domains" (2020) presented at NeurIPS (https://bmild.github.io/fourfeat/index.… | Microsoft.VisualBasic.DeepLearning 6.0.9753.4776 |
5 |
| FourierFeatureLayer | Based on the paper "Fourier Features Let Networks Learn High Frequency Functions in Low Dimensional Domains" (2020) presented at NeurIPS (https://bmild.github.io/fourfeat/index.… | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
5 |
| FullyConnectedLayer | Neurons in a fully connected layer have full connections to all activations in the previous layer, as seen in regular Neural Networks. | Microsoft.VisualBasic.DeepLearning 6.0.9753.4776 |
7 |
| FullyConnectedLayer | Neurons in a fully connected layer have full connections to all activations in the previous layer, as seen in regular Neural Networks. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
9 |
| GaussianLayer | Gaussian activation layer. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
6 |
| InputLayer | The input layer is a simple layer that will pass the data though and create a window into the full training data set. | Microsoft.VisualBasic.DeepLearning 6.0.9753.4776 |
8 |
| InputLayer | The input layer is a simple layer that will pass the data though and create a window into the full training data set. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
9 |
| Layer | A convolution neural network is built of layers that the data traverses back and forth in order to predict what the network sees in the data. | Microsoft.VisualBasic.DeepLearning 6.0.9753.4776 |
4 |
| Layer | A convolution neural network is built of layers that the data traverses back and forth in order to predict what the network sees in the data. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
4 |
| LeakyReluLayer | Leaky rectified linear unit activation: f(x) = x for x > 0 and f(x) = leakySlope * x otherwise. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
6 |
| LocalResponseNormalizationLayer | This layer is useful when we are dealing with ReLU neurons. | Microsoft.VisualBasic.DeepLearning 6.0.9753.4776 |
5 |
| LocalResponseNormalizationLayer | This layer is useful when we are dealing with ReLU neurons. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
7 |
| MaxoutLayer | Implements Maxout nonlinearity that computes x to max(x) where x is a vector of size group_size. | Microsoft.VisualBasic.DeepLearning 6.0.9753.4776 |
5 |
| MaxoutLayer | Implements Maxout nonlinearity that computes x to max(x) where x is a vector of size group_size. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
7 |
| PoolingLayer | This layer will reduce the dataset by creating a smaller zoomed out version. | Microsoft.VisualBasic.DeepLearning 6.0.9753.4776 |
6 |
| PoolingLayer | This layer will reduce the dataset by creating a smaller zoomed out version. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
8 |
| RectifiedLinearUnitsLayer | This is a layer of neurons that applies the non-saturating activation function f(x)=max(0,x). | Microsoft.VisualBasic.DeepLearning 6.0.9753.4776 |
5 |
| RectifiedLinearUnitsLayer | This is a layer of neurons that applies the non-saturating activation function f(x)=max(0,x). | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
7 |
| SigmoidLayer | Implements Sigmoid nonlinearity elementwise x to 1/(1+e^(-x)) so the output is between 0 and 1. | Microsoft.VisualBasic.DeepLearning 6.0.9753.4776 |
5 |
| SigmoidLayer | Implements Sigmoid nonlinearity elementwise x to 1/(1+e^(-x)) so the output is between 0 and 1. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
6 |
| TanhLayer | Implements Tanh nonlinearity elementwise x to tanh(x) so the output is between -1 and 1. | Microsoft.VisualBasic.DeepLearning 6.0.9753.4776 |
5 |
| TanhLayer | Implements Tanh nonlinearity elementwise x to tanh(x) so the output is between -1 and 1. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
6 |
Microsoft.VisualBasic.MachineLearning.CNN.losslayers
| Type | Summary | Package | Members |
|---|---|---|---|
| LossLayer | Created by danielp on 1/25/17. | Microsoft.VisualBasic.DeepLearning 6.0.9753.4776 |
6 |
| LossLayer | Base class of the loss layers that terminate a network: it flattens the incoming activations into a vector and computes the loss together with the gradient consumed by the backwar… | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
13 |
| RegressionLayer | Regression layer is used when your output is an area of data. | Microsoft.VisualBasic.DeepLearning 6.0.9753.4776 |
4 |
| RegressionLayer | Regression layer is used when your output is an area of data. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
7 |
| SoftMaxLayer | This layer will squash the result of the activations in the fully connected layer and give you a value of 0 to 1 for all output activations. | Microsoft.VisualBasic.DeepLearning 6.0.9753.4776 |
4 |
| SoftMaxLayer | This layer will squash the result of the activations in the fully connected layer and give you a value of 0 to 1 for all output activations. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
7 |
| SVMLayer | This layer uses the input area trying to find a line to separate the correct activation from the incorrect ones. | Microsoft.VisualBasic.DeepLearning 6.0.9753.4776 |
4 |
| SVMLayer | This layer uses the input area trying to find a line to separate the correct activation from the incorrect ones. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
7 |
Microsoft.VisualBasic.MachineLearning.CNN.trainers
| Type | Summary | Package | Members |
|---|---|---|---|
| AdaDeltaTrainer | Adaptive delta will look at the differences between the expected result and the current result to train the network. | Microsoft.VisualBasic.DeepLearning 6.0.9753.4776 |
3 |
| AdaDeltaTrainer | Adaptive delta will look at the differences between the expected result and the current result to train the network. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
4 |
| AdaGradTrainer | The adaptive gradient trainer will over time sum up the square of the gradient and use it to change the weights. | Microsoft.VisualBasic.DeepLearning 6.0.9753.4776 |
2 |
| AdaGradTrainer | The adaptive gradient trainer will over time sum up the square of the gradient and use it to change the weights. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
3 |
| AdamTrainer | Adaptive Moment Estimation is an update to RMSProp optimizer. | Microsoft.VisualBasic.DeepLearning 6.0.9753.4776 |
3 |
| AdamTrainer | Adaptive Moment Estimation is an update to RMSProp optimizer. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
4 |
| NesterovTrainer | Another extension of gradient descent is due to Yurii Nesterov from 1983,[7] and has been subsequently generalized @author Daniel Persson (mailto.woden@gmail.com) | Microsoft.VisualBasic.DeepLearning 6.0.9753.4776 |
1 |
| NesterovTrainer | Another extension of gradient descent is due to Yurii Nesterov from 1983,[7] and has been subsequently generalized @author Daniel Persson (mailto.woden@gmail.com) | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
2 |
| SGDTrainer | Stochastic gradient descent (often shortened in SGD), also known as incremental gradient descent, is a stochastic approximation of the gradient descent optimization method for min… | Microsoft.VisualBasic.DeepLearning 6.0.9753.4776 |
1 |
| SGDTrainer | Stochastic gradient descent (often shortened in SGD), also known as incremental gradient descent, is a stochastic approximation of the gradient descent optimization method for min… | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
2 |
| TrainerAlgorithm | Trainers take the generated output of activations and gradients in order to modify the weights in the network to make a better prediction the next time the network runs with a da… | Microsoft.VisualBasic.DeepLearning 6.0.9753.4776 |
11 |
| TrainerAlgorithm | Trainers take the generated output of activations and gradients in order to modify the weights in the network to make a better prediction the next time the network runs with a da… | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
16 |
| WindowGradTrainer | This is AdaGrad but with a moving window weighted average so the gradient is not accumulated over the entire history of the run. | Microsoft.VisualBasic.DeepLearning 6.0.9753.4776 |
1 |
| WindowGradTrainer | This is AdaGrad but with a moving window weighted average so the gradient is not accumulated over the entire history of the run. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
2 |
Microsoft.VisualBasic.MachineLearning.ComponentModel
| Type | Summary | Package | Members |
|---|---|---|---|
| ConstantStatus0 | A constant value as the initial value generator: the ConstantStatus0.C value will always be generated. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
3 |
| RandomStatus0 | Generate the initial value from a uniform random distribution: the value is sampled from the interval between RandomStatus0.Min and RandomStatus0.Max. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
6 |
| Status0 | The abstract model of the initial value generator of the network node status. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
4 |
Microsoft.VisualBasic.MachineLearning.ComponentModel.Activations
| Type | Summary | Package | Members |
|---|---|---|---|
| ActiveFunction | 激活函数的存储于XML文档之中的数据模型 | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
13 |
| ActiveFunction | 激活函数的存储于XML文档之中的数据模型 | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
13 |
| BipolarSigmoid | Bipolar sigmoid activation function. | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
5 |
| BipolarSigmoid | Bipolar sigmoid activation function. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
7 |
| HyperbolicTangent | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
2 | |
| HyperbolicTangent | The hyperbolic tangent activation function, its output range is [-1, 1]. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
4 |
| IActivationFunction | Activation function interface. | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
4 |
| IActivationFunction | Activation function interface. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
8 |
| Identical | The identity activation function: f(x) = x. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
4 |
| QLinear | A quadratic-linear activation function: f(x) = ln(x ^ 2) when x >= 1, otherwise zero. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
4 |
| ReLU | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
1 | |
| ReLU | The rectified linear unit (ReLU) activation function: the input value which is less than the threshold will be clipped as the threshold value. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
11 |
| Sigmoid | Sigmoid activation function. | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
5 |
| Sigmoid | Sigmoid activation function. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
8 |
| SigmoidFunction | https://github.com/trentsartain/Neural-Network/blob/master/NeuralNetwork/NeuralNetwork/Network/Sigmoid.cs | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
0 |
| SigmoidFunction | https://github.com/trentsartain/Neural-Network/blob/master/NeuralNetwork/NeuralNetwork/Network/Sigmoid.cs | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
5 |
| Sinc | The sinc (cardinal sine) activation function: f(x) = sin(x) / x. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
4 |
| Softplus | The softplus activation function: f(x) = ln(1 + e ^ x). | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
4 |
| Threshold | Threshold activation function. | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
3 |
| Threshold | Threshold activation function. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
6 |
Microsoft.VisualBasic.MachineLearning.ComponentModel.StoreProcedure
| Type | Summary | Package | Members |
|---|---|---|---|
| DataSet | A training dataset that stored in XML file. | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
7 |
| DataSet | A training dataset that stored in XML file. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
9 |
| Diagnostics | The diagnostic helpers of the training DataSet object. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
2 |
| MLDataFrame | a collection of the samples data | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
6 |
| MLDataFrame | a collection of the samples data | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
6 |
| NormalizeMatrix | A matrix for make the sample input normalized.(进行所输入的样本数据的归一化的矩阵) | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
5 |
| NormalizeMatrix | A matrix for make the sample input normalized.(进行所输入的样本数据的归一化的矩阵) | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
8 |
| Sample | The training dataset, a data point with known label | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
7 |
| Sample | The training dataset, a data point with known label | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
8 |
| SampleData | the in-memory sample data object | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
11 |
| SampleData | the in-memory sample data object | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
15 |
| SampleHelper | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
1 | |
| SampleHelper | The projection helpers of the sample data collection. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
1 |
| SampleList | the Sample collection | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
5 |
| SampleList | the Sample collection | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
8 |
Microsoft.VisualBasic.MachineLearning.Convolutional
| Type | Summary | Package | Members |
|---|---|---|---|
| CeNiN | CeNiN (means "fetus" in Turkish) is a minimal implementation of feed-forward phase of deep Convolutional Neural Networks | Microsoft.VisualBasic.DeepLearning 6.0.9753.4776 |
11 |
| CeNiN | CeNiN (means "fetus" in Turkish) is a minimal implementation of feed-forward phase of deep Convolutional Neural Networks | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
19 |
| Convolution | Convolutional layer of a CeNiN network: it slides a bank of filters over the padded input and produces one output feature map per filter. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
10 |
| ImageProcessor | Provides the bitmap resizing strategies used to fit an arbitrary input image into the fixed spatial size expected by the network's input layer. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
0 |
| Input | the layer for image inputs | Microsoft.VisualBasic.DeepLearning 6.0.9753.4776 |
8 |
| Input | the layer for image inputs | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
11 |
| Layer | Microsoft.VisualBasic.DeepLearning 6.0.9753.4776 |
16 | |
| Layer | Base class of all layers in a CeNiN feed-forward network. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
24 |
| Output | Microsoft.VisualBasic.DeepLearning 6.0.9753.4776 |
6 | |
| Output | Terminal layer of a CeNiN network. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
8 |
| Pool | Max pooling layer of a CeNiN network: each output value is the maximum activation inside a pool x pool window of the input feature map. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
8 |
| ReLU | Rectified linear unit layer: applies f(x) = max(0, x) element wise. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
3 |
| SaveModel | Serializes a CeNiN model back into the CeNiN binary file format, the reverse of loading a model with LoadFile. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
1 |
| SoftMax | Softmax output layer that converts the incoming activations into a probability distribution. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
3 |
| Solver | High level inference helpers that run a loaded CeNiN network over an image and return the ranked class predictions. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
1 |
Microsoft.VisualBasic.MachineLearning.Convolutional.ImageProcessor
| Type | Summary | Package | Members |
|---|---|---|---|
| ResizingMethod | Specifies how a source bitmap is mapped onto the network input size. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
4 |
Microsoft.VisualBasic.MachineLearning.Darwinism
| Type | Summary | Package | Members |
|---|---|---|---|
| DifferentialEvolution | In evolutionary computation, differential evolution (DE) is a method that optimizes a problem by iteratively trying to improve a candidate solution with regard to a given measure… | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
5 |
| DifferentialEvolution | In evolutionary computation, differential evolution (DE) is a method that optimizes a problem by iteratively trying to improve a candidate solution with regard to a given measure… | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
3 |
| IIndividual | The individual model of the differential evolution: a chromosome which exposes its gene values as a indexable real valued vector. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
2 |
Microsoft.VisualBasic.MachineLearning.Darwinism.DifferentialEvolution
| Type | Summary | Package | Members |
|---|---|---|---|
| New | The delegate function for creates a new (usually randomized) IIndividual object. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
0 |
Microsoft.VisualBasic.MachineLearning.Darwinism.GAF
| Type | Summary | Package | Members |
|---|---|---|---|
| EnvironmentDriver | 发生种群进化所需要的环境压力产生器 | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
7 |
| EnvironmentDriver | 发生种群进化所需要的环境压力产生器 | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
7 |
| Fitness | A function wrapper for calculate genome fitness in current environment. | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
2 |
| Fitness | A function wrapper for calculate genome fitness in current environment. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
2 |
| GeneticAlgorithm | The GA engine core | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
12 |
| GeneticAlgorithm | The GA engine core | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
12 |
| outPrint | One iteration report record of the genetic algorithm evolution process. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
6 |
Microsoft.VisualBasic.MachineLearning.Darwinism.GAF.Helper
| Type | Summary | Package | Members |
|---|---|---|---|
| GeneticHelper | 在这个模块之中,涉及到SparseVector的所有函数都是应用于处理非常大的系统而构建的 | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
4 |
| GeneticHelper | 在这个模块之中,涉及到SparseVector的所有函数都是应用于处理非常大的系统而构建的 | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
7 |
| InitializationHelper | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
5 | |
| InitializationHelper | The helper module for creates the initial population of a genetic algorithm. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
3 |
| Memory | Dump the genetic algorithm evolution process into a text table file, so that the optimization procedure can be reviewed afterwards. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
4 |
Microsoft.VisualBasic.MachineLearning.Darwinism.GAF.Population
| Type | Summary | Package | Members |
|---|---|---|---|
| IPopulation | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
2 | |
| IPopulation | The abstract model of the genetic algorithm population. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
3 |
| ParallelComputeFitness | implements this interface for create custom parallel compute api function for run the genetic algorithm | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
1 |
| ParallelComputeFitness | implements this interface for create custom parallel compute api function for run the genetic algorithm | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
1 |
| ParallelDataSetCompute | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
2 | |
| ParallelDataSetCompute | A compute implementation for the case that the parallelism is already handled inside the fitness calculation function itself, so that the individuals of the population are eval… | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
2 |
| ParallelPopulationCompute | A parallel compute implementation which distributes the population individuals onto all of the available cpu cores. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
1 |
| Population | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
11 | |
| Population | The default genetic algorithm population model. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
11 |
| PopulationCollection | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
6 | |
| PopulationCollection | The abstract chromosome collection of one genetic algorithm population. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
7 |
| PopulationCollectionCreator | The delegate function for creates a new empty chromosome collection object. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
0 |
| PopulationList | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
6 | |
| PopulationList | A PopulationCollection implementation which is based on the List object. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
6 |
Microsoft.VisualBasic.MachineLearning.Darwinism.GAF.Population.ParallelPopulationCompute`1
| Type | Summary | Package | Members |
|---|---|---|---|
| ParallelTask | The parallel task which evaluates the fitness value of the assigned chromosome individuals on one cpu core. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
4 |
Microsoft.VisualBasic.MachineLearning.Darwinism.GAF.Population.SubstitutionStrategy
| Type | Summary | Package | Members |
|---|---|---|---|
| EliteReplacement | 种群的精英杂交更替策略 | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
3 |
| EliteReplacement | 种群的精英杂交更替策略 | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
3 |
| Extensions | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
1 | |
| IStrategy | The interface of the population substitution strategies: it decides how the new individuals replace the old ones and therefore controls the convergence speed and the diversity… | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
2 |
| SimpleReplacement | 最简单的种群更替策略 | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
2 |
| SimpleReplacement | 最简单的种群更替策略 | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
2 |
| Strategies | enums of the population substitution strategies | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
2 |
| Strategies | enums of the population substitution strategies | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
4 |
Microsoft.VisualBasic.MachineLearning.Darwinism.Models
| Type | Summary | Package | Members |
|---|---|---|---|
| Chromosome | In computer programming, genetic representation is a way of representing solutions/individuals in evolutionary computation methods. | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
3 |
| Chromosome | In computer programming, genetic representation is a way of representing solutions/individuals in evolutionary computation methods. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
3 |
| FitnessPool | Compute fitness and cache the result data in this pool. | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
0 |
| FitnessPool | Compute fitness and cache the result data in this pool. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
1 |
| GeneralFitnessPool | Compute fitness and cache the result data in this pool. | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
6 |
| GeneralFitnessPool | Compute fitness and cache the result data in this pool. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
8 |
Microsoft.VisualBasic.MachineLearning.Data
| Type | Summary | Package | Members |
|---|---|---|---|
| Extensions | Microsoft.VisualBasic.MachineLearning.Data.Extensions 5.0.9753.4776 |
1 | |
| Extensions | Microsoft.VisualBasic.MachineLearning.Data.Extensions 5.0.9762.11310 |
1 |
Microsoft.VisualBasic.MachineLearning.IterationReporter`1
| Type | Summary | Package | Members |
|---|---|---|---|
| DoReport | The delegate callback for reports the training progress and status of a iteration based machine learning algorithm. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
3 |
Microsoft.VisualBasic.MachineLearning.NeuralNetwork
| Type | Summary | Package | Members |
|---|---|---|---|
| HiddenLayersView | 只读视图:表示网络之中的全部隐藏层集合。 保留旧 "HiddenLayers" 公开接口之中的 HiddenLayersView.Count 与索引器, 但其内部不再维护遗留的 Layer/Neuron/Synapse 数据图。 | Microsoft.VisualBasic.DeepLearning 6.0.9753.4776 |
4 |
| HiddenLayersView | Read-only view over all hidden layers of a network. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
5 |
| Network | 人工神经网络计算用的对象模型。 本类以 CNN 的 ConvolutionalNN 全连接网络为统一的内部计算内核: 前向传播与反向传播(含参数更新)均由 CNN 内核完成; 对外公开的 Network.InputLayer / Network.HiddenLayer / Network.OutputLayer / Network.Activat… | Microsoft.VisualBasic.DeepLearning 6.0.9753.4776 |
24 |
| Network | Object model for artificial neural network computation. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
28 |
| NetworkKernel | 以 CNN 的 ConvolutionalNN 全连接网络作为 NeuralNetwork 的统一计算内核。 本模块通过 LayerBuilder 构建等价的 CNN 全连接网络, 供 Netz 与 Network 两个公开类作为内部计算内核使用。 | Microsoft.VisualBasic.DeepLearning 6.0.9753.4776 |
2 |
| NetworkKernel | Uses a fully connected ConvolutionalNN as the single compute kernel of the NeuralNetwork namespace. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
2 |
| NetworkLayerView | 只读视图:表示一个神经网络层(输入层 / 隐藏层 / 输出层)。 本视图不依赖任何遗留计算类(Layer/Neuron/Synapse), 其规模(NetworkLayerView.Count)与输出(NetworkLayerView.Output)均从 CNN 内核派生, 用于支撑 Network 的 Network.InputLayer /… | Microsoft.VisualBasic.DeepLearning 6.0.9753.4776 |
3 |
| NetworkLayerView | Read-only view of a single neural network layer (input, hidden or output). | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
4 |
| Netz | Neural Network for regression analysis. | Microsoft.VisualBasic.DeepLearning 6.0.9753.4776 |
10 |
| Netz | Feed forward neural network used for regression analysis. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
25 |
Microsoft.VisualBasic.MachineLearning.QLearning
| Type | Summary | Package | Members |
|---|---|---|---|
| Action | One specific environment state have some possible actions, but there is just one best action on the current environment state based on the accumulate q-values | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
3 |
| Action | One specific environment state have some possible actions, but there is just one best action on the current environment state based on the accumulate q-values | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
3 |
| IQStateFeatureSet | interface helper for write cdf model file | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
4 |
| IQStateFeatureSet | The feature set description of the Q-learning state objects, this interface is a helper for writing the cdf model file. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
4 |
| QLearning | Q Learning sample class The goal of this code sample is for the character @ to reach the goal area G compile using "javac QLearning.java" test using "java QLearning"… | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
9 |
| QLearning | Q Learning sample class The goal of this code sample is for the character @ to reach the goal area G compile using "javac QLearning.java" test using "java QLearning"… | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
11 |
| QState | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
8 | |
| QState | The abstract environment state model of the tabular Q-learning. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
10 |
| QTable | The heart of the Q-learning algorithm, the QTable contains the table which maps states, actions and their Q values. | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
15 |
| QTable | The heart of the Q-learning algorithm, the QTable contains the table which maps states, actions and their Q values. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
16 |
Microsoft.VisualBasic.MachineLearning.QLearning.DataModel
| Type | Summary | Package | Members |
|---|---|---|---|
| IndexCurve | 属性是时间 | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
1 |
| IndexCurve | 属性是时间 | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
3 |
| IQTable | The common interface of the tabular Q-learning models. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
5 |
| QModel | Data model of the QTable, you can using this object to stores the trained QL_AI into a file. | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
5 |
| QModel | Data model of the QTable, you can using this object to stores the trained QL_AI into a file. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
7 |
Microsoft.VisualBasic.MachineLearning.RandomForests
| Type | Summary | Package | Members |
|---|---|---|---|
| Branch | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
5 | |
| Branch | One node (branch) of a random forest decision tree. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
22 |
| Data | the training dataset | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
6 |
| Data | the training dataset | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
8 |
| File | The legacy parameter file reader of the RanFog program. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
1 |
| LF_c | Loss function used for continuous features | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
5 |
| LF_c | Loss function used for continuous features | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
10 |
| LossFunction | This class provides a method to calculate the Loss function of a given attribute. | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
3 |
| LossFunction | This class provides a method to calculate the Loss function of a given attribute. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
3 |
| RanFog | Random Forest for classified and regression problems | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
9 |
| RanFog | Random Forest for classified and regression problems | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
11 |
| Result | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
4 | |
| Result | The result object of the random forest training procedure. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
4 |
Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine.math
| Type | Summary | Package | Members |
|---|---|---|---|
| DenseMatrix | Currently this class is half mutable/immutable. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9753.4776 |
9 |
| DenseMatrix | Currently this class is half mutable/immutable. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9762.11310 |
9 |
Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine.math.functions
| Type | Summary | Package | Members |
|---|---|---|---|
| Divide | Created by kenny on 5/24/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9753.4776 |
1 |
| Divide | Created by kenny on 5/24/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9762.11310 |
1 |
| Multiply | Created by kenny on 5/24/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9753.4776 |
1 |
| Multiply | Created by kenny on 5/24/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9762.11310 |
1 |
| OneMinusX | Created by kenny on 5/24/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9753.4776 |
1 |
| OneMinusX | Created by kenny on 5/24/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9762.11310 |
1 |
| Power | Created by kenny on 5/24/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9753.4776 |
1 |
| Power | Created by kenny on 5/24/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9762.11310 |
1 |
| RandomDouble | Created by kenny on 5/24/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9753.4776 |
1 |
| RandomDouble | Created by kenny on 5/24/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9762.11310 |
1 |
| RandomGaussian | Created by kenny on 5/24/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9753.4776 |
1 |
| RandomGaussian | Created by kenny on 5/24/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9762.11310 |
1 |
| RangedSigmoid | Created by kenny on 5/24/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9753.4776 |
2 |
| RangedSigmoid | Created by kenny on 5/24/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9762.11310 |
2 |
| Round | Created by kenny on 5/24/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9753.4776 |
2 |
| Round | Created by kenny on 5/24/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9762.11310 |
2 |
| Sigmoid | Created by kenny on 5/24/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9753.4776 |
2 |
| Sigmoid | Created by kenny on 5/24/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9762.11310 |
2 |
Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine.math.functions.distance
| Type | Summary | Package | Members |
|---|---|---|---|
| DiscreteDistanceFunction | Created by kenny on 2/16/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9753.4776 |
2 |
| DiscreteDistanceFunction | Created by kenny on 2/16/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9762.11310 |
2 |
| DistanceFunction | kenny Distance is analogous to the 1 - normalized(similarityScore) | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9753.4776 |
1 |
| DistanceFunction | kenny Distance is analogous to the 1 - normalized(similarityScore) | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9762.11310 |
1 |
| EuclideanDistanceFunction | Created by kenny on 2/16/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9753.4776 |
2 |
| EuclideanDistanceFunction | Created by kenny on 2/16/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9762.11310 |
2 |
Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine.math.functions.doubledouble
| Type | Summary | Package | Members |
|---|---|---|---|
| Add | Created by kenny on 5/24/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9753.4776 |
1 |
| Add | Created by kenny on 5/24/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9762.11310 |
1 |
| Divide | Created by kenny on 5/24/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9753.4776 |
1 |
| Divide | Created by kenny on 5/24/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9762.11310 |
1 |
| Multiply | Created by kenny on 5/24/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9753.4776 |
1 |
| Multiply | Created by kenny on 5/24/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9762.11310 |
1 |
| Subtract | Created by kenny on 5/24/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9753.4776 |
1 |
| Subtract | Created by kenny on 5/24/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9762.11310 |
1 |
Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine.math.functions.doubledouble.rbm
| Type | Summary | Package | Members |
|---|---|---|---|
| ActivationState | Created by kenny on 5/25/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9753.4776 |
1 |
| ActivationState | Created by kenny on 5/25/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9762.11310 |
1 |
Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine.nlp
| Type | Summary | Package | Members |
|---|---|---|---|
| WordDictionary | Created by kenny on 5/23/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9753.4776 |
7 |
| WordDictionary | Created by kenny on 5/23/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9762.11310 |
7 |
Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine.nlp.encode
| Type | Summary | Package | Members |
|---|---|---|---|
| DiscreteRandomWordEncoder | Created by kenny on 6/3/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9753.4776 |
1 |
| DiscreteRandomWordEncoder | Created by kenny on 6/3/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9762.11310 |
1 |
| RandomWordEncoder | Created by kenny on 6/3/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9753.4776 |
1 |
| RandomWordEncoder | Created by kenny on 6/3/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9762.11310 |
1 |
| WordEncoder | Created by kenny on 6/3/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9753.4776 |
1 |
| WordEncoder | Created by kenny on 6/3/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9762.11310 |
1 |
Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine.nlp.ngram
| Type | Summary | Package | Members |
|---|---|---|---|
| NGramGenerator | Created by kenny on 5/23/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9753.4776 |
2 |
| NGramGenerator | Created by kenny on 5/23/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9762.11310 |
2 |
Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine.nn.rbm
Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine.nn.rbm.deep
| Type | Summary | Package | Members |
|---|---|---|---|
| DeepRBM | Created by kenny on 5/16/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9753.4776 |
5 |
| DeepRBM | Created by kenny on 5/16/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9762.11310 |
5 |
| LayerParameters | Created by kenny on 5/16/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9753.4776 |
6 |
| LayerParameters | Created by kenny on 5/16/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9762.11310 |
6 |
| RBMLayer | Created by kenny on 5/16/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9753.4776 |
4 |
| RBMLayer | Created by kenny on 5/16/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9762.11310 |
4 |
Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine.nn.rbm.factory
| Type | Summary | Package | Members |
|---|---|---|---|
| RandomRBMFactory | Created by kenny on 5/12/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9753.4776 |
1 |
| RandomRBMFactory | Created by kenny on 5/12/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9762.11310 |
1 |
| RBMFactory | Created by kenny on 5/16/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9753.4776 |
1 |
| RBMFactory | Created by kenny on 5/16/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9762.11310 |
1 |
Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine.nn.rbm.learn
| Type | Summary | Package | Members |
|---|---|---|---|
| BackErrorPropagation | Created by kenny on 5/23/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9753.4776 |
6 |
| BackErrorPropagation | Created by kenny on 5/23/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9762.11310 |
6 |
| ContrastiveDivergence | Created by kenny on 5/15/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9753.4776 |
4 |
| ContrastiveDivergence | Created by kenny on 5/15/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9762.11310 |
4 |
| DeepContrastiveDivergence | Created by kenny on 5/15/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9753.4776 |
3 |
| DeepContrastiveDivergence | Created by kenny on 5/15/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9762.11310 |
3 |
| LearningParameters | Created by kenny on 5/15/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9753.4776 |
11 |
| LearningParameters | Created by kenny on 5/15/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9762.11310 |
11 |
| MultiThreadedDeepContrastiveDivergence | Created by kenny on 5/22/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9753.4776 |
3 |
| MultiThreadedDeepContrastiveDivergence | Created by kenny on 5/22/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9762.11310 |
3 |
| RecurrentContrastiveDivergence | Created by kenny on 5/15/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9753.4776 |
5 |
| RecurrentContrastiveDivergence | Created by kenny on 5/15/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9762.11310 |
5 |
Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine.nn.rbm.save
| Type | Summary | Package | Members |
|---|---|---|---|
| DeepRBMPersister | Created by kenny on 5/22/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9753.4776 |
2 |
| DeepRBMPersister | Created by kenny on 5/22/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9762.11310 |
2 |
| RBMPersister | Created by kenny on 5/22/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9753.4776 |
4 |
| RBMPersister | Created by kenny on 5/22/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9762.11310 |
4 |
Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine.utils
| Type | Summary | Package | Members |
|---|---|---|---|
| PrettyPrint | Created by kenny on 5/13/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9753.4776 |
3 |
| PrettyPrint | Created by kenny on 5/13/14. | Microsoft.VisualBasic.MachineLearning.RestrictedBoltzmannMachine 1.0.9762.11310 |
3 |
Microsoft.VisualBasic.MachineLearning.RNN
| Type | Summary | Package | Members |
|---|---|---|---|
| Alphabet | Immutable set of symbols mapped indices. | Microsoft.VisualBasic.DeepLearning 6.0.9753.4776 |
7 |
| Alphabet | Immutable set of symbols mapped indices. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
7 |
| BasicRNN | RNN that uses integer indices as inputs and outputs. | Microsoft.VisualBasic.DeepLearning 6.0.9753.4776 |
1 |
| BasicRNN | RNN that uses integer indices as inputs and outputs. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
1 |
| CharacterSampleable | Network that can be sampled for a sequence of characters. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
2 |
| CharLevelRNN | RNN that can use both indices, and characters as inputs/outputs. | Microsoft.VisualBasic.DeepLearning 6.0.9753.4776 |
4 |
| CharLevelRNN | RNN that can use both indices, and characters as inputs/outputs. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
4 |
| CharRNN | Microsoft.VisualBasic.DeepLearning 6.0.9753.4776 |
5 | |
| CharRNN | Command line helpers for training, sampling and snapshotting a character level recurrent network. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
5 |
| IntegerSampleable | Network that can be sampled for a sequence of integer indices. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
2 |
| Math | Math helper functions | Microsoft.VisualBasic.DeepLearning 6.0.9753.4776 |
6 |
| Math | Math helper functions | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
7 |
| Matrix | Microsoft.VisualBasic.DeepLearning 6.0.9753.4776 |
32 | |
| Matrix | A dense M x N matrix of doubles used by the character level RNN implementation. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
40 |
| MultiLayerCharLevelRNN | Single layer character level RNN. | Microsoft.VisualBasic.DeepLearning 6.0.9753.4776 |
12 |
| MultiLayerCharLevelRNN | Multi layer character level RNN: a character level network backed by a stack of RNN layers. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
13 |
| MultiLayerRNN | Microsoft.VisualBasic.DeepLearning 6.0.9753.4776 |
10 | |
| MultiLayerRNN | Multi layer RNN: a stack of RNNLayer instances where the output of one layer feeds the next. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
10 |
| Options | Application options. | Microsoft.VisualBasic.DeepLearning 6.0.9753.4776 |
12 |
| Options | Application options. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
12 |
| Random | Helper functions for randomness. | Microsoft.VisualBasic.DeepLearning 6.0.9753.4776 |
4 |
| Random | Helper functions for randomness. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
4 |
| RNN | A recurrent neural network. | Microsoft.VisualBasic.DeepLearning 6.0.9753.4776 |
5 |
| RNN | A recurrent neural network. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
5 |
| RNNLayer | An RNN Layer with support for multi-layer networks. | Microsoft.VisualBasic.DeepLearning 6.0.9753.4776 |
16 |
| RNNLayer | An RNN Layer with support for multi-layer networks. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
20 |
| RNNTrainer | Microsoft.VisualBasic.DeepLearning 6.0.9753.4776 |
11 | |
| RNNTrainer | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
12 | |
| SingleLayerCharLevelRNN | Single layer character level RNN. | Microsoft.VisualBasic.DeepLearning 6.0.9753.4776 |
9 |
| SingleLayerCharLevelRNN | Single layer character level RNN. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
11 |
| SingleLayerRNN | Single layer RNN. | Microsoft.VisualBasic.DeepLearning 6.0.9753.4776 |
9 |
| SingleLayerRNN | Single layer RNN. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
11 |
| StringTrainingSet | Immutable training set for a character level RNN: a block of text together with the alphabet extracted from it. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
7 |
| Trainable | Trainable neural network. | Microsoft.VisualBasic.DeepLearning 6.0.9753.4776 |
1 |
| Trainable | Trainable neural network. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
1 |
| TrainingSet | Training set for sequences. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
3 |
| Utils | Utility functions for working with the jagged Double()() arrays used by the RNN matrix type. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
3 |
Microsoft.VisualBasic.MachineLearning.SHAP
| Type | Summary | Package | Members |
|---|---|---|---|
| LinearShapModel | 线性模型(多元线性回归)/ 广义线性模型(逻辑回归)的 SHAP 适配器。 分类任务使用逻辑回归,回归任务使用多元线性回归(MLR)。 两者的 SHAP 值都可以通过解析公式 phi_i = bi * (xi - E[xi]) 精确计算。 | Microsoft.VisualBasic.MachineLearning.SHAPAnalysis 1.0.9762.11310 |
8 |
| ModelPrediction | 一个模型在一个数据集之上的预测结果与常用的评估指标。 | Microsoft.VisualBasic.MachineLearning.SHAPAnalysis 1.0.9762.11310 |
12 |
| RanFogShapModel | 随机森林(RanFog)模型的 SHAP 适配器。 该适配器把 RanFog 训练之后保留下来的树结构(RanFog.Trees) 转换为 TreeSHAP 所需的 PkTree,从而可以计算精确的 森林 SHAP 值。同时它也提供对新样本的预测能力。 | Microsoft.VisualBasic.MachineLearning.SHAPAnalysis 1.0.9762.11310 |
7 |
| ShapAnalysisResult | 一个模型在一个数据集之上的整体 SHAP 分析结果。 | Microsoft.VisualBasic.MachineLearning.SHAPAnalysis 1.0.9762.11310 |
9 |
| ShapAnalyzer | SHAP 分析的门面:把任意 IShapExplainer 与数据集组合起来, 计算逐样本的 SHAP 矩阵以及全局特征重要性。 | Microsoft.VisualBasic.MachineLearning.SHAPAnalysis 1.0.9762.11310 |
1 |
| ShapCsvWriter | 把 SHAP 分析结果导出为 CSV 文件。 | Microsoft.VisualBasic.MachineLearning.SHAPAnalysis 1.0.9762.11310 |
2 |
| ShapDataset | 用于 SHAP 分析的数值数据集。 从空格(或制表符)分隔的文本文件之中加载,文件格式为: label id feature1 feature2 ... | Microsoft.VisualBasic.MachineLearning.SHAPAnalysis 1.0.9762.11310 |
11 |
| XGBoostShapModel | XGBoost / TGBoost 模型的 SHAP 适配器。 该适配器把 GBM 训练得到的每一棵回归树转换为 PkTree:叶值乘以学习率 eta,并叠加模型的 first_round_pred 作为基线偏置项,从而计算精确的 TreeSHAP 贡献。 | Microsoft.VisualBasic.MachineLearning.SHAPAnalysis 1.0.9762.11310 |
5 |
Microsoft.VisualBasic.MachineLearning.SVM
| Type | Summary | Package | Members |
|---|---|---|---|
| Cache | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
3 | |
| Cache | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
5 | |
| GaussianTransform | A transform which learns the mean and variance of a sample set and uses these to transform new data so that it has zero mean and unit variance. | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
4 |
| GaussianTransform | A transform which learns the mean and variance of a sample set and uses these to transform new data so that it has zero mean and unit variance. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
4 |
| GaussianTransformText | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
1 | |
| GaussianTransformText | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
2 | |
| GridSquare | Class representing a grid square result. | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
7 |
| GridSquare | Class representing a grid square result. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
7 |
| head_t | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
3 | |
| head_t | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
5 | |
| IRangeTransform | Interface implemented by range transforms. | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
2 |
| IRangeTransform | Interface implemented by range transforms. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
2 |
| Kernel | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
6 | |
| KernelType | Contains the various kernel types this library can use. | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
10 |
| KernelType | Contains the various kernel types this library can use. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
10 |
| LibSVM | The LibSVM style high level api for training a support vector machine model from a raw problem definition. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
1 |
| Logging | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
3 | |
| Logging | The console logging helper of the LibSVM port. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
3 |
| Model | Encapsulates an SVM Model. | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
15 |
| Model | Encapsulates an SVM Model. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
16 |
| ModelText | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
1 | |
| ModelText | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
2 | |
| Node | Encapsulates a node in a Problem vector, with an index and a value (for more efficient representation of sparse data. | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
9 |
| Node | Encapsulates a node in a Problem vector, with an index and a value (for more efficient representation of sparse data. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
9 |
| ONE_CLASS_Q | The one-class SVM formulation of the kernel matrix. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
4 |
| Parameter | This class contains the various parameters which can affect the way in which an SVM is learned. | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
19 |
| Parameter | This class contains the various parameters which can affect the way in which an SVM is learned. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
19 |
| ParameterSelection | This class contains routines which perform parameter selection for a model which uses C-SVC and an RBF kernel. | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
22 |
| ParameterSelection | This class contains routines which perform parameter selection for a model which uses C-SVC and an RBF kernel. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
22 |
| PrecomputedKernel | Class encapsulating a precomputed kernel, where each position indicates the similarity score for two items in the training data. | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
3 |
| PrecomputedKernel | Class encapsulating a precomputed kernel, where each position indicates the similarity score for two items in the training data. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
3 |
| Prediction | Class containing the routines to perform class membership prediction using a trained SVM. | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
5 |
| Prediction | Class containing the routines to perform class membership prediction using a trained SVM. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
5 |
| Problem | Encapsulates a problem, or set of vectors which must be classified. | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
7 |
| Problem | Encapsulates a problem, or set of vectors which must be classified. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
10 |
| ProblemText | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
1 | |
| ProblemText | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
2 | |
| Procedures | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
9 | |
| Procedures | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
21 | |
| RangeTransform | Class which encapsulates a range transformation. | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
9 |
| RangeTransform | Class which encapsulates a range transformation. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
9 |
| Scaling | Deals with the scaling of Problems so they have uniform ranges across all dimensions in order to result in better SVM performance. | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
1 |
| Scaling | Deals with the scaling of Problems so they have uniform ranges across all dimensions in order to result in better SVM performance. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
1 |
| SolutionInfo | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
6 | |
| SolutionInfo | The solution information of the support vector machine solver, which contains everything of the solution except the alpha coefficients. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
6 |
| Solver | An SMO algorithm in Fan et al., JMLR 6(2005), p. | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
3 |
| Solver | An SMO algorithm in Fan et al., JMLR 6(2005), p. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
4 |
| Solver_NU | Solver for nu-svm classification and regression additional constraint: e^T \alpha = constant | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
1 |
| Solver_NU | Solver for nu-svm classification and regression additional constraint: e^T \alpha = constant | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
2 |
| SVC_Q | Q matrices for various formulations | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
0 |
| SVC_Q | Q matrices for various formulations | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
4 |
| SVMExtensions | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
5 | |
| SVMModel | A trained svm data model that can be apply for classify analysis. | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
3 |
| SVMModel | A trained svm data model that can be apply for classify analysis. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
6 |
| SVMMultipleSet | A collection of trained svm data model that can be apply for multiple dimension class classify analysis. | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
3 |
| SVMMultipleSet | A collection of trained svm data model that can be apply for multiple dimension class classify analysis. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
3 |
| SVMPrediction | The prediction result of a support vector machine model. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
5 |
| SvmType | Contains all of the types of SVM this library can model. | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
10 |
| SvmType | Contains all of the types of SVM this library can model. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
10 |
| SVMUtilities | svm demo test | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
5 |
| SVMUtilities | svm demo test | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
7 |
| SVR_Q | The epsilon-SVR / nu-SVR formulation of the kernel matrix: the kernel matrix is expanded to twice of the sample size so that the two slack variables of each sample can be handl… | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
4 |
| Training | Class containing the routines to train SVM models. | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
3 |
| Training | Class containing the routines to train SVM models. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
3 |
| TransformText | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
1 | |
| TransformText | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
2 |
Microsoft.VisualBasic.MachineLearning.SVM.Procedures
| Type | Summary | Package | Members |
|---|---|---|---|
| decision_function | decision_function | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
0 |
| decision_function | The decision function of one binary sub-problem: it holds the lagrange multipliers of the samples and the bias term. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
3 |
Microsoft.VisualBasic.MachineLearning.SVM.StorageProcedure
| Type | Summary | Package | Members |
|---|---|---|---|
| GaussianTransformModel | The JSON serializable data model of a GaussianTransform object. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
6 |
| Model | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
15 | |
| Model | The JSON serializable data model of a trained LibSVM model. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
15 |
| ProblemTable | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
7 | |
| ProblemTable | A tabular training data model: each SupportVector row contains the feature values and the class labels of multiple topics. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
7 |
| RangeTransformModel | The JSON serializable data model of a RangeTransform object. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
9 |
| supportNodeVector | The JSON serializable data model of a support vector: the sparse Node array is stored as two separated index/value arrays. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
4 |
| SupportVector | data -> labels | Microsoft.VisualBasic.MachineLearning 5.0.9753.4776 |
2 |
| SupportVector | data -> labels | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
2 |
| SvmModelJSON | The JSON serializable storage model of a complete SVMModel object, which contains the inner model, the range transform and the class label factors. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
7 |
| SVMMultipleSetJSON | The JSON serializable storage model of a SVMMultipleSet object. | Microsoft.VisualBasic.MachineLearning 5.0.9762.11310 |
5 |
Microsoft.VisualBasic.MachineLearning.TensorFlow
| Type | Summary | Package | Members |
|---|---|---|---|
| Math | TensorFlow 风格的数学运算模块 提供逐元素运算、规约操作和裁剪功能,全部基于 Tensor 实现 | Microsoft.VisualBasic.MachineLearning.TensorFlow 1.0.9753.4776 |
40 |
| Math | TensorFlow 风格的数学运算模块 提供逐元素运算、规约操作和裁剪功能,全部基于 Tensor 实现 | Microsoft.VisualBasic.MachineLearning.TensorFlow 1.0.9762.11310 |
40 |
| nn | TensorFlow 风格的神经网络模块 提供激活函数、损失函数和正则化操作,全部基于 Tensor 实现 | Microsoft.VisualBasic.MachineLearning.TensorFlow 1.0.9753.4776 |
16 |
| nn | TensorFlow 风格的神经网络模块 提供激活函数、损失函数和正则化操作,全部基于 Tensor 实现 | Microsoft.VisualBasic.MachineLearning.TensorFlow 1.0.9762.11310 |
16 |
| Tensor | 张量类 - GNN中所有数值计算的基础数据结构 支持多维数组的存储和基本数学运算 | Microsoft.VisualBasic.MachineLearning.TensorFlow 1.0.9753.4776 |
82 |
| Tensor | 张量类 - GNN中所有数值计算的基础数据结构 支持多维数组的存储和基本数学运算 | Microsoft.VisualBasic.MachineLearning.TensorFlow 1.0.9762.11310 |
83 |
| TensorF | 单精度(Single / float32)多维张量。与双精度 Tensor 并列, 通过 TensorF.ToTensor() / TensorF.FromTensor()) 双向互转。 | Microsoft.VisualBasic.MachineLearning.TensorFlow 1.0.9762.11310 |
37 |
Microsoft.VisualBasic.MachineLearning.TensorFlow.AutomaticDifferentiation
| Type | Summary | Package | Members |
|---|---|---|---|
| Checkpoints | Increases performence by saving states that the backtracking derivative calculations can be performed between. | Microsoft.VisualBasic.MachineLearning.TensorFlow 1.0.9753.4776 |
4 |
| Differentiation | dy | Microsoft.VisualBasic.MachineLearning.TensorFlow 1.0.9753.4776 |
3 |
| Rev | Data type for automatic differentiation with reverse mode accumulation. | Microsoft.VisualBasic.MachineLearning.TensorFlow 1.0.9753.4776 |
14 |
| Tensor | Microsoft.VisualBasic.MachineLearning.TensorFlow 1.0.9753.4776 |
35 |
Microsoft.VisualBasic.MachineLearning.TensorFlow.AutomaticDifferentiation.Parallel
| Type | Summary | Package | Members |
|---|---|---|---|
| MultiplyScale | Microsoft.VisualBasic.MachineLearning.TensorFlow 1.0.9753.4776 |
1 | |
| SIMDMatMul | Microsoft.VisualBasic.MachineLearning.TensorFlow 1.0.9753.4776 |
1 |
Microsoft.VisualBasic.MachineLearning.TensorFlow.Compute
| Type | Summary | Package | Members |
|---|---|---|---|
| ITensorCompute | 张量计算后端契约。 | Microsoft.VisualBasic.MachineLearning.TensorFlow 1.0.9753.4776 |
54 |
| ITensorCompute | 张量计算后端契约。 | Microsoft.VisualBasic.MachineLearning.TensorFlow 1.0.9762.11310 |
66 |
| ITensorComputeF | 单精度张量计算后端契约。 | Microsoft.VisualBasic.MachineLearning.TensorFlow 1.0.9762.11310 |
30 |
| SIMDTensor | 默认的 SIMD 加速 CPU 计算后端。 | Microsoft.VisualBasic.MachineLearning.TensorFlow 1.0.9753.4776 |
39 |
| SIMDTensor | 默认的 SIMD 加速 CPU 计算后端。 | Microsoft.VisualBasic.MachineLearning.TensorFlow 1.0.9762.11310 |
39 |
| SIMDTensorF | 单精度张量的默认 SIMD 加速 CPU 计算后端。 | Microsoft.VisualBasic.MachineLearning.TensorFlow 1.0.9762.11310 |
24 |
| SparseCsr | CSR 稀疏矩阵载体(行 = 突触前,列 = 突触后)。 承载 ITensorCompute.SpMM()) 算子所需的全部稀疏结构信息。 | Microsoft.VisualBasic.MachineLearning.TensorFlow 1.0.9762.11310 |
11 |
| TensorComputeBase | ITensorCompute 的标量兜底实现。 | Microsoft.VisualBasic.MachineLearning.TensorFlow 1.0.9753.4776 |
62 |
| TensorComputeBase | ITensorCompute 的标量兜底实现。 | Microsoft.VisualBasic.MachineLearning.TensorFlow 1.0.9762.11310 |
76 |
| TensorComputeFBase | ITensorComputeF 的标量兜底实现(CPU 参考实现)。 | Microsoft.VisualBasic.MachineLearning.TensorFlow 1.0.9762.11310 |
35 |
Microsoft.VisualBasic.MachineLearning.TensorFlow.NumPy
| Type | Summary | Package | Members |
|---|---|---|---|
| NumPyModule | NumPy 兼容 API 模块 提供类 NumPy 的静态方法,全部基于 Tensor 实现 | Microsoft.VisualBasic.MachineLearning.TensorFlow 1.0.9753.4776 |
49 |
| NumPyModule | NumPy 兼容 API 模块 提供类 NumPy 的静态方法,全部基于 Tensor 实现 | Microsoft.VisualBasic.MachineLearning.TensorFlow 1.0.9762.11310 |
51 |
Microsoft.VisualBasic.MachineLearning.TensorFlow.NumPy.NumPyModule
| Type | Summary | Package | Members |
|---|---|---|---|
| RandomState | NumPy 风格的随机数子模块 np.random.rand(...) 和 np.random.randn(...) 对应 NumPy.RandomState.rand(...) | Microsoft.VisualBasic.MachineLearning.TensorFlow 1.0.9753.4776 |
3 |
| RandomState | NumPy 风格的随机数子模块 np.random.rand(...) 和 np.random.randn(...) 对应 NumPy.RandomState.rand(...) | Microsoft.VisualBasic.MachineLearning.TensorFlow 1.0.9762.11310 |
3 |
Microsoft.VisualBasic.MachineLearning.Transformer
| Type | Summary | Package | Members |
|---|---|---|---|
| DecoderLayer | One decoder layer: masked self attention, cross attention and a position wise feed forward network, each wrapped in a residual connection and layer normalization. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
9 |
| DecoderStack | A stack of DecoderLayer instances, applied one after another. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
7 |
| Embedding | Use a learned embedding layer to reduce the size of the word embedding space. | Microsoft.VisualBasic.DeepLearning 6.0.9753.4776 |
11 |
| Embedding | Use a learned embedding layer to reduce the size of the word embedding space. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
17 |
| EncoderLayer | One encoder layer: multi head self attention followed by a position wise feed forward network, each wrapped in a residual connection and layer normalization. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
6 |
| EncoderStack | A stack of EncoderLayer instances, applied one after another. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
6 |
| FeedForwardNetwork | Position wise feed forward network: two fully connected layers with a ReLU activation in between. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
6 |
| MultiHeadAttention | Scaled dot product multi head attention, implemented with the hand written operators of TensorOps and an explicit backward pass. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
7 |
| Optimizer | Implements the Adam optimizer | Microsoft.VisualBasic.DeepLearning 6.0.9753.4776 |
0 |
| Optimizer | 实现 Adam 优化器(参数 + 同形梯度累加器)。 | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
7 |
| OutputLayer | Produce a flat array with the same dimension as the number of words in the dictionary | Microsoft.VisualBasic.DeepLearning 6.0.9753.4776 |
1 |
| OutputLayer | Produce a flat array with the same dimension as the number of words in the dictionary | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
8 |
| TensorOps | Transformer 迁移辅助算子集合:补齐 Tensor 相对旧 AD 张量缺失的 N 维算子,并为每个算子提供显式反向传播实现。 | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
30 |
| TextProcessing | Text preprocessing helpers used by the translation demo: loading parallel sentence pairs, tokenizing sentences, computing sequence lengths and adding the start / stop markers. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
8 |
| TransformerModel | Transformer architecture as described in "Attention is all you need" | Microsoft.VisualBasic.DeepLearning 6.0.9753.4776 |
4 |
| TransformerModel | Transformer architecture as described in "Attention is all you need" | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
7 |
Microsoft.VisualBasic.MachineLearning.Transformer.DecoderLayer
| Type | Summary | Package | Members |
|---|---|---|---|
| Cache | Forward intermediates of one decode step, required by the backward pass. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
38 |
Microsoft.VisualBasic.MachineLearning.Transformer.EncoderLayer
| Type | Summary | Package | Members |
|---|---|---|---|
| Cache | Forward intermediates of one encode pass, required by the backward pass. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
26 |
Microsoft.VisualBasic.MachineLearning.Transformer.FeedForwardNetwork
| Type | Summary | Package | Members |
|---|---|---|---|
| Cache | 前向传播的中间量缓存,供反向传播使用。 | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
6 |
Microsoft.VisualBasic.MachineLearning.Transformer.MultiHeadAttention
| Type | Summary | Package | Members |
|---|---|---|---|
| Cache | Forward intermediates of the attention computation, required by the backward pass. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
18 |
Microsoft.VisualBasic.MachineLearning.Transformer.OutputLayer
| Type | Summary | Package | Members |
|---|---|---|---|
| Cache | Forward intermediates of the output projection, required by the backward pass. | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
6 |
Microsoft.VisualBasic.MachineLearning.Transformer.TransformerModel
| Type | Summary | Package | Members |
|---|---|---|---|
| DecoderStep | 一个解码步的前向记录,供 BPTT 反向使用。 | Microsoft.VisualBasic.DeepLearning 6.0.9762.11310 |
6 |
Microsoft.VisualBasic.MachineLearning.tSNE
| Type | Summary | Package | Members |
|---|---|---|---|
| BarnesHutGradient | Barnes-Hut 模式下的梯度与成本(KL 散度)计算 | Microsoft.VisualBasic.MachineLearning.t-SNE 1.0.9753.4776 |
1 |
| BarnesHutGradient | Barnes-Hut 模式下的梯度与成本(KL 散度)计算 | Microsoft.VisualBasic.MachineLearning.t-SNE 1.0.9762.11310 |
1 |
| CostFunction | Microsoft.VisualBasic.MachineLearning.t-SNE 1.0.9753.4776 |
5 | |
| CostFunction | Microsoft.VisualBasic.MachineLearning.t-SNE 1.0.9762.11310 |
5 | |
| Helper | Microsoft.VisualBasic.MachineLearning.t-SNE 1.0.9753.4776 |
17 | |
| Helper | Microsoft.VisualBasic.MachineLearning.t-SNE 1.0.9762.11310 |
17 | |
| NumericTableExtensions | t-SNE 降维算法的统一二维表入口。 | Microsoft.VisualBasic.MachineLearning.t-SNE 1.0.9753.4776 |
1 |
| NumericTableExtensions | t-SNE 降维算法的统一二维表入口。 | Microsoft.VisualBasic.MachineLearning.t-SNE 1.0.9762.11310 |
1 |
| RandomHelper | Microsoft.VisualBasic.MachineLearning.t-SNE 1.0.9753.4776 |
5 | |
| RandomHelper | Microsoft.VisualBasic.MachineLearning.t-SNE 1.0.9762.11310 |
5 | |
| SparseP | 稀疏联合概率矩阵(CSR 行压缩存储) | Microsoft.VisualBasic.MachineLearning.t-SNE 1.0.9753.4776 |
6 |
| SparseP | 稀疏联合概率矩阵(CSR 行压缩存储) | Microsoft.VisualBasic.MachineLearning.t-SNE 1.0.9762.11310 |
6 |
| SparseProbability | 稀疏联合概率矩阵的装配工具 | Microsoft.VisualBasic.MachineLearning.t-SNE 1.0.9753.4776 |
2 |
| SparseProbability | 稀疏联合概率矩阵的装配工具 | Microsoft.VisualBasic.MachineLearning.t-SNE 1.0.9762.11310 |
2 |
| SPNode | Barnes-Hut 空间划分树上的一个节点 | Microsoft.VisualBasic.MachineLearning.t-SNE 1.0.9753.4776 |
6 |
| SPNode | Barnes-Hut 空间划分树上的一个节点 | Microsoft.VisualBasic.MachineLearning.t-SNE 1.0.9762.11310 |
6 |
| SPTree | Barnes-Hut 空间划分树(2^dim 叉树) | Microsoft.VisualBasic.MachineLearning.t-SNE 1.0.9753.4776 |
10 |
| SPTree | Barnes-Hut 空间划分树(2^dim 叉树) | Microsoft.VisualBasic.MachineLearning.t-SNE 1.0.9762.11310 |
10 |
| tSNE | Microsoft.VisualBasic.MachineLearning.t-SNE 1.0.9753.4776 |
27 | |
| tSNE | Microsoft.VisualBasic.MachineLearning.t-SNE 1.0.9762.11310 |
27 |
Microsoft.VisualBasic.MachineLearning.tSNE.Helper
| Type | Summary | Package | Members |
|---|---|---|---|
| RowWorkspace | 每一行在进行 beta 二分搜索与 top-k 选择时所需要的线程私有工作区 | Microsoft.VisualBasic.MachineLearning.t-SNE 1.0.9753.4776 |
3 |
| RowWorkspace | 每一行在进行 beta 二分搜索与 top-k 选择时所需要的线程私有工作区 | Microsoft.VisualBasic.MachineLearning.t-SNE 1.0.9762.11310 |
3 |
Microsoft.VisualBasic.MachineLearning.XGBoost
Microsoft.VisualBasic.MachineLearning.XGBoost.DataSet
Microsoft.VisualBasic.MachineLearning.XGBoost.gbm
| Type | Summary | Package | Members |
|---|---|---|---|
| Dart | Gradient boosted DART tree implementation. | Microsoft.VisualBasic.MachineLearning.XGBoost 1.0.9753.4776 |
1 |
| Dart | Gradient boosted DART tree implementation. | Microsoft.VisualBasic.MachineLearning.XGBoost 1.0.9762.11310 |
1 |
| GBLinear | Linear booster implementation | Microsoft.VisualBasic.MachineLearning.XGBoost 1.0.9753.4776 |
4 |
| GBLinear | Linear booster implementation | Microsoft.VisualBasic.MachineLearning.XGBoost 1.0.9762.11310 |
4 |
| GBTree | Gradient boosted tree implementation. | Microsoft.VisualBasic.MachineLearning.XGBoost 1.0.9753.4776 |
4 |
| GBTree | Gradient boosted tree implementation. | Microsoft.VisualBasic.MachineLearning.XGBoost 1.0.9762.11310 |
4 |
| GradBooster | Interface of gradient boosting model. | Microsoft.VisualBasic.MachineLearning.XGBoost 1.0.9753.4776 |
5 |
| GradBooster | Interface of gradient boosting model. | Microsoft.VisualBasic.MachineLearning.XGBoost 1.0.9762.11310 |
5 |
| GradBooster_Factory | Microsoft.VisualBasic.MachineLearning.XGBoost 1.0.9753.4776 |
1 | |
| GradBooster_Factory | Microsoft.VisualBasic.MachineLearning.XGBoost 1.0.9762.11310 |
1 |
Microsoft.VisualBasic.MachineLearning.XGBoost.learner
| Type | Summary | Package | Members |
|---|---|---|---|
| ObjFunction | Objective function implementations. | Microsoft.VisualBasic.MachineLearning.XGBoost 1.0.9753.4776 |
5 |
| ObjFunction | Objective function implementations. | Microsoft.VisualBasic.MachineLearning.XGBoost 1.0.9762.11310 |
5 |
| RegLossObjLogistic | Logistic regression. | Microsoft.VisualBasic.MachineLearning.XGBoost 1.0.9753.4776 |
0 |
| RegLossObjLogistic | Logistic regression. | Microsoft.VisualBasic.MachineLearning.XGBoost 1.0.9762.11310 |
0 |
| SoftmaxMultiClassObjClassify | Multiclass classification. | Microsoft.VisualBasic.MachineLearning.XGBoost 1.0.9753.4776 |
0 |
| SoftmaxMultiClassObjClassify | Multiclass classification. | Microsoft.VisualBasic.MachineLearning.XGBoost 1.0.9762.11310 |
0 |
| SoftmaxMultiClassObjProb | Multiclass classification (predicted probability). | Microsoft.VisualBasic.MachineLearning.XGBoost 1.0.9753.4776 |
0 |
| SoftmaxMultiClassObjProb | Multiclass classification (predicted probability). | Microsoft.VisualBasic.MachineLearning.XGBoost 1.0.9762.11310 |
0 |
Microsoft.VisualBasic.MachineLearning.XGBoost.Predictor
| Type | Summary | Package | Members |
|---|---|---|---|
| ModelParam | Parameters. | Microsoft.VisualBasic.MachineLearning.XGBoost 1.0.9753.4776 |
0 |
| ModelParam | Parameters. | Microsoft.VisualBasic.MachineLearning.XGBoost 1.0.9762.11310 |
0 |
Microsoft.VisualBasic.MachineLearning.XGBoost.spark
| Type | Summary | Package | Members |
|---|---|---|---|
| SparkModelParam | Microsoft.VisualBasic.MachineLearning.XGBoost 1.0.9753.4776 |
8 | |
| SparkModelParam | Microsoft.VisualBasic.MachineLearning.XGBoost 1.0.9762.11310 |
8 |
Microsoft.VisualBasic.MachineLearning.XGBoost.train
| Type | Summary | Package | Members |
|---|---|---|---|
| AttributeList | Microsoft.VisualBasic.MachineLearning.XGBoost 1.0.9753.4776 |
7 | |
| AttributeList | Microsoft.VisualBasic.MachineLearning.XGBoost 1.0.9762.11310 |
7 | |
| Data | Microsoft.VisualBasic.MachineLearning.XGBoost 1.0.9753.4776 |
2 | |
| Data | Microsoft.VisualBasic.MachineLearning.XGBoost 1.0.9762.11310 |
2 | |
| GBM | Tiny implement of Gradient Boosting tree It is a Tiny implement of Gradient Boosting tree, based on XGBoost's scoring function and SLIQ's efficient tree building algorithm. | Microsoft.VisualBasic.MachineLearning.XGBoost 1.0.9753.4776 |
2 |
| GBM | Tiny implement of Gradient Boosting tree It is a Tiny implement of Gradient Boosting tree, based on XGBoost's scoring function and SLIQ's efficient tree building algorithm. | Microsoft.VisualBasic.MachineLearning.XGBoost 1.0.9762.11310 |
2 |
| ModelSerializer | Microsoft.VisualBasic.MachineLearning.XGBoost 1.0.9753.4776 |
2 | |
| ModelSerializer | Microsoft.VisualBasic.MachineLearning.XGBoost 1.0.9762.11310 |
2 | |
| Tree | Microsoft.VisualBasic.MachineLearning.XGBoost 1.0.9753.4776 |
5 | |
| Tree | Microsoft.VisualBasic.MachineLearning.XGBoost 1.0.9762.11310 |
5 | |
| TreeNode | Microsoft.VisualBasic.MachineLearning.XGBoost 1.0.9753.4776 |
30 | |
| TreeNode | Microsoft.VisualBasic.MachineLearning.XGBoost 1.0.9762.11310 |
27 |
Microsoft.VisualBasic.MachineLearning.XGBoost.tree
| Type | Summary | Package | Members |
|---|---|---|---|
| Node | Microsoft.VisualBasic.MachineLearning.XGBoost 1.0.9753.4776 |
1 | |
| Node | Microsoft.VisualBasic.MachineLearning.XGBoost 1.0.9762.11310 |
1 | |
| RegTree | Regression tree. | Microsoft.VisualBasic.MachineLearning.XGBoost 1.0.9753.4776 |
3 |
| RegTree | Regression tree. | Microsoft.VisualBasic.MachineLearning.XGBoost 1.0.9762.11310 |
3 |
| RTreeNodeStat | Statistics each node in tree. | Microsoft.VisualBasic.MachineLearning.XGBoost 1.0.9753.4776 |
0 |
| RTreeNodeStat | Statistics each node in tree. | Microsoft.VisualBasic.MachineLearning.XGBoost 1.0.9762.11310 |
0 |
Microsoft.VisualBasic.MachineLearning.XGBoost.tree.RegTree
Microsoft.VisualBasic.MachineLearning.XGBoost.util
| Type | Summary | Package | Members |
|---|---|---|---|
| FVec | Interface of feature vector. | Microsoft.VisualBasic.MachineLearning.XGBoost 1.0.9753.4776 |
1 |
| FVec | Interface of feature vector. | Microsoft.VisualBasic.MachineLearning.XGBoost 1.0.9762.11310 |
1 |
| FVecMapImpl | 稀疏矩阵 | Microsoft.VisualBasic.MachineLearning.XGBoost 1.0.9753.4776 |
0 |
| FVecMapImpl | 稀疏矩阵 | Microsoft.VisualBasic.MachineLearning.XGBoost 1.0.9762.11310 |
0 |
| FVecTransformer | 构建矩阵所使用的方法 | Microsoft.VisualBasic.MachineLearning.XGBoost 1.0.9753.4776 |
6 |
| FVecTransformer | 构建矩阵所使用的方法 | Microsoft.VisualBasic.MachineLearning.XGBoost 1.0.9762.11310 |
6 |
| ModelReader | Reads the Xgboost model from stream. | Microsoft.VisualBasic.MachineLearning.XGBoost 1.0.9753.4776 |
18 |
| ModelReader | Reads the Xgboost model from stream. | Microsoft.VisualBasic.MachineLearning.XGBoost 1.0.9762.11310 |
18 |
Microsoft.VisualBasic.Math
| Type | Summary | Package | Members |
|---|---|---|---|
| crandn | 正态分布随机数 | Microsoft.VisualBasic.Math.Randomizer 1.0.9753.4776 |
4 |
| crandn | 正态分布随机数 | Microsoft.VisualBasic.Math.Randomizer 1.0.9762.11310 |
4 |
| Crc32 | Crc32校验码 | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
4 |
| Crc32 | Crc32校验码 | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
4 |
| Extensions | 向量以及统计函数拓展 | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
35 |
| Extensions | 向量以及统计函数拓展 | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
24 |
| FastRandom | A fast random number generator for .NET, from https://www.codeproject.com/Articles/9187/A-fast-equivalent-for-System-Random Colin Green, January 2005 September 4th 2005 Added… | Microsoft.VisualBasic.Math.Randomizer 1.0.9753.4776 |
13 |
| FastRandom | A fast random number generator for .NET, from https://www.codeproject.com/Articles/9187/A-fast-equivalent-for-System-Random Colin Green, January 2005 September 4th 2005 Added… | Microsoft.VisualBasic.Math.Randomizer 1.0.9762.11310 |
13 |
| INumericMatrix | an abstract model of the numeric matrix object | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 |
| INumericMatrix | an abstract model of the numeric matrix object | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 |
| IProvideRandomValues | Microsoft.VisualBasic.Math.Randomizer 1.0.9753.4776 |
4 | |
| IProvideRandomValues | Microsoft.VisualBasic.Math.Randomizer 1.0.9762.11310 |
4 | |
| IRandomSeeds | Tells the function how to generates a new random seed? | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| IRandomSeeds | Tells the function how to generates a new random seed? | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
| IValueProvider | Generates a random number. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| IValueProvider | Generates a random number. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
| IVector | The numeric vector model | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 |
| IVector | The numeric vector model | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 |
| JavaMath | The class {@code Math} contains methods for performing basic numeric operations such as the elementary exponential, logarithm, square root, and trigonometric functions. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
20 |
| JavaMath | The class {@code Math} contains methods for performing basic numeric operations such as the elementary exponential, logarithm, square root, and trigonometric functions. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
20 |
| MatrixExtensions | This class contains methods that perform mathematical operations on matrices. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 |
| MatrixExtensions | This class contains methods that perform mathematical operations on matrices. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 |
| MersenneTwisterFast | MersenneTwisterFast: A simulation quality fast random number generator (MT19937) with the same public methods as java.util.Random. | Microsoft.VisualBasic.Math.Randomizer 1.0.9753.4776 |
22 |
| MersenneTwisterFast | MersenneTwisterFast: A simulation quality fast random number generator (MT19937) with the same public methods as java.util.Random. | Microsoft.VisualBasic.Math.Randomizer 1.0.9762.11310 |
22 |
| NumberEqualityComparer | 当两个数的误差值的绝对值小于阈值的时候认为两个数字相等 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
6 |
| NumberEqualityComparer | 当两个数的误差值的绝对值小于阈值的时候认为两个数字相等 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
6 |
| NumberExtension | https://github.com/cobaltblueocean/Mercury.Language.Extensions | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
13 |
| NumberExtension | https://github.com/cobaltblueocean/Mercury.Language.Extensions | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
13 |
| NumberGroups | Simple number vector grouping | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
17 |
| NumberGroups | Simple number vector grouping | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
17 |
| NumeralSystem | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 | |
| NumeralSystem | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 | |
| Percentage | 分数,百分比 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
17 |
| Percentage | 分数,百分比 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
17 |
| Permutator | This class provides a method to randomize the contents of an array @author Salindor. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 |
| Permutator | This class provides a method to randomize the contents of an array @author Salindor. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 |
| RandomExtensions | Some extension methods for Random for creating a few more kinds of random stuff. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
33 |
| RandomExtensions | Some extension methods for Random for creating a few more kinds of random stuff. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
33 |
| Randomizer | Random generator based on the random table.(请注意,这个模块之中的所有函数都是线程不安全的) ###### A Million Random Digits with 100,000 Normal Deviates Not long after research began at RAND in 1946… | Microsoft.VisualBasic.Math.Randomizer 1.0.9753.4776 |
13 |
| Randomizer | Random generator based on the random table.(请注意,这个模块之中的所有函数都是线程不安全的) ###### A Million Random Digits with 100,000 Normal Deviates Not long after research began at RAND in 1946… | Microsoft.VisualBasic.Math.Randomizer 1.0.9762.11310 |
13 |
| Ranking | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 | |
| Ranking | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 | |
| Ranks | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 | |
| Ranks | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 | |
| ScaleMaps | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
8 | |
| ScaleMaps | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
8 | |
| ThreadSafeFastRandom | Microsoft.VisualBasic.Math.Randomizer 1.0.9753.4776 |
5 | |
| ThreadSafeFastRandom | Microsoft.VisualBasic.Math.Randomizer 1.0.9762.11310 |
5 | |
| Trigonometric | 三角函数拓展模块 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
34 |
| Trigonometric | 三角函数拓展模块 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
34 |
| VBMath | Provides constants and static methods for trigonometric, logarithmic, and other common mathematical functions.To browse the .NET Framework source code for this type, see the Refe… | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
42 |
| VBMath | Provides constants and static methods for trigonometric, logarithmic, and other common mathematical functions.To browse the .NET Framework source code for this type, see the Refe… | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
42 |
Microsoft.VisualBasic.Math.Calculus
| Type | Summary | Package | Members |
|---|---|---|---|
| Extensions | Microsoft.VisualBasic.Math.ODEsSolver 5.0.9753.4776 |
4 | |
| Extensions | Microsoft.VisualBasic.Math.ODEsSolver.Extensions 5.0.9753.4776 |
4 | |
| Extensions | Microsoft.VisualBasic.Math.ODEsSolver.Extensions 5.0.9762.11310 |
4 | |
| Extensions | Microsoft.VisualBasic.Math.ODEsSolver 5.0.9762.11310 |
4 | |
| ODE | Ordinary differential equation(ODE).(常微分方程的模型) | Microsoft.VisualBasic.Math.ODEsSolver 5.0.9753.4776 |
5 |
| ODE | Ordinary differential equation(ODE).(常微分方程的模型) | Microsoft.VisualBasic.Math.ODEsSolver 5.0.9762.11310 |
4 |
| ODEOutput | Microsoft.VisualBasic.Math.ODEsSolver 5.0.9753.4776 |
9 | |
| ODEOutput | Microsoft.VisualBasic.Math.ODEsSolver 5.0.9762.11310 |
1 | |
| ODESolver | Solving the Ordinary differential equation(ODE) by using trapezoidal method.(使用梯形法求解常微分方程) | Microsoft.VisualBasic.Math.ODEsSolver 5.0.9753.4776 |
6 |
| ODESolver | Solving the Ordinary differential equation(ODE) by using trapezoidal method.(使用梯形法求解常微分方程) | Microsoft.VisualBasic.Math.ODEsSolver 5.0.9762.11310 |
4 |
Microsoft.VisualBasic.Math.Calculus.Dynamics
| Type | Summary | Package | Members |
|---|---|---|---|
| GenericODEs | Microsoft.VisualBasic.Math.ODEsSolver 5.0.9753.4776 |
1 | |
| GenericODEs | Microsoft.VisualBasic.Math.ODEsSolver 5.0.9762.11310 |
1 | |
| ODEs | Solving ODEs in R language, as example for test this class: R func <- function(t, x, parms) { with(as.list(c(parms, x)), { dP <- a * P - b * C * P dC… | Microsoft.VisualBasic.Math.ODEsSolver 5.0.9753.4776 |
11 |
| ODEs | Solving ODEs in R language, as example for test this class: R func <- function(t, x, parms) { with(as.list(c(parms, x)), { dP <- a * P - b * C * P dC… | Microsoft.VisualBasic.Math.ODEsSolver 5.0.9762.11310 |
10 |
| RefODEs | dy reference to the exists values. | Microsoft.VisualBasic.Math.ODEsSolver 5.0.9753.4776 |
2 |
| RefODEs | dy reference to the exists values. | Microsoft.VisualBasic.Math.ODEsSolver 5.0.9762.11310 |
1 |
| RungeKutta4 | Microsoft.VisualBasic.Math.ODEsSolver 5.0.9753.4776 |
4 | |
| RungeKutta4 | Microsoft.VisualBasic.Math.ODEsSolver 5.0.9762.11310 |
2 | |
| SolverIterator | Microsoft.VisualBasic.Math.ODEsSolver 5.0.9753.4776 |
5 | |
| SolverIterator | Microsoft.VisualBasic.Math.ODEsSolver 5.0.9762.11310 |
5 | |
| var | Y variable in the ODE | Microsoft.VisualBasic.Math.ODEsSolver 5.0.9753.4776 |
10 |
| var | Y variable in the ODE | Microsoft.VisualBasic.Math.ODEsSolver 5.0.9762.11310 |
2 |
Microsoft.VisualBasic.Math.Calculus.Dynamics.Data
| Type | Summary | Package | Members |
|---|---|---|---|
| ODEsOut | ODEs output, this object can populates the ODEsOut.y variables values through its enumerator interface. | Microsoft.VisualBasic.Math.ODEsSolver 5.0.9753.4776 |
11 |
| ODEsOut | ODEs output, this object can populates the ODEsOut.y variables values through its enumerator interface. | Microsoft.VisualBasic.Math.ODEsSolver 5.0.9762.11310 |
6 |
| StreamExtension | Microsoft.VisualBasic.Math.ODEsSolver 5.0.9753.4776 |
1 | |
| StreamExtension | Microsoft.VisualBasic.Math.ODEsSolver 5.0.9762.11310 |
1 | |
| ValueVector | Microsoft.VisualBasic.Math.ODEsSolver 5.0.9753.4776 |
4 | |
| ValueVector | Microsoft.VisualBasic.Math.ODEsSolver 5.0.9762.11310 |
1 |
Microsoft.VisualBasic.Math.Calculus.ODESolver
Microsoft.VisualBasic.Math.Correlations
| Type | Summary | Package | Members |
|---|---|---|---|
| Correlations | 计算两个数据向量之间的相关度的大小 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
16 |
| Correlations | 计算两个数据向量之间的相关度的大小 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
16 |
| DistanceMethods | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
18 | |
| DistanceMethods | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
18 | |
| Ranking | A ranking is a relationship between a set of items such that, for any two items, the first is either 'ranked higher than', 'ranked lower than' or 'ranked equal to' the second. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
14 |
| Ranking | A ranking is a relationship between a set of items such that, for any two items, the first is either 'ranked higher than', 'ranked lower than' or 'ranked equal to' the second. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
14 |
| RankOrder | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
9 | |
| RankOrder | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
9 |
Microsoft.VisualBasic.Math.Correlations.Correlations
| Type | Summary | Package | Members |
|---|---|---|---|
| ICorrelation | 相关性的计算分析函数 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| ICorrelation | 相关性的计算分析函数 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
Microsoft.VisualBasic.Math.Correlations.Ranking
| Type | Summary | Package | Members |
|---|---|---|---|
| Strategies | Strategies for assigning rankings It is not always possible to assign rankings uniquely. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 |
| Strategies | Strategies for assigning rankings It is not always possible to assign rankings uniquely. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 |
Microsoft.VisualBasic.Math.Distributions
| Type | Summary | Package | Members |
|---|---|---|---|
| Abundance | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
4 | |
| Abundance | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
3 | |
| AxisDensity | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
2 | |
| AxisDensity | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
1 | |
| BesselFunctions | 修正贝塞尔函数(modified Bessel function)第一类 I_ν(x) 的实现。 本模块对应 R 语言之中的 besselI(x, nu, expon.scaled = FALSE), 用于 Skellam 分布的概率密度函数计算(参见 dskellam)。 | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
7 |
| BesselFunctions | 修正贝塞尔函数(modified Bessel function)第一类 I_ν(x) 的实现。 本模块对应 R 语言之中的 besselI(x, nu, expon.scaled = FALSE), 用于 Skellam 分布的概率密度函数计算(参见 dskellam)。 | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
7 |
| Beta | Beta distribution | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
1 |
| Beta | Beta distribution | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
1 |
| Bootstraping | Data sampling bootstrapping extensions | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
11 |
| Bootstraping | Data sampling bootstrapping extensions | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
7 |
| ChiSquareDistribution | 卡方分布(中心与非中心)的分布函数,对应 R 语言之中的 pchisq。 非中心卡方分布是 Skellam 分布累积分布函数的核心依赖 (参见 Resources\pskellam.txt):两个 Poisson 变量之差的 累积分布可以通过非中心卡方分布精确表达。 | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
7 |
| ChiSquareDistribution | 卡方分布(中心与非中心)的分布函数,对应 R 语言之中的 pchisq。 非中心卡方分布是 Skellam 分布累积分布函数的核心依赖 (参见 Resources\pskellam.txt):两个 Poisson 变量之差的 累积分布可以通过非中心卡方分布精确表达。 | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
7 |
| DirichletDistribution | Dirichlet distribution In probability and statistics, the Dirichlet distribution (after Peter Gustav Lejeune Dirichlet), often denoted {\displaystyle \operatorname {Dir} ({\bo… | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
5 |
| DirichletDistribution | Dirichlet distribution In probability and statistics, the Dirichlet distribution (after Peter Gustav Lejeune Dirichlet), often denoted {\displaystyle \operatorname {Dir} ({\bo… | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
5 |
| ECDF | Empirical distribution function In statistics, an empirical distribution function (commonly also called an empirical cumulative distribution function, eCDF) is the distributio… | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
3 |
| ECDF | Empirical distribution function In statistics, an empirical distribution function (commonly also called an empirical cumulative distribution function, eCDF) is the distributio… | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
3 |
| Gaussian | Gaussian function https://en.wikipedia.org/wiki/Gaussian_function | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
4 |
| Gaussian | Gaussian function https://en.wikipedia.org/wiki/Gaussian_function | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
4 |
| MathGamma | gamma function (Γ) from mathematics | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
4 |
| MathGamma | gamma function (Γ) from mathematics | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
4 |
| pnorm | 正态分布帮助模块 | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
16 |
| pnorm | 正态分布帮助模块 | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
12 |
| PoissonDiskGenerator | cf paper: Fast Poisson Disk Sampling in Arbitrary Dimensions. | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
16 |
| PoissonDiskGenerator | cf paper: Fast Poisson Disk Sampling in Arbitrary Dimensions. | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
14 |
| TrIQ | Contrast optimization of mass spectrometry imaging (MSI) data visualization by threshold intensity quantization (TrIQ) | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
4 |
| TrIQ | Contrast optimization of mass spectrometry imaging (MSI) data visualization by threshold intensity quantization (TrIQ) | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
4 |
Microsoft.VisualBasic.Math.Distributions.Abundance
| Type | Summary | Package | Members |
|---|---|---|---|
| AlgorithmType | the algorithms for computing kurtosis/skewness | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
6 |
| AlgorithmType | the algorithms for computing kurtosis/skewness | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
6 |
Microsoft.VisualBasic.Math.Distributions.BinBox
| Type | Summary | Package | Members |
|---|---|---|---|
| BinMaps | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
6 | |
| BinMaps | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
6 | |
| CutBins | 进行数据分箱操作 | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
9 |
| CutBins | 进行数据分箱操作 | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
6 |
| DataBinBox | 数据分箱之中的一个bucket | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
7 |
| DataBinBox | 数据分箱之中的一个bucket | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
4 |
| Violin | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
8 | |
| Violin | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
8 |
Microsoft.VisualBasic.Math.Distributions.Summary
| Type | Summary | Package | Members |
|---|---|---|---|
| SampleDistribution | The data sample model | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
20 |
| SampleDistribution | The data sample model | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
19 |
| StreamingSampleDistribution | Streaming builder of the SampleDistribution model. | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
13 |
| StreamingSampleDistribution | Streaming builder of the SampleDistribution model. | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
13 |
| ToString | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
7 | |
| ToString | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
7 |
Microsoft.VisualBasic.Math.Distributions.Summary.StreamingSampleDistribution
Microsoft.VisualBasic.Math.DownSampling
| Type | Summary | Package | Members |
|---|---|---|---|
| Bucket | A bucket holds a subset of events and select significant events from it | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
2 |
| Bucket | A bucket holds a subset of events and select significant events from it | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
0 |
| BucketBasedAlgorithm | General algorithm using buckets to downsample events: Prepare data.Split events into buckets.Calculate weight of events.Select significant events from each bucket. | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
5 |
| BucketBasedAlgorithm | General algorithm using buckets to downsample events: Prepare data.Split events into buckets.Calculate weight of events.Select significant events from each bucket. | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
2 |
| BucketSplitter | Split up events into buckets | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
1 |
| BucketSplitter | Split up events into buckets | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
0 |
| DownSamplingAlgorithm | Interface for downSampling algorithms | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
1 |
| DownSamplingAlgorithm | Interface for downSampling algorithms | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
1 |
| DSAlgorithms | Downsampling algorithms for time series data(LTOB, LTTB, LTD, OSI-PI Plot) | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
16 |
| DSAlgorithms | Downsampling algorithms for time series data(LTOB, LTTB, LTD, OSI-PI Plot) | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
11 |
| FixedNumBucketSplitter | Assign the first event to the first bucket, the last event to the last bucket. | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
1 |
| FixedNumBucketSplitter | Assign the first event to the first bucket, the last event to the last bucket. | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
0 |
| FixedTimeBucketSplitter | Split data into buckets with equal time span | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
2 |
| FixedTimeBucketSplitter | Split data into buckets with equal time span | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
0 |
Microsoft.VisualBasic.Math.DownSampling.LargestTriangleBucket
| Type | Summary | Package | Members |
|---|---|---|---|
| LinkedBucketNode | Tow-way linked list to perform bucket split and merge. | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
13 |
| LinkedBucketNode | Tow-way linked list to perform bucket split and merge. | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
5 |
| LTABuilder | A builder class for LT Algorithms. | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
9 |
| LTABuilder | A builder class for LT Algorithms. | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
8 |
| LTAlgorithm | Largest Triangle Bucket Algorithm family. | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
2 |
| LTAlgorithm | Largest Triangle Bucket Algorithm family. | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
0 |
| LTDynamicBucketSplitter | A bucket-splitter dynamically resize bucket according to their SSE(Sum of Square Errors). | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
3 |
| LTDynamicBucketSplitter | A bucket-splitter dynamically resize bucket according to their SSE(Sum of Square Errors). | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
0 |
| LTOneBucketWeightCalculator | Weight = Area of triangle (point A: the previous event, point B: this event; point C: the next event) | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
1 |
| LTOneBucketWeightCalculator | Weight = Area of triangle (point A: the previous event, point B: this event; point C: the next event) | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
0 |
| LTThreeBucketWeightCalculator | Weight = Area of triangle (point A: the previous selected event, point B: this event; point C: average event int the next bucket) | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
1 |
| LTThreeBucketWeightCalculator | Weight = Area of triangle (point A: the previous selected event, point B: this event; point C: average event int the next bucket) | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
0 |
| LTWeightedBucket | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
15 | |
| LTWeightedBucket | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
4 | |
| Triangle | Calculate a triangle's area | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
2 |
| Triangle | Calculate a triangle's area | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
0 |
Microsoft.VisualBasic.Math.DownSampling.MaxMin
| Type | Summary | Package | Members |
|---|---|---|---|
| MMAlgorithm | Select events with maximum or minimum value in bucket | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
1 |
| MMAlgorithm | Select events with maximum or minimum value in bucket | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
0 |
| MMBucket | Bucket that selects events with maximum or minimum value | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
2 |
| MMBucket | Bucket that selects events with maximum or minimum value | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
0 |
| PIPlotAlgorithm | OSISoft PI PlotValues algorithm. | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
1 |
| PIPlotAlgorithm | OSISoft PI PlotValues algorithm. | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
0 |
| PIPlotBucket | Bucket that selects the first, the last event and events with maximum or minimum value | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
1 |
| PIPlotBucket | Bucket that selects the first, the last event and events with maximum or minimum value | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
0 |
Microsoft.VisualBasic.Math.DownSampling.Mixed
| Type | Summary | Package | Members |
|---|---|---|---|
| MixedAlgorithm | Merge other algorithms' results into a new result, then deduplicate and sort it. | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
3 |
| MixedAlgorithm | Merge other algorithms' results into a new result, then deduplicate and sort it. | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
1 |
Microsoft.VisualBasic.Math.DownSampling.TimeGap
| Type | Summary | Package | Members |
|---|---|---|---|
| TimeGapAlgorithm | Find out big gaps between events and select events at both ends of those gaps. | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
2 |
| TimeGapAlgorithm | Find out big gaps between events and select events at both ends of those gaps. | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
0 |
Microsoft.VisualBasic.Math.Extensions
| Type | Summary | Package | Members |
|---|---|---|---|
| PValueAdjustMethod | 多重检验校正方法枚举,对应 R 的 p.adjust.methods。 | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
8 |
| PValueAdjustMethod | 多重检验校正方法枚举,对应 R 的 p.adjust.methods。 | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
8 |
Microsoft.VisualBasic.Math.Framework
| Type | Summary | Package | Members |
|---|---|---|---|
| VariableObject | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
2 | |
| VariableObject | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
1 |
Microsoft.VisualBasic.Math.Framework.Iterator
Microsoft.VisualBasic.Math.Framework.Optimization.LBFGSB
| Type | Summary | Package | Members |
|---|---|---|---|
| BKLDLT | Bunch-Kaufman LDLT decomposition | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
23 |
| BKLDLT | Bunch-Kaufman LDLT decomposition | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
23 |
| Debugger | internal logger wrapper for echo debug message | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
0 |
| Debugger | internal logger wrapper for echo debug message | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
0 |
| IGradFunction | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
6 | |
| IGradFunction | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
6 | |
| LBFGSB | L-BFGS-B optimizer # LBFGSBJava L-BFGS-B box constrained optimizer * Most of the code ported from LBFGS++ code. | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
18 |
| LBFGSB | L-BFGS-B optimizer # LBFGSBJava L-BFGS-B box constrained optimizer * Most of the code ported from LBFGS++ code. | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
18 |
| Parameters | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
16 | |
| Parameters | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
16 |
Microsoft.VisualBasic.Math.Framework.Optimization.LBFGSB.BKLDLT
| Type | Summary | Package | Members |
|---|---|---|---|
| IndexType | Index reference, mutable | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
0 |
| IndexType | Index reference, mutable | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
0 |
| Pair | Compressed permutations | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
1 |
| Pair | Compressed permutations | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
1 |
Microsoft.VisualBasic.Math.Framework.Optimization.LBFGSB.LineSearches
| Type | Summary | Package | Members |
|---|---|---|---|
| LineSearch | Line search methods for optimization and root-finding | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
8 |
| LineSearch | Line search methods for optimization and root-finding | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
8 |
Microsoft.VisualBasic.Math.Framework.Optimization.LBFGSB.LineSearches.LewisOverton
Microsoft.VisualBasic.Math.GibbsSampling
| Type | Summary | Package | Members |
|---|---|---|---|
| Gibbs | Gibb's Sampling Steps: 1. | Microsoft.VisualBasic.Math.GibbsSampling 1.0.9753.4776 |
6 |
| Gibbs | Gibb's Sampling Steps: 1. | Microsoft.VisualBasic.Math.GibbsSampling 1.0.9762.11310 |
6 |
| MetropolisHastings | Microsoft.VisualBasic.Math.GibbsSampling 1.0.9753.4776 |
4 | |
| MetropolisHastings | Microsoft.VisualBasic.Math.GibbsSampling 1.0.9762.11310 |
4 |
Microsoft.VisualBasic.Math.HashMaps
| Type | Summary | Package | Members |
|---|---|---|---|
| HashBlizzard | Blizzard hash algorithm code | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
2 |
| HashBlizzard | Blizzard hash algorithm code | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
2 |
| HashMap | VB.NET常用的哈希算法集.其中包括了著名的暴雪的哈希,T33哈希....... | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
19 |
| HashMap | VB.NET常用的哈希算法集.其中包括了著名的暴雪的哈希,T33哈希....... | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
19 |
| JenkinsHash | Original source from http://256.com/sources/jenkins_hash_java/ This is a Bob Jenkins hashing algorithm implementation <br> These are functions for producing 32-bit hashes for… | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
11 |
| JenkinsHash | Original source from http://256.com/sources/jenkins_hash_java/ This is a Bob Jenkins hashing algorithm implementation <br> These are functions for producing 32-bit hashes for… | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
11 |
Microsoft.VisualBasic.Math.HashMaps.HashBlizzard
| Type | Summary | Package | Members |
|---|---|---|---|
| dwHashTypes | The dwHashType: hash value types | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
6 |
| dwHashTypes | The dwHashType: hash value types | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
6 |
Microsoft.VisualBasic.Math.HashMaps.MinHash
| Type | Summary | Package | Members |
|---|---|---|---|
| LSH | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
3 | |
| LSH | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
3 | |
| LSHParameterEstimator | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
3 | |
| LSHParameterEstimator | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
3 | |
| MinHash | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
2 | |
| MinHash | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
2 | |
| SequenceItem | 定义一个简单的数据结构来存储序列 | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
3 |
| SequenceItem | 定义一个简单的数据结构来存储序列 | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
3 |
| SimilarityIndex | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
5 | |
| SimilarityIndex | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
5 |
Microsoft.VisualBasic.Math.Information
| Type | Summary | Package | Members |
|---|---|---|---|
| Entropy | 信息熵越大表示所含信息量越多 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 |
| Entropy | 信息熵越大表示所含信息量越多 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 |
| EntropyScore | Unweighted entropy similarity | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 |
| EntropyScore | Unweighted entropy similarity | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 |
| LempelZivComplexity | Lempel-Ziv复杂度(Lempel-Ziv Complexity, LZC)是一种用来衡量序列(如字符串、时间序列等)结构化程度或随机性的算法。 它由以色列科学家Abraham Lempel和Jacob Ziv在1976年提出。其核心思想源于数据压缩领域——一个序列的复杂度越高,它越难以被压缩; 反之,规律性强的序列则更容易被压缩。 下面是一个… | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
7 |
| LempelZivComplexity | Lempel-Ziv复杂度(Lempel-Ziv Complexity, LZC)是一种用来衡量序列(如字符串、时间序列等)结构化程度或随机性的算法。 它由以色列科学家Abraham Lempel和Jacob Ziv在1976年提出。其核心思想源于数据压缩领域——一个序列的复杂度越高,它越难以被压缩; 反之,规律性强的序列则更容易被压缩。 下面是一个… | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
7 |
Microsoft.VisualBasic.Math.Interpolation
| Type | Summary | Package | Members |
|---|---|---|---|
| B_Spline | B-spline. degree参数应该是大于1的,否则等于1的时候将不会进行插值处理 | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
4 |
| B_Spline | B-spline. degree参数应该是大于1的,否则等于1的时候将不会进行插值处理 | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
4 |
| BezierCurve | A Bezier curve is a parametric curve frequently used in computer graphics and related fields. | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
8 |
| BezierCurve | A Bezier curve is a parametric curve frequently used in computer graphics and related fields. | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
8 |
| BezierExtensions | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
2 | |
| BezierExtensions | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
2 | |
| BSpline | B-spline arguments | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
2 |
| BSpline | B-spline arguments | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
2 |
| CatmullRomSpline | Calculates interpolated point between two points using Catmull-Rom Spline | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
3 |
| CatmullRomSpline | Calculates interpolated point between two points using Catmull-Rom Spline | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
3 |
| CentripetalCatmullRomSpline | Centripetal Catmull–Rom spline In computer graphics, centripetal Catmull–Rom spline is a variant form of Catmull-Rom spline formulated by Edwin Catmull and Raphael Rom accordi… | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
2 |
| CentripetalCatmullRomSpline | Centripetal Catmull–Rom spline In computer graphics, centripetal Catmull–Rom spline is a variant form of Catmull-Rom spline formulated by Edwin Catmull and Raphael Rom accordi… | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
1 |
| CubicSpline | Cubic spline interpolation | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
9 |
| CubicSpline | Cubic spline interpolation | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
3 |
| CubicSplineVector | 三次样条插值的核心代码模块 | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
7 |
| CubicSplineVector | 三次样条插值的核心代码模块 | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
7 |
| DouglasPeucker | Ramer–Douglas–Peucker algorithm The Ramer–Douglas–Peucker algorithm, also known as the Douglas–Peucker algorithm and iterative end-point fit algorithm, is an algorithm that… | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
5 |
| DouglasPeucker | Ramer–Douglas–Peucker algorithm The Ramer–Douglas–Peucker algorithm, also known as the Douglas–Peucker algorithm and iterative end-point fit algorithm, is an algorithm that… | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
5 |
| Extensions | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
3 | |
| Extensions | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
3 | |
| PolynomialNewton | 似乎对三角函数不起作用 | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
2 |
| PolynomialNewton | 似乎对三角函数不起作用 | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
2 |
| PrincipalCurve | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
4 | |
| PrincipalCurve | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
1 | |
| Splines | 线条插值算法类型 | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
10 |
| Splines | 线条插值算法类型 | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
10 |
Microsoft.VisualBasic.Math.Lambda
| Type | Summary | Package | Members |
|---|---|---|---|
| MathMLCompiler | mathML -> lambda -> linq expression -> compile VB lambda | Microsoft.VisualBasic.Math.Lambda 5.0.9753.4776 |
0 |
| MathMLCompiler | mathML -> lambda -> linq expression -> compile VB lambda | Microsoft.VisualBasic.Math.Lambda 5.0.9762.11310 |
0 |
| SymbolIndex | the parameter symbol index of the lambda function | Microsoft.VisualBasic.Math.Lambda 5.0.9753.4776 |
2 |
| SymbolIndex | the parameter symbol index of the lambda function | Microsoft.VisualBasic.Math.Lambda 5.0.9762.11310 |
2 |
Microsoft.VisualBasic.Math.Lambda.Symbolic
| Type | Summary | Package | Members |
|---|---|---|---|
| BooleanAlgebra | Microsoft.VisualBasic.Math.Lambda 5.0.9753.4776 |
4 | |
| BooleanAlgebra | Microsoft.VisualBasic.Math.Lambda 5.0.9762.11310 |
4 | |
| Derivative | Microsoft.VisualBasic.Math.Lambda 5.0.9753.4776 |
7 | |
| Derivative | Microsoft.VisualBasic.Math.Lambda 5.0.9762.11310 |
7 | |
| ExpressionExtensions | Shared helpers that operate on the immutable Expression tree. | Microsoft.VisualBasic.Math.Lambda 5.0.9753.4776 |
9 |
| ExpressionExtensions | Shared helpers that operate on the immutable Expression tree. | Microsoft.VisualBasic.Math.Lambda 5.0.9762.11310 |
9 |
| Integration | Microsoft.VisualBasic.Math.Lambda 5.0.9753.4776 |
3 | |
| Integration | Microsoft.VisualBasic.Math.Lambda 5.0.9762.11310 |
3 | |
| Limit | Microsoft.VisualBasic.Math.Lambda 5.0.9753.4776 |
3 | |
| Limit | Microsoft.VisualBasic.Math.Lambda 5.0.9762.11310 |
3 | |
| MakeSimplify | Microsoft.VisualBasic.Math.Lambda 5.0.9753.4776 |
3 | |
| MakeSimplify | Microsoft.VisualBasic.Math.Lambda 5.0.9762.11310 |
3 | |
| PolyExpansion | Expand products and powers of sums into distributed form. | Microsoft.VisualBasic.Math.Lambda 5.0.9753.4776 |
0 |
| PolyExpansion | Expand products and powers of sums into distributed form. | Microsoft.VisualBasic.Math.Lambda 5.0.9762.11310 |
0 |
| Polynomial | Microsoft.VisualBasic.Math.Lambda 5.0.9753.4776 |
8 | |
| Polynomial | Microsoft.VisualBasic.Math.Lambda 5.0.9762.11310 |
8 | |
| Rationalizer | Rationalise the denominators of an expression: eliminate square roots and the imaginary unit from every denominator by conjugate multiplication. | Microsoft.VisualBasic.Math.Lambda 5.0.9753.4776 |
3 |
| Rationalizer | Rationalise the denominators of an expression: eliminate square roots and the imaginary unit from every denominator by conjugate multiplication. | Microsoft.VisualBasic.Math.Lambda 5.0.9762.11310 |
3 |
| Substitute | Microsoft.VisualBasic.Math.Lambda 5.0.9753.4776 |
3 | |
| Substitute | Microsoft.VisualBasic.Math.Lambda 5.0.9762.11310 |
3 | |
| Symbolic | symbolic computation engine | Microsoft.VisualBasic.Math.Lambda 5.0.9753.4776 |
23 |
| Symbolic | symbolic computation engine | Microsoft.VisualBasic.Math.Lambda 5.0.9762.11310 |
23 |
| Taylor | Microsoft.VisualBasic.Math.Lambda 5.0.9753.4776 |
3 | |
| Taylor | Microsoft.VisualBasic.Math.Lambda 5.0.9762.11310 |
3 | |
| TaylorResult | The polynomial part and the Lagrange remainder of a Taylor expansion. | Microsoft.VisualBasic.Math.Lambda 5.0.9753.4776 |
4 |
| TaylorResult | The polynomial part and the Lagrange remainder of a Taylor expansion. | Microsoft.VisualBasic.Math.Lambda 5.0.9762.11310 |
4 |
| UnifySymbol | a unify symbol model a * (x ^ n) | Microsoft.VisualBasic.Math.Lambda 5.0.9753.4776 |
1 |
| UnifySymbol | a unify symbol model a * (x ^ n) | Microsoft.VisualBasic.Math.Lambda 5.0.9762.11310 |
1 |
| UnivariatePoly | A univariate polynomial a0 + a1*x + ... | Microsoft.VisualBasic.Math.Lambda 5.0.9753.4776 |
0 |
| UnivariatePoly | A univariate polynomial a0 + a1*x + ... | Microsoft.VisualBasic.Math.Lambda 5.0.9762.11310 |
0 |
Microsoft.VisualBasic.Math.Lambda.Symbolic.ExpressionExtensions
| Type | Summary | Package | Members |
|---|---|---|---|
| ExpressionRewriter | A reusable recursive visitor that rewrites an expression tree. | Microsoft.VisualBasic.Math.Lambda 5.0.9753.4776 |
0 |
| ExpressionRewriter | A reusable recursive visitor that rewrites an expression tree. | Microsoft.VisualBasic.Math.Lambda 5.0.9762.11310 |
0 |
Microsoft.VisualBasic.Math.LinearAlgebra
| Type | Summary | Package | Members |
|---|---|---|---|
| EigenDecompositionResult | 特征分解结果 | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
0 |
| EigenDecompositionResult | 特征分解结果 | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
0 |
| EllipseFitResult | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
11 | |
| EllipseFitResult | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
10 | |
| Extensions | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
8 | |
| Extensions | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
6 | |
| Formula | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
5 | |
| Formula | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
5 | |
| HalfVector | 精度比较低的半精度向量 | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
9 |
| HalfVector | 精度比较低的半精度向量 | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
0 |
| HelperExtensions | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
10 | |
| HelperExtensions | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
8 | |
| MultivariatePolynomial | 多元多项式 f(x1, x2, x3, ...) = a*x1 + b*x2 + c*x3 + ... | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
3 |
| MultivariatePolynomial | 多元多项式 f(x1, x2, x3, ...) = a*x1 + b*x2 + c*x3 + ... | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
3 |
| NumericsVector | Numerics vector converts for numeric types like: Int32, Int64, UInt64, Byte, Single | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
10 |
| NumericsVector | Numerics vector converts for numeric types like: Int32, Int64, UInt64, Byte, Single | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
7 |
| PCAEllipseCalculator | PCA椭圆计算器 | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
8 |
| PCAEllipseCalculator | PCA椭圆计算器 | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
8 |
| PCAEllipseResult | PCA统计椭圆计算结果 基于协方差矩阵和分布假设的数据椭圆/置信椭圆 | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
10 |
| PCAEllipseResult | PCA统计椭圆计算结果 基于协方差矩阵和分布假设的数据椭圆/置信椭圆 | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
10 |
| Polynomial | 一元多项式的数据模型 f(x) = a + bx + cx^2 + dx^3 + ... | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
7 |
| Polynomial | 一元多项式的数据模型 f(x) = a + bx + cx^2 + dx^3 + ... | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
7 |
| SparseVector | 稀疏的向量 | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
23 |
| SparseVector | 稀疏的向量 | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
12 |
| SVD | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
1 | |
| SVD | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
1 | |
| Vector | A numeric vector | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
94 |
| Vector | A numeric vector | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
67 |
| VectorEqualityComparer | Determine that the two vector are equals to each other. | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
3 |
| VectorEqualityComparer | Determine that the two vector are equals to each other. | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
2 |
Microsoft.VisualBasic.Math.LinearAlgebra.LinearProgramming
| Type | Summary | Package | Members |
|---|---|---|---|
| Extensions | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
1 | |
| Extensions | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
1 | |
| LPP | solve continuous-space linear programming problems by the simplex method. | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
19 |
| LPP | solve continuous-space linear programming problems by the simplex method. | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
19 |
| LPPModel | Linear Programming Model | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
12 |
| LPPModel | Linear Programming Model | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
2 |
| LPPSolver | 使用单纯形法进行线性规划问题的求解 | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
2 |
| LPPSolver | 使用单纯形法进行线性规划问题的求解 | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
2 |
| LPPSolverTwoPhased | A two-phased simplex solver which is implemented in the sparse matrix format with the bounded variable support. | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
30 |
| LPPSolverTwoPhased | A two-phased simplex solver which is implemented in the sparse matrix format with the bounded variable support. | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
30 |
| LppVariable | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
4 | |
| LppVariable | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
4 | |
| LpSparseMatrix | A sparse matrix in the compressed sparse row(CSR) format. | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
16 |
| LpSparseMatrix | A sparse matrix in the compressed sparse row(CSR) format. | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
16 |
| OptimizationType | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
4 | |
| OptimizationType | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
4 | |
| SparseTableauRow | A single row in the simplex tableau, stored in the sparse format. | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
15 |
| SparseTableauRow | A single row in the simplex tableau, stored in the sparse format. | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
15 |
Microsoft.VisualBasic.Math.LinearAlgebra.LinearProgramming.IPMCrossover
| Type | Summary | Package | Members |
|---|---|---|---|
| DenseLpMatrix | 稠密实现:包一层 Double(,),用于中小规模(已验证路径) | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
9 |
| DenseLpMatrix | 稠密实现:包一层 Double(,),用于中小规模(已验证路径) | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
9 |
| DenseNormalFactor | 稠密正规方程因子:Cholesky 两段回代 + 一次迭代精化 | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
6 |
| DenseNormalFactor | 稠密正规方程因子:Cholesky 两段回代 + 一次迭代精化 | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
6 |
| ILpMatrix | 约束矩阵抽象:内点法只依赖这四个运算,因此稠密/ sparse 可自由切换 | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
8 |
| ILpMatrix | 约束矩阵抽象:内点法只依赖这四个运算,因此稠密/ sparse 可自由切换 | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
8 |
| INormalFactor | 正规方程 (A·Θ·Aᵀ + reg·I)·z = rhs 的求解器 | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
6 |
| INormalFactor | 正规方程 (A·Θ·Aᵀ + reg·I)·z = rhs 的求解器 | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
6 |
| InteriorPointSolver | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
10 | |
| InteriorPointSolver | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
10 | |
| IpResult | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
7 | |
| IpResult | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
7 | |
| LinAlg | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
12 | |
| LinAlg | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
12 | |
| LppConstraint | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
5 | |
| LppConstraint | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
5 | |
| LppProblem | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
6 | |
| LppProblem | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
6 | |
| LppSolver | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
7 | |
| LppSolver | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
7 | |
| LuFactorization | LU 分解结果:P·A = L·U;LU 原地合并(|L| 对角=1),Piv(k)=位置k处的原始行号 | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
3 |
| LuFactorization | LU 分解结果:P·A = L·U;LU 原地合并(|L| 对角=1),Piv(k)=位置k处的原始行号 | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
3 |
| Pcg | 雅可比预条件共轭梯度:正规方程 fill-in 失控时的安全网(零 fill-in) | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
1 |
| Pcg | 雅可比预条件共轭梯度:正规方程 fill-in 失控时的安全网(零 fill-in) | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
1 |
| SimplexSolver | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
7 | |
| SimplexSolver | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
7 | |
| SparseChol | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
2 | |
| SparseChol | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
2 | |
| SparseLpMatrix | 稀疏实现:CSR(行) + CSC(列) 双副本。 正规方程 A·Θ·Aᵀ 稀疏装配后优先走稀疏 LDLᵀ, fill-in 超阈值或分解失败时自动降级为雅可比预条件 PCG(零 fill-in,无 OOM 风险)。 | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
14 |
| SparseLpMatrix | 稀疏实现:CSR(行) + CSC(列) 双副本。 正规方程 A·Θ·Aᵀ 稀疏装配后优先走稀疏 LDLᵀ, fill-in 超阈值或分解失败时自动降级为雅可比预条件 PCG(零 fill-in,无 OOM 风险)。 | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
14 |
| SparseNormal | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
1 | |
| SparseNormal | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
1 | |
| SparseNormalFactor | 稀疏正规方程因子:优先稀疏 LDLᵀ,解出后做一次残差校验; 残差不达标(排序/数值问题)则本次改用 PCG 并永久降级。 | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
6 |
| SparseNormalFactor | 稀疏正规方程因子:优先稀疏 LDLᵀ,解出后做一次残差校验; 残差不达标(排序/数值问题)则本次改用 PCG 并永久降级。 | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
6 |
| StandardForm | 标准形(IPM/单纯形的工作对象) | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
32 |
| StandardForm | 标准形(IPM/单纯形的工作对象) | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
32 |
| SymCsr | 对称稀疏矩阵(CSR,两个三角都存,含对角) | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
11 |
| SymCsr | 对称稀疏矩阵(CSR,两个三角都存,含对角) | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
11 |
Microsoft.VisualBasic.Math.LinearAlgebra.LinearProgramming.IPMCrossover.SparseChol
| Type | Summary | Package | Members |
|---|---|---|---|
| MinHeap | 小顶堆(按列索引升序遍历第 k 行的模式) | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
0 |
| MinHeap | 小顶堆(按列索引升序遍历第 k 行的模式) | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
0 |
| SparseCholFactor | 稀疏 LDLᵀ 因子(按列存储 L 的严格下三角部分) | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
2 |
| SparseCholFactor | 稀疏 LDLᵀ 因子(按列存储 L 的严格下三角部分) | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
2 |
Microsoft.VisualBasic.Math.LinearAlgebra.LinearProgramming.MILP
| Type | Summary | Package | Members |
|---|---|---|---|
| BoundedSimplex | 有界变量修订单纯形。实例与一个问题矩阵 (A, b, c, l, u) 绑定; 分支只修改 l/u,割平面通过重建实例(行/列追加)+ 热启动基复用。 | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
15 |
| BranchAndBound | 分支定界搜索。 | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
7 |
| BranchRule | 分支变量选择规则。 | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
6 |
| BsResult | 有界单纯形结果。 | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
10 |
| BsStatus | 有界单纯形状态。 | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
5 |
| CutRow | 一条待追加的割平面(工作变量空间)。 | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
5 |
| GomoryCut | Gomory 混合整数割生成器。 | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
2 |
| MilpHeuristics | 整数原启发式。 | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
5 |
| MilpLpForm | MILP 预处理结果 + 节点 LP 工作形式(含全部"工作列 → 原始变量"映射)。 | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
35 |
| MilpModel | MILP 模型:线性目标 + 线性约束 + 变量类型/上下界。 | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
11 |
| MilpOptions | MILP 求解选项。 | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
21 |
| MilpPresolve | 预处理与工作形式构造。 | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
3 |
| MilpSolution | MILP 求解结果。 | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
22 |
| MilpSolver | 混合整数线性规划(MILP)求解器入口。 | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
2 |
| MilpStatus | MILP 求解状态。 | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
14 |
| MilpVariable | MILP 变量:在既有 LppVariable 之上追加整数类型标记。 | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
4 |
| MilpVarType | MILP 变量类型。 | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
6 |
| NodeRule | 节点选择规则。 | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
4 |
| PresolveStats | 预处理统计。 | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
7 |
Microsoft.VisualBasic.Math.LinearAlgebra.LinearProgramming.MILP.BranchAndBound
| Type | Summary | Package | Members |
|---|---|---|---|
| Node | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
4 |
Microsoft.VisualBasic.Math.LinearAlgebra.Matrix
| Type | Summary | Package | Members |
|---|---|---|---|
| CholeskyDecomposition | Cholesky Decomposition. | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
7 |
| CholeskyDecomposition | Cholesky Decomposition. | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
7 |
| EigenvalueDecomposition | Eigenvalues and eigenvectors of a real matrix. | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
16 |
| EigenvalueDecomposition | Eigenvalues and eigenvectors of a real matrix. | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
16 |
| Extensions | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
19 | |
| Extensions | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
9 | |
| GeneralMatrix | [m,n] | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
9 |
| GeneralMatrix | [m,n] | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
6 |
| IndexVector | another form of SparseMatrix | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
3 |
| IndexVector | another form of SparseMatrix | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
3 |
| LargeScaleEigenSolver | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
1 | |
| LargeScaleEigenSolver | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
1 | |
| LUDecomposition | LU Decomposition. For an m-by-n matrix A with m >= n, the LU decomposition is an m-by-n unit lower triangular matrix L, an n-by-n upper triangular matrix U, and a permutation ve… | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
13 |
| LUDecomposition | LU Decomposition. For an m-by-n matrix A with m >= n, the LU decomposition is an m-by-n unit lower triangular matrix L, an n-by-n upper triangular matrix U, and a permutation ve… | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
13 |
| MatrixOps | 矩阵运算模块 - 使用 VB.NET 基础数学函数实现线性代数运算 包含:矩阵乘法、转置、求逆、行列式、特征值分解等 | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
11 |
| MatrixOps | 矩阵运算模块 - 使用 VB.NET 基础数学函数实现线性代数运算 包含:矩阵乘法、转置、求逆、行列式、特征值分解等 | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
11 |
| Multiply | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
2 | |
| Multiply | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
2 | |
| NMF | implementation of Non-negative Matrix Factorisation Algorithms | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
7 |
| NMF | implementation of Non-negative Matrix Factorisation Algorithms | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
1 |
| NumericMatrix | .NET GeneralMatrix class. | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
108 |
| NumericMatrix | .NET GeneralMatrix class. | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
89 |
| QRDecomposition | QR Decomposition. For an m-by-n matrix A with m >= n, the QR decomposition is an m-by-n orthogonal matrix Q and an n-by-n upper triangular matrix R so that A = Q*R. The QR de… | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
10 |
| QRDecomposition | QR Decomposition. For an m-by-n matrix A with m >= n, the QR decomposition is an m-by-n orthogonal matrix Q and an n-by-n upper triangular matrix R so that A = Q*R. The QR de… | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
10 |
| Serialization | data serialization of the numeric matrix | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
2 |
| Serialization | data serialization of the numeric matrix | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
2 |
| SingularValueDecomposition | Singular Value Decomposition. | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
13 |
| SingularValueDecomposition | Singular Value Decomposition. | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
13 |
| SparseMatrix | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
20 | |
| SparseMatrix | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
7 | |
| Subtraction | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
1 | |
| Subtraction | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
1 | |
| TruncatedSVD | 截断奇异值分解(Truncated Singular Value Decomposition)。 采用随机化 SVD 算法(Halko, Martinsson, Tropp, 2009,即 sklearn TruncatedSVD(solver="randomized") 所使用的算法),针对高维稀疏矩阵 进行截断的奇异值分解:只计算并保留前… | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
18 |
| TruncatedSVD | 截断奇异值分解(Truncated Singular Value Decomposition)。 采用随机化 SVD 算法(Halko, Martinsson, Tropp, 2009,即 sklearn TruncatedSVD(solver="randomized") 所使用的算法),针对高维稀疏矩阵 进行截断的奇异值分解:只计算并保留前… | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
18 |
| vbMatrix | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
46 | |
| vbMatrix | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
46 |
Microsoft.VisualBasic.Math.LinearAlgebra.Matrix.MDSScale
| Type | Summary | Package | Members |
|---|---|---|---|
| Data | Created by IntelliJ IDEA. | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
9 |
| Data | Created by IntelliJ IDEA. | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
9 |
| LandmarkMDS | Created by IntelliJ IDEA. | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
8 |
| LandmarkMDS | Created by IntelliJ IDEA. | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
8 |
| MDS | Created by IntelliJ IDEA. | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
4 |
| MDS | Created by IntelliJ IDEA. | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
4 |
| MDSMethod | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
7 | |
| MDSMethod | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
7 | |
| SMACOF | A class implementing Stress Minimization by Majorizing a Complex Function (SMACOF). | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
13 |
| SMACOF | A class implementing Stress Minimization by Majorizing a Complex Function (SMACOF). | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
13 |
Microsoft.VisualBasic.Math.LinearAlgebra.PCAEllipseCalculator
| Type | Summary | Package | Members |
|---|---|---|---|
| EllipseType | 椭圆类型枚举 | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
6 |
| EllipseType | 椭圆类型枚举 | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
6 |
Microsoft.VisualBasic.Math.LinearAlgebra.Solvers
| Type | Summary | Package | Members |
|---|---|---|---|
| GaussianElimination | Gaussian elimination In mathematics, Gaussian elimination, also known as row reduction, is an algorithm for solving systems of linear equations. | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
2 |
| GaussianElimination | Gaussian elimination In mathematics, Gaussian elimination, also known as row reduction, is an algorithm for solving systems of linear equations. | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
2 |
| OLS | OLS(普通最小二乘法,Ordinary Least Squares)的计算原理和用途。 OLS 是统计学和机器学习中最基础、也最重要的回归分析方法之一。它的核心目标是:在众多数据点中,找到一条能“最佳拟合”这些点的直线(或超平面)。 --- ### 一、 OLS 的计算原理 为了便于理解,我们以一元线性回归(只有一个自变量 $X$ 和一… | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
1 |
| OLS | OLS(普通最小二乘法,Ordinary Least Squares)的计算原理和用途。 OLS 是统计学和机器学习中最基础、也最重要的回归分析方法之一。它的核心目标是:在众多数据点中,找到一条能“最佳拟合”这些点的直线(或超平面)。 --- ### 一、 OLS 的计算原理 为了便于理解,我们以一元线性回归(只有一个自变量 $X$ 和一… | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
1 |
| PowerMethod | Method for finding eigenvectors | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
2 |
| PowerMethod | Method for finding eigenvectors | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
2 |
| Solve | a*b=0 -> x | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
3 |
| Solve | a*b=0 -> x | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
0 |
| SOR | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
1 | |
| SOR | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
1 |
Microsoft.VisualBasic.Math.LinearAlgebra.Vector
Microsoft.VisualBasic.Math.Logical.FuzzyLogic
| Type | Summary | Package | Members |
|---|---|---|---|
| FuzzyEngine | Represents the inferential engine. | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
7 |
| FuzzyEngine | Represents the inferential engine. | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
5 |
| FuzzyRule | Represents a rule. | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
5 |
| FuzzyRule | Represents a rule. | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
5 |
| FuzzyRuleCollection | Represents a collection of rules. | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
0 |
| FuzzyRuleCollection | Represents a collection of rules. | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
0 |
| LinguisticVariable | Represents a linguistic variable. | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
10 |
| LinguisticVariable | Represents a linguistic variable. | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
10 |
| LinguisticVariableCollection | Represents a collection of rules. | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
1 |
| LinguisticVariableCollection | Represents a collection of rules. | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
1 |
| MembershipFunction | Represents a membership function. | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
11 |
| MembershipFunction | Represents a membership function. | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
11 |
| MembershipFunctionCollection | Represents a collection of membership functions. | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
1 |
| MembershipFunctionCollection | Represents a collection of membership functions. | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
1 |
Microsoft.VisualBasic.Math.Logical.FuzzyLogic.Models
| Type | Summary | Package | Members |
|---|---|---|---|
| FuzzyModel | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
8 | |
| FuzzyModel | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
1 | |
| Tokens | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
9 | |
| Tokens | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
9 |
Microsoft.VisualBasic.Math.MachineVision
| Type | Summary | Package | Members |
|---|---|---|---|
| ConfusionChars | Microsoft.VisualBasic.Math.MachineVision 1.0.9753.4776 |
4 | |
| ConfusionChars | Microsoft.VisualBasic.Math.MachineVision 1.0.9762.11310 |
4 | |
| CurveAnalysis | A collection of static methods for analyzing and comparing 2D curves. | Microsoft.VisualBasic.Math.MachineVision 1.0.9753.4776 |
15 |
| CurveAnalysis | A collection of static methods for analyzing and comparing 2D curves. | Microsoft.VisualBasic.Math.MachineVision 1.0.9762.11310 |
15 |
| FPFHCalculator | Microsoft.VisualBasic.Math.MachineVision 1.0.9753.4776 |
2 | |
| FPFHCalculator | Microsoft.VisualBasic.Math.MachineVision 1.0.9762.11310 |
2 | |
| FPFHDescriptor | FPFH (Fast Point Feature Histograms) | Microsoft.VisualBasic.Math.MachineVision 1.0.9753.4776 |
2 |
| FPFHDescriptor | FPFH (Fast Point Feature Histograms) | Microsoft.VisualBasic.Math.MachineVision 1.0.9762.11310 |
2 |
| FrameData | A frame data of the Detection. | Microsoft.VisualBasic.Math.MachineVision 1.0.9753.4776 |
0 |
| FrameData | A frame data of the Detection. | Microsoft.VisualBasic.Math.MachineVision 1.0.9762.11310 |
0 |
| FrameData | Microsoft.VisualBasic.Math.MachineVision 1.0.9753.4776 |
6 | |
| FrameData | Microsoft.VisualBasic.Math.MachineVision 1.0.9762.11310 |
2 | |
| OcrText | Microsoft.VisualBasic.Math.MachineVision 1.0.9753.4776 |
2 | |
| OcrText | Microsoft.VisualBasic.Math.MachineVision 1.0.9762.11310 |
2 | |
| OcrTextMatches | Make text matches of the ocr text data | Microsoft.VisualBasic.Math.MachineVision 1.0.9753.4776 |
1 |
| OcrTextMatches | Make text matches of the ocr text data | Microsoft.VisualBasic.Math.MachineVision 1.0.9762.11310 |
1 |
| PointWithDescriptor | A point structure that includes its feature descriptor. | Microsoft.VisualBasic.Math.MachineVision 1.0.9753.4776 |
11 |
| PointWithDescriptor | A point structure that includes its feature descriptor. | Microsoft.VisualBasic.Math.MachineVision 1.0.9762.11310 |
5 |
| PointWithNormal | 一个带法向量的点 | Microsoft.VisualBasic.Math.MachineVision 1.0.9753.4776 |
3 |
| PointWithNormal | 一个带法向量的点 | Microsoft.VisualBasic.Math.MachineVision 1.0.9762.11310 |
3 |
| RANSACPointAlignment | A static utility class for aligning two 2D polygons using the RANSAC algorithm. | Microsoft.VisualBasic.Math.MachineVision 1.0.9753.4776 |
8 |
| RANSACPointAlignment | A static utility class for aligning two 2D polygons using the RANSAC algorithm. | Microsoft.VisualBasic.Math.MachineVision 1.0.9762.11310 |
6 |
| ShapeContextCalculator | Microsoft.VisualBasic.Math.MachineVision 1.0.9753.4776 |
1 | |
| ShapeContextCalculator | Microsoft.VisualBasic.Math.MachineVision 1.0.9762.11310 |
1 | |
| ShapeContextDescriptor | 一个点的 Shape Context 描述子 | Microsoft.VisualBasic.Math.MachineVision 1.0.9753.4776 |
2 |
| ShapeContextDescriptor | 一个点的 Shape Context 描述子 | Microsoft.VisualBasic.Math.MachineVision 1.0.9762.11310 |
2 |
| Tracker | Microsoft.VisualBasic.Math.MachineVision 1.0.9753.4776 |
8 | |
| Tracker | Microsoft.VisualBasic.Math.MachineVision 1.0.9762.11310 |
4 | |
| Trajectory | Trajectory of a object | Microsoft.VisualBasic.Math.MachineVision 1.0.9753.4776 |
6 |
| Trajectory | Trajectory of a object | Microsoft.VisualBasic.Math.MachineVision 1.0.9762.11310 |
6 |
Microsoft.VisualBasic.Math.MachineVision.CCL
| Type | Summary | Package | Members |
|---|---|---|---|
| CCLabeling | Connected Component Labeling | Microsoft.VisualBasic.Math.MachineVision 1.0.9753.4776 |
3 |
| CCLabeling | Connected Component Labeling | Microsoft.VisualBasic.Math.MachineVision 1.0.9762.11310 |
3 |
Microsoft.VisualBasic.Math.MachineVision.CurveAnalysis
| Type | Summary | Package | Members |
|---|---|---|---|
| Curve | Represents a curve as a list of points. | Microsoft.VisualBasic.Math.MachineVision 1.0.9753.4776 |
0 |
| Curve | Represents a curve as a list of points. | Microsoft.VisualBasic.Math.MachineVision 1.0.9762.11310 |
0 |
| ProcrustesNormalizeCurveOpts | Options for Procrustes curve normalization. | Microsoft.VisualBasic.Math.MachineVision 1.0.9753.4776 |
2 |
| ProcrustesNormalizeCurveOpts | Options for Procrustes curve normalization. | Microsoft.VisualBasic.Math.MachineVision 1.0.9762.11310 |
2 |
| RebalanceCurveOpts | Options for curve rebalancing. | Microsoft.VisualBasic.Math.MachineVision 1.0.9753.4776 |
1 |
| RebalanceCurveOpts | Options for curve rebalancing. | Microsoft.VisualBasic.Math.MachineVision 1.0.9762.11310 |
1 |
| ShapeSimilarityOpts | Options for shape similarity calculation. | Microsoft.VisualBasic.Math.MachineVision 1.0.9753.4776 |
4 |
| ShapeSimilarityOpts | Options for shape similarity calculation. | Microsoft.VisualBasic.Math.MachineVision 1.0.9762.11310 |
4 |
| SubdivideCurveOpts | Options for curve subdivision. | Microsoft.VisualBasic.Math.MachineVision 1.0.9753.4776 |
1 |
| SubdivideCurveOpts | Options for curve subdivision. | Microsoft.VisualBasic.Math.MachineVision 1.0.9762.11310 |
1 |
Microsoft.VisualBasic.Math.Matrix
| Type | Summary | Package | Members |
|---|---|---|---|
| Builder | Microsoft.VisualBasic.Math.Matrix 1.0.9753.4776 |
7 | |
| Builder | Microsoft.VisualBasic.Math.Matrix 1.0.9762.11310 |
4 | |
| Correlation | Microsoft.VisualBasic.Math.Matrix 1.0.9753.4776 |
6 | |
| Correlation | Microsoft.VisualBasic.Math.Matrix 1.0.9762.11310 |
2 | |
| CorrelationMatrix | the correlation matrix join the pvalue matrix | Microsoft.VisualBasic.Math.Matrix 1.0.9753.4776 |
6 |
| CorrelationMatrix | the correlation matrix join the pvalue matrix | Microsoft.VisualBasic.Math.Matrix 1.0.9762.11310 |
5 |
| DataMatrix | A NxN data matrix which can be convert to graph object under a certain cutoff value. | Microsoft.VisualBasic.Math.Matrix 1.0.9753.4776 |
11 |
| DataMatrix | A NxN data matrix which can be convert to graph object under a certain cutoff value. | Microsoft.VisualBasic.Math.Matrix 1.0.9762.11310 |
1 |
| Distance | Microsoft.VisualBasic.Math.Matrix 1.0.9753.4776 |
5 | |
| Distance | Microsoft.VisualBasic.Math.Matrix 1.0.9762.11310 |
2 | |
| DistanceMatrix | a dissimilarity or similarity structure | Microsoft.VisualBasic.Math.Matrix 1.0.9753.4776 |
2 |
| DistanceMatrix | a dissimilarity or similarity structure | Microsoft.VisualBasic.Math.Matrix 1.0.9762.11310 |
1 |
| InferMethods | 缺失值的模拟推断方法 | Microsoft.VisualBasic.Math.Matrix 1.0.9753.4776 |
2 |
| InferMethods | 缺失值的模拟推断方法 | Microsoft.VisualBasic.Math.Matrix 1.0.9762.11310 |
2 |
| InternalHelpers | 这个模块是在删除了csv文件模块的依赖之后的进行重复实现某些csv文件模块的逻辑函数的帮助模块 | Microsoft.VisualBasic.Math.Matrix 1.0.9753.4776 |
0 |
| InternalHelpers | 这个模块是在删除了csv文件模块的依赖之后的进行重复实现某些csv文件模块的逻辑函数的帮助模块 | Microsoft.VisualBasic.Math.Matrix 1.0.9762.11310 |
0 |
| LoadDataMatrix | Microsoft.VisualBasic.Math.Matrix 1.0.9753.4776 |
2 | |
| LoadDataMatrix | Microsoft.VisualBasic.Math.Matrix 1.0.9762.11310 |
1 | |
| MatrixFormat | Microsoft.VisualBasic.Math.Matrix 1.0.9753.4776 |
5 | |
| MatrixFormat | Microsoft.VisualBasic.Math.Matrix 1.0.9762.11310 |
4 | |
| MatrixTypeCast | Microsoft.VisualBasic.Math.Matrix 1.0.9753.4776 |
1 | |
| MatrixTypeCast | Microsoft.VisualBasic.Math.Matrix 1.0.9762.11310 |
1 | |
| NamedSparseMatrix | Microsoft.VisualBasic.Math.Matrix 1.0.9753.4776 |
10 | |
| NamedSparseMatrix | Microsoft.VisualBasic.Math.Matrix 1.0.9762.11310 |
10 | |
| NumericDataSet | Microsoft.VisualBasic.Math.Matrix 1.0.9753.4776 |
5 | |
| NumericDataSet | Microsoft.VisualBasic.Math.Matrix 1.0.9762.11310 |
2 |
Microsoft.VisualBasic.Math.Matrix.MatrixFormat
| Type | Summary | Package | Members |
|---|---|---|---|
| MatrixCompression | v2 头部中的压缩标志位:0 表示未压缩,1 表示后续数据经过 gzip 压缩。 | Microsoft.VisualBasic.Math.Matrix 1.0.9753.4776 |
2 |
| MatrixCompression | v2 头部中的压缩标志位:0 表示未压缩,1 表示后续数据经过 gzip 压缩。 | Microsoft.VisualBasic.Math.Matrix 1.0.9762.11310 |
2 |
Microsoft.VisualBasic.Math.Matrix.MatrixMarket
| Type | Summary | Package | Members |
|---|---|---|---|
| MTXFormat | %%MatrixMarket matrix coordinate real general %================================================================================= % % This ASCII file represents a sparse MxN matr… | Microsoft.VisualBasic.Math.Matrix 1.0.9753.4776 |
2 |
| MTXFormat | %%MatrixMarket matrix coordinate real general %================================================================================= % % This ASCII file represents a sparse MxN matr… | Microsoft.VisualBasic.Math.Matrix 1.0.9762.11310 |
2 |
| RUAFormat | Reader and writer for the Harwell-Boeing sparse matrix format, specifically the RUA (Real, Unsymmetric, Assembled) variant. | Microsoft.VisualBasic.Math.Matrix 1.0.9753.4776 |
5 |
| RUAFormat | Reader and writer for the Harwell-Boeing sparse matrix format, specifically the RUA (Real, Unsymmetric, Assembled) variant. | Microsoft.VisualBasic.Math.Matrix 1.0.9762.11310 |
5 |
Microsoft.VisualBasic.Math.Numerics
| Type | Summary | Package | Members |
|---|---|---|---|
| BigDecimal | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
41 | |
| BigDecimal | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
41 | |
| Half | Represents a half-precision floating point number. | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
90 |
| Half | Represents a half-precision floating point number. | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
90 |
| HalfHelper | Helper class for Half conversions and some low level operations. | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
1 |
| HalfHelper | Helper class for Half conversions and some low level operations. | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
1 |
| UncheckedInteger | https://stackoverflow.com/questions/2403154/fastest-way-to-do-an-unchecked-integer-addition-in-vb-net | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
7 |
| UncheckedInteger | https://stackoverflow.com/questions/2403154/fastest-way-to-do-an-unchecked-integer-addition-in-vb-net | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
7 |
| UncheckIntegerExtensions | unchecked arithmetic | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
4 |
| UncheckIntegerExtensions | unchecked arithmetic | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
4 |
Microsoft.VisualBasic.Math.Parallel
| Type | Summary | Package | Members |
|---|---|---|---|
| MatrixDotProduct | module for run matrix dot product in parallel | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 |
| MatrixDotProduct | module for run matrix dot product in parallel | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 |
Microsoft.VisualBasic.Math.Quantile
| Type | Summary | Package | Members |
|---|---|---|---|
| DataQuartile | A data quartile model based on a given sample data input | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
9 |
| DataQuartile | A data quartile model based on a given sample data input | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
6 |
| Extensions | GK quantile extensions method | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
9 |
| Extensions | GK quantile extensions method | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
8 |
| FastRankQuantile | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
3 | |
| FastRankQuantile | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
3 | |
| QuantileEstimationGK | Implementation of the Greenwald and Khanna algorithm for streaming calculation of epsilon-approximate quantiles. | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
8 |
| QuantileEstimationGK | Implementation of the Greenwald and Khanna algorithm for streaming calculation of epsilon-approximate quantiles. | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
8 |
| Quartile | 四分位数(Quartile)是在统计学中把所有数值由小到大排列并分成四等份够,处于三个分割点位置的数值。 | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
2 |
| Quartile | 四分位数(Quartile)是在统计学中把所有数值由小到大排列并分成四等份够,处于三个分割点位置的数值。 | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
2 |
| Selector | String expression for select the sequence members by its numeric values, selector expression provider for CLI programming. | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
7 |
| Selector | String expression for select the sequence members by its numeric values, selector expression provider for CLI programming. | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
7 |
| X | Data variables | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
4 |
| X | Data variables | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
4 |
Microsoft.VisualBasic.Math.Quantile.Selector
Microsoft.VisualBasic.Math.Scripting
| Type | Summary | Package | Members |
|---|---|---|---|
| Factor | R language like string factor | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
3 |
| Factor | R language like string factor | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
0 |
| FactorExtensions | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
3 | |
| FactorExtensions | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
2 | |
| FactorVector | 提供和R之中的向量类似的行为:可以用两种方式来访问向量之中的成员,名字或者向量数组的下表 | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
7 |
| FactorVector | 提供和R之中的向量类似的行为:可以用两种方式来访问向量之中的成员,名字或者向量数组的下表 | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
0 |
| FormulaDependency | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
6 | |
| FormulaDependency | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
6 | |
| IVector | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
4 | |
| IVector | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
3 | |
| MathScriptEngine | 数学脚本引擎:支持标量/向量变量、函数定义、axis 内置以及 scatter/line/surface 绘图指令。仅产出向量数据与绘图指令, 不依赖任何绘图组件,可作为通用数学运算脚本引擎复用。 设计要点:向量运算复用现有标量 ExpressionEngine,以 “逐元素标量循环 + 环境变量绑定”方式求值,避免改动表达式编译器。 | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
6 |
| MathScriptEngine | 数学脚本引擎:支持标量/向量变量、函数定义、axis 内置以及 scatter/line/surface 绘图指令。仅产出向量数据与绘图指令, 不依赖任何绘图组件,可作为通用数学运算脚本引擎复用。 设计要点:向量运算复用现有标量 ExpressionEngine,以 “逐元素标量循环 + 环境变量绑定”方式求值,避免改动表达式编译器。 | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
6 |
| NamedVector | 提供字符串映射到具体的数值 | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
5 |
| NamedVector | 提供字符串映射到具体的数值 | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
1 |
| NamedVectorFactory | Factory for Dictionary to Vector | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
5 |
| NamedVectorFactory | Factory for Dictionary to Vector | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
1 |
| ParameterExpressionScript | 在vb之中由于可选参数的值只能够是常量,假若变量之间还存在关联,则必须要用表达式, 但是表达式不是常量,所以使用这个模块之中的代码来模拟R语言之中的可选参数表达式 | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
4 |
| ParameterExpressionScript | 在vb之中由于可选参数的值只能够是常量,假若变量之间还存在关联,则必须要用表达式, 但是表达式不是常量,所以使用这个模块之中的代码来模拟R语言之中的可选参数表达式 | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
4 |
| PlotCommand | 一条绘图指令(纯数据,不引用任何绘图组件)。 由数学脚本引擎产出,供可视化程序解释渲染。 | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
10 |
| PlotCommand | 一条绘图指令(纯数据,不引用任何绘图组件)。 由数学脚本引擎产出,供可视化程序解释渲染。 | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
10 |
| PlotKind | 绘图类型 | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
3 |
| PlotKind | 绘图类型 | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
3 |
| ScriptEngine | Math expression script engine. | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
12 |
| ScriptEngine | Math expression script engine. | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
12 |
| ScriptResult | 脚本执行结果 | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
5 |
| ScriptResult | 脚本执行结果 | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
5 |
Microsoft.VisualBasic.Math.Scripting.MathExpression
| Type | Summary | Package | Members |
|---|---|---|---|
| Arithmetic | The basics arithmetic operators' definition. | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
8 |
| Arithmetic | The basics arithmetic operators' definition. | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
8 |
| DynamicInvoke | An abstract function interface for make math formula expression evaluation | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
3 |
| DynamicInvoke | An abstract function interface for make math formula expression evaluation | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
3 |
| ExpressionBuilder | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
5 | |
| ExpressionBuilder | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
4 | |
| ExpressionEngine | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
9 | |
| ExpressionEngine | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
9 | |
| FunctionElement | 将用户定义的函数持久化的保存在XML文件之中所使用到的格式 | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
4 |
| FunctionElement | 将用户定义的函数持久化的保存在XML文件之中所使用到的格式 | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
4 |
| MathToken | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
1 | |
| MathToken | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
1 |
Microsoft.VisualBasic.Math.Scripting.MathExpression.Impl
| Type | Summary | Package | Members |
|---|---|---|---|
| BinaryExpression | left op right | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
8 |
| BinaryExpression | left op right | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
8 |
| Expression | the abstract math expression | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
5 |
| Expression | the abstract math expression | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
5 |
| Factorial | x! | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
4 |
| Factorial | x! | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
4 |
| FunctionInvoke | f(x) | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
5 |
| FunctionInvoke | f(x) | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
5 |
| Literal | A number literal | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
13 |
| Literal | A number literal | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
13 |
| SymbolExpression | symbol x | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
4 |
| SymbolExpression | symbol x | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
4 |
Microsoft.VisualBasic.Math.Scripting.Rscript
| Type | Summary | Package | Members |
|---|---|---|---|
| GenericVector | 在这个泛型向量之中,仅包含有对元素对象的访问方法的封装,并没有涉及类型解析等反射操作 | Microsoft.VisualBasic.Math.Core 5.0.9753.4776 |
9 |
| GenericVector | 在这个泛型向量之中,仅包含有对元素对象的访问方法的封装,并没有涉及类型解析等反射操作 | Microsoft.VisualBasic.Math.Core 5.0.9762.11310 |
3 |
Microsoft.VisualBasic.Math.SignalProcessing
| Type | Summary | Package | Members |
|---|---|---|---|
| Alignment | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
3 | |
| Alignment | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
1 | |
| BinSampler | signal data aggregate helper | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
3 |
| BinSampler | signal data aggregate helper | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
2 |
| ColorSpectrum | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
1 | |
| ColorSpectrum | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
1 | |
| Extensions | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
6 | |
| Extensions | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
3 | |
| GeneralSignal | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
15 | |
| GeneralSignal | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
4 | |
| Interpolation | make the signal data interpolation | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
3 |
| Interpolation | make the signal data interpolation | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
1 |
| MathUtils | 数学辅助工具类,提供信号处理和数值计算所需的基础函数 | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
8 |
| MathUtils | 数学辅助工具类,提供信号处理和数值计算所需的基础函数 | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
8 |
| NetworkSignalClassifier | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
1 | |
| NetworkSignalClassifier | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
1 | |
| NetworkSignalType | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
10 | |
| NetworkSignalType | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
10 | |
| PIDController | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
3 | |
| PIDController | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
3 | |
| Plans | Plans Description | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
3 |
| Plans | Plans Description | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
3 |
| Resampler | data signal resampler for continuous signals | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
5 |
| Resampler | data signal resampler for continuous signals | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
4 |
| Signal | A vector of the TimeSignal | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
1 |
| Signal | A vector of the TimeSignal | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
1 |
| SignalClustering | Try to make time serial signal data into multiple clusters | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
3 |
| SignalClustering | Try to make time serial signal data into multiple clusters | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
0 |
| TimeSignal | a single scatter point in a time signal | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
5 |
| TimeSignal | a single scatter point in a time signal | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
1 |
| WaveletTransformExtensions | 小波变换工具 | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
4 |
| WaveletTransformExtensions | 小波变换工具 | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
4 |
Microsoft.VisualBasic.Math.SignalProcessing.COW
| Type | Summary | Package | Members |
|---|---|---|---|
| CowAlignment | Do alignment of the time signal peaks between multiple sample data files, example as the signal peak data is the ms1 ion peak which is generated from the LCMS sample MS1 data | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
4 |
| CowAlignment | Do alignment of the time signal peaks between multiple sample data files, example as the signal peak data is the ms1 ion peak which is generated from the LCMS sample MS1 data | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
4 |
| CowParameter | This is the parameters of correlation optimized warping algorithm. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
5 |
| CowParameter | This is the parameters of correlation optimized warping algorithm. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
5 |
| FunctionElement | This class is used in dynamic programming algorithm of CowAlignment.cs. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
0 |
| FunctionElement | This class is used in dynamic programming algorithm of CowAlignment.cs. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
0 |
| FunctionMatrix | This class is used in dynamic programming algorithm of CowAlignment.cs | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
0 |
| FunctionMatrix | This class is used in dynamic programming algorithm of CowAlignment.cs | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
0 |
| IDelegateCreatePeak2D | Function to create a signal peak object | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
3 |
| IDelegateCreatePeak2D | Function to create a signal peak object | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
3 |
| IPeak2D | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
4 | |
| IPeak2D | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
4 | |
| TraceDirection | This class is not used in MS-DIAL and MS-FINDER programs. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
3 |
| TraceDirection | This class is not used in MS-DIAL and MS-FINDER programs. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
3 |
Microsoft.VisualBasic.Math.SignalProcessing.EmGaussian
| Type | Summary | Package | Members |
|---|---|---|---|
| GaussianFit | em-gaussian fit of a single data, fit time/spectrum/other sequential data with a set of gaussians by expectation-maximization algoritm. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
2 |
| GaussianFit | em-gaussian fit of a single data, fit time/spectrum/other sequential data with a set of gaussians by expectation-maximization algoritm. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
2 |
| Opts | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
5 | |
| Opts | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
5 | |
| TimeBins | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
3 | |
| TimeBins | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
2 | |
| Variable | A possible signle peak | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
11 |
| Variable | A possible signle peak | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
11 |
Microsoft.VisualBasic.Math.SignalProcessing.FFT
| Type | Summary | Package | Members |
|---|---|---|---|
| DoubleFFT_1D | https://github.com/cobaltblueocean/Mercury.Language.Extensions | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
14 |
| DoubleFFT_1D | https://github.com/cobaltblueocean/Mercury.Language.Extensions | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
14 |
| FourierTransform | Fourier transformation. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
7 |
| FourierTransform | Fourier transformation. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
7 |
| TFftAlgorithm | Quick Fourier Transformation. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
11 |
| TFftAlgorithm | Quick Fourier Transformation. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
11 |
| TransformCore | Core utility class to provide general utility methods | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
0 |
| TransformCore | Core utility class to provide general utility methods | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
0 |
Microsoft.VisualBasic.Math.SignalProcessing.FFT.FourierTransform
Microsoft.VisualBasic.Math.SignalProcessing.Filters
| Type | Summary | Package | Members |
|---|---|---|---|
| ContinuousPadder | Pads data to left and/or right, starting from the first (last) non-zero cell and extending it to the beginning (end) of data. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
5 |
| ContinuousPadder | Pads data to left and/or right, starting from the first (last) non-zero cell and extending it to the beginning (end) of data. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
5 |
| DataFilter | This interface represents types which are able to filter data, for example: eliminate redundant points. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
1 |
| DataFilter | This interface represents types which are able to filter data, for example: eliminate redundant points. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
1 |
| Linearizer | Linearizes data by seeking points with relative difference greater than Linearizer.TruncateRatio and replacing them with points lying on line between the first and the last of su… | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
4 |
| Linearizer | Linearizes data by seeking points with relative difference greater than Linearizer.TruncateRatio and replacing them with points lying on line between the first and the last of su… | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
4 |
| MeanValuePadder | Pads data to left and/or right.: Let l be the index of the first non-zero element in data (for left padding),let r be the index of the last non-zero element in data (for… | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
6 |
| MeanValuePadder | Pads data to left and/or right.: Let l be the index of the first non-zero element in data (for left padding),let r be the index of the last non-zero element in data (for… | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
6 |
| Preprocessor | This interface represents types which are able to perform data processing in place. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
1 |
| Preprocessor | This interface represents types which are able to perform data processing in place. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
1 |
| RamerDouglasPeuckerFilter | Filters data using Ramer-Douglas-Peucker algorithm with specified tolerance Ramer-Douglas-Peucker algorithm @author Rzeźnik | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
3 |
| RamerDouglasPeuckerFilter | Filters data using Ramer-Douglas-Peucker algorithm with specified tolerance Ramer-Douglas-Peucker algorithm @author Rzeźnik | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
3 |
| SGFilter | Savitzky-Golay filter implementation. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
22 |
| SGFilter | Savitzky-Golay filter implementation. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
22 |
| TrendRemover | De-trends data by setting straight line between the first and the last point and subtracting it from data. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
2 |
| TrendRemover | De-trends data by setting straight line between the first and the last point and subtracting it from data. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
2 |
| ZeroEliminator | Eliminates zeros from data - starting from the first non-zero element, ending at the last non-zero element. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
4 |
| ZeroEliminator | Eliminates zeros from data - starting from the first non-zero element, ending at the last non-zero element. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
4 |
Microsoft.VisualBasic.Math.SignalProcessing.HungarianAlgorithm
| Type | Summary | Package | Members |
|---|---|---|---|
| HungarianAlgorithm | Hungarian Algorithm. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
2 |
| HungarianAlgorithm | Hungarian Algorithm. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
2 |
Microsoft.VisualBasic.Math.SignalProcessing.KalmanFilter
| Type | Summary | Package | Members |
|---|---|---|---|
| Algorithm | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
4 | |
| Algorithm | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
4 | |
| kalman1_state | Represents the state of a 1-dimensional Kalman filter | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
7 |
| kalman1_state | Represents the state of a 1-dimensional Kalman filter | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
7 |
| kalman2_state | Represents the state of a 2-dimensional Kalman filter | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
7 |
| kalman2_state | Represents the state of a 2-dimensional Kalman filter | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
7 |
Microsoft.VisualBasic.Math.SignalProcessing.NDtw
| Type | Summary | Package | Members |
|---|---|---|---|
| Dtw | Dynamic Time Warping (DTW) algorithm implementation In time series analysis, dynamic time warping (DTW) is an algorithm for measuring similarity between two temporal sequences,… | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
10 |
| Dtw | Dynamic Time Warping (DTW) algorithm implementation In time series analysis, dynamic time warping (DTW) is an algorithm for measuring similarity between two temporal sequences,… | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
4 |
Microsoft.VisualBasic.Math.SignalProcessing.NDtw.Preprocessing
| Type | Summary | Package | Members |
|---|---|---|---|
| CentralizationPreprocessor | f(x) = x - mean | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
2 |
| CentralizationPreprocessor | f(x) = x - mean | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
2 |
| IPreprocessor | signal processor for scale the signal intensity value | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
7 |
| IPreprocessor | signal processor for scale the signal intensity value | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
7 |
| NonePreprocessor | signal data processor that do nothing f(x) = x | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
2 |
| NonePreprocessor | signal data processor that do nothing f(x) = x | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
2 |
| NormalizationPreprocessor | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
4 | |
| NormalizationPreprocessor | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
4 | |
| StandardizationPreprocessor | f(x) = (x - mean) / std dev | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
2 |
| StandardizationPreprocessor | f(x) = (x - mean) / std dev | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
2 |
Microsoft.VisualBasic.Math.SignalProcessing.PeakFinding
| Type | Summary | Package | Members |
|---|---|---|---|
| ElevationAlgorithm | 通过累加线的高度落差进行峰识别 1. 首先计算出信号的累加线 2. 然后删除所有的坡度小于给定角度值的平行段 3. 剩下的片段就是信号峰对应的时间s区间 | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
2 |
| ElevationAlgorithm | 通过累加线的高度落差进行峰识别 1. 首先计算出信号的累加线 2. 然后删除所有的坡度小于给定角度值的平行段 3. 剩下的片段就是信号峰对应的时间s区间 | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
1 |
| Implement | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
4 | |
| Implement | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
2 | |
| SignalPeak | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
13 | |
| SignalPeak | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
1 |
Microsoft.VisualBasic.Math.SignalProcessing.Source
| Type | Summary | Package | Members |
|---|---|---|---|
| DumpsSignal | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
1 | |
| DumpsSignal | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
1 | |
| Signal | Basic Signal class for providing all kinds of signal-data to the GUI. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
10 |
| Signal | Basic Signal class for providing all kinds of signal-data to the GUI. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
10 |
Microsoft.VisualBasic.Math.SignalProcessing.Source.Arithmetic
| Type | Summary | Package | Members |
|---|---|---|---|
| ArithmeticSignal | Advanced Signal class for operations on two Signals. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
5 |
| ArithmeticSignal | Advanced Signal class for operations on two Signals. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
5 |
Microsoft.VisualBasic.Math.SignalProcessing.Source.Generators
| Type | Summary | Package | Members |
|---|---|---|---|
| Basis | factory methods to build each basis function with the four universal parameters in a single call. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
23 |
| Basis | factory methods to build each basis function with the four universal parameters in a single call. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
23 |
| BasisExtensions | fluent parameter helpers for any BasisFunction. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
4 |
| BasisExtensions | fluent parameter helpers for any BasisFunction. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
4 |
| BasisFunction | The abstract base class for all deterministic basis signal functions. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
10 |
| BasisFunction | The abstract base class for all deterministic basis signal functions. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
10 |
| Convolution | convolution of a signal with a kernel, simulating a system's impulse response to the input signal. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
7 |
| Convolution | convolution of a signal with a kernel, simulating a system's impulse response to the input signal. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
7 |
| Cosine | cosine wave: Amp * cos(2π (x - Center) / Scale) + Offset | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
0 |
| Cosine | cosine wave: Amp * cos(2π (x - Center) / Scale) + Offset | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
0 |
| DampedSine | damped sine wave: Amp * e^(-alpha (x - Center)) * sin(2π (x - Center) / Scale) + Offset. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
1 |
| DampedSine | damped sine wave: Amp * e^(-alpha (x - Center)) * sin(2π (x - Center) / Scale) + Offset. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
1 |
| Difference | point-wise subtraction: A - B. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
4 |
| Difference | point-wise subtraction: A - B. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
4 |
| DoubleExp | double-sided exponential: e^(-|x - Center| / Scale). | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
0 |
| DoubleExp | double-sided exponential: e^(-|x - Center| / Scale). | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
0 |
| Exponential | exponential growth / decay: Amp * e^(alpha (x - Center) / Scale) + Offset. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
1 |
| Exponential | exponential growth / decay: Amp * e^(alpha (x - Center) / Scale) + Offset. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
1 |
| Gaussian | Gaussian (normal) peak: a smooth localized bump. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
0 |
| Gaussian | Gaussian (normal) peak: a smooth localized bump. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
0 |
| GaussianNoise | Gaussian (white) noise: independent N(Offset, |Amp|) samples at every point. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
0 |
| GaussianNoise | Gaussian (white) noise: independent N(Offset, |Amp|) samples at every point. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
0 |
| Gompertz | Gompertz function: an asymmetric S-curve, flatter at both ends than a logistic. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
1 |
| Gompertz | Gompertz function: an asymmetric S-curve, flatter at both ends than a logistic. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
1 |
| Linear | linear trend: Amp * (x - Center) / Scale + Offset. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
0 |
| Linear | linear trend: Amp * (x - Center) / Scale + Offset. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
0 |
| Logarithm | logarithmic trend: Amp * ln((x - Center) / Scale) + Offset. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
0 |
| Logarithm | logarithmic trend: Amp * ln((x - Center) / Scale) + Offset. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
0 |
| LogNormal | log-normal function: an asymmetric bump, fast rise then long-tailed decay. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
0 |
| LogNormal | log-normal function: an asymmetric bump, fast rise then long-tailed decay. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
0 |
| Lorentz | Lorentzian / Cauchy peak: similar to a Gaussian but with much heavier (slower decaying) tails. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
0 |
| Lorentz | Lorentzian / Cauchy peak: similar to a Gaussian but with much heavier (slower decaying) tails. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
0 |
| Power | power-law trend: Amp * ((x - Center) / Scale)^alpha + Offset. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
1 |
| Power | power-law trend: Amp * ((x - Center) / Scale)^alpha + Offset. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
1 |
| Presets | ready-to-use composite presets that demonstrate how basis functions combine into realistic signals. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
3 |
| Presets | ready-to-use composite presets that demonstrate how basis functions combine into realistic signals. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
3 |
| Product | point-wise multiplication (modulation). | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
4 |
| Product | point-wise multiplication (modulation). | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
4 |
| Quotient | point-wise division: A / B (0 where B is 0). | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
4 |
| Quotient | point-wise division: A / B (0 where B is 0). | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
4 |
| RectPulse | rectangular pulse: constant Amp inside [Center, Center + Width], 0 elsewhere. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
1 |
| RectPulse | rectangular pulse: constant Amp inside [Center, Center + Width], 0 elsewhere. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
1 |
| ReLU | rectified linear unit: Amp * max(0, (x - Center) / Scale - Cut) + Offset. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
1 |
| ReLU | rectified linear unit: Amp * max(0, (x - Center) / Scale - Cut) + Offset. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
1 |
| Ricker | Ricker wavelet / Mexican hat: a positive lobe flanked by two negative side-lobes. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
0 |
| Ricker | Ricker wavelet / Mexican hat: a positive lobe flanked by two negative side-lobes. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
0 |
| Sawtooth | sawtooth wave: rises linearly then drops instantly, period = BasisFunction.Scale. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
0 |
| Sawtooth | sawtooth wave: rises linearly then drops instantly, period = BasisFunction.Scale. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
0 |
| SignalGenerator | the fluent builder / combiner for synthesizing complex signals out of basis functions. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
8 |
| SignalGenerator | the fluent builder / combiner for synthesizing complex signals out of basis functions. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
8 |
| Sinc | sinc function: sin(π (x - Center) / Scale) / (π (x - Center) / Scale). | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
0 |
| Sinc | sinc function: sin(π (x - Center) / Scale) / (π (x - Center) / Scale). | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
0 |
| Sine | sine wave: Amp * sin(2π (x - Center) / Scale) + Offset | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
0 |
| Sine | sine wave: Amp * sin(2π (x - Center) / Scale) + Offset | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
0 |
| Square | square wave: switches between +Amp and -Amp with a period of BasisFunction.Scale. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
0 |
| Square | square wave: switches between +Amp and -Amp with a period of BasisFunction.Scale. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
0 |
| Step | step function: the limit of a sigmoid. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
0 |
| Step | step function: the limit of a sigmoid. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
0 |
| Sum | point-wise addition of two basis functions. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
4 |
| Sum | point-wise addition of two basis functions. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
4 |
| Tanh | hyperbolic tangent: Amp * tanh((x - Center) / Scale) + Offset. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
0 |
| Tanh | hyperbolic tangent: Amp * tanh((x - Center) / Scale) + Offset. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
0 |
| Triangle | triangle wave: linear rise and fall, period = BasisFunction.Scale. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
0 |
| Triangle | triangle wave: linear rise and fall, period = BasisFunction.Scale. | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
0 |
| UniformNoise | uniform noise: independent samples uniformly distributed in [Offset, Offset + Amp] (or [Offset + Amp, Offset] if Amp < 0). | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
0 |
| UniformNoise | uniform noise: independent samples uniformly distributed in [Offset, Offset + Amp] (or [Offset + Amp, Offset] if Amp < 0). | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
0 |
Microsoft.VisualBasic.Math.SignalProcessing.WaveletTransform
| Type | Summary | Package | Members |
|---|---|---|---|
| Transform | WaveletTransform > https://github.com/green-rail/WaveletTransform | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
13 |
| Transform | WaveletTransform > https://github.com/green-rail/WaveletTransform | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
13 |
| Wavelet | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9753.4776 |
3 | |
| Wavelet | Microsoft.VisualBasic.Math.SignalProcessing 1.0.9762.11310 |
3 |
Microsoft.VisualBasic.Math.SIMD
| Type | Summary | Package | Members |
|---|---|---|---|
| Add | 逐元素加法。 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
8 |
| Add | 逐元素加法。 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
8 |
| Divide | 逐元素除法。 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
7 |
| Divide | 逐元素除法。 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
7 |
| Exponent | 幂运算与自然指数。 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
8 |
| Exponent | 幂运算与自然指数。 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
8 |
| Modulo | 逐元素取余。 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
9 |
| Modulo | 逐元素取余。 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
9 |
| Multiply | 逐元素乘法。乘法满足交换律,因此标量与向量两种书写顺序的结果是等价的。 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
12 |
| Multiply | 逐元素乘法。乘法满足交换律,因此标量与向量两种书写顺序的结果是等价的。 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
12 |
| SimdCapabilities | 当前处理器/运行时的 SIMD 能力探测结果。所有的探测值都在类型初始化阶段 计算一次并被缓存下来,之后的查询都是常量时间的字段读取。 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
32 |
| SimdCapabilities | 当前处理器/运行时的 SIMD 能力探测结果。所有的探测值都在类型初始化阶段 计算一次并被缓存下来,之后的查询都是常量时间的字段读取。 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
32 |
| SimdCompare | 逐元素比较、掩码与条件选择。 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
19 |
| SimdCompare | 逐元素比较、掩码与条件选择。 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
20 |
| SIMDConfiguration | SIMD 计算模式的配置枚举。 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
8 |
| SIMDConfiguration | SIMD 计算模式的配置枚举。 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
8 |
| SimdEngine | 通用的逐元素向量化内核。 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
41 |
| SimdEngine | 通用的逐元素向量化内核。 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
50 |
| SIMDEnvironment | SIMD(Single Instruction Multiple Data)即单指令流多数据流, 是一种采用一个控制器来控制多个处理器,同时对一组数据(又称“数据 向量”)中的每一个分别执行相同的操作从而实现空间上的并行性的技术。 简单来说就是一个指令能够同时处理多个数据。 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
17 |
| SIMDEnvironment | SIMD(Single Instruction Multiple Data)即单指令流多数据流, 是一种采用一个控制器来控制多个处理器,同时对一组数据(又称“数据 向量”)中的每一个分别执行相同的操作从而实现空间上的并行性的技术。 简单来说就是一个指令能够同时处理多个数据。 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
17 |
| SimdExtensions | 面向数组的 SIMD 加速扩展方法门面。 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
40 |
| SimdExtensions | 面向数组的 SIMD 加速扩展方法门面。 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
47 |
| SIMDIntrinsics | 基于 System.Runtime.Intrinsics.X86 的指令级融合内核。 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
13 |
| SIMDIntrinsics | 基于 System.Runtime.Intrinsics.X86 的指令级融合内核。 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
14 |
| SimdMath | 单目(逐元素一元)向量化的数学函数。 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
18 |
| SimdMath | 单目(逐元素一元)向量化的数学函数。 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
27 |
| SimdMatrix | 矩阵级(row-major Double()())批量 SIMD 内核门面。 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
42 |
| SimdParallel | “分块并行 + 块内向量化”的混合计算驱动。 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
19 |
| SimdParallel | “分块并行 + 块内向量化”的混合计算驱动。 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
19 |
| SimdReduce | 归约运算(把整个向量折叠成一个标量)。 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
18 |
| SimdReduce | 归约运算(把整个向量折叠成一个标量)。 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
20 |
| Subtract | 逐元素减法。注意标量与向量的顺序决定了结果的方向。 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
12 |
| Subtract | 逐元素减法。注意标量与向量的顺序决定了结果的方向。 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
12 |
Microsoft.VisualBasic.Math.SIMD.SimdEngine
| Type | Summary | Package | Members |
|---|---|---|---|
| VectorBinaryOp | 两个向量之间的逐元素二元运算。 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| VectorBinaryOp | 两个向量之间的逐元素二元运算。 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
| VectorUnaryOp | 单向量逐元素一元运算。 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| VectorUnaryOp | 单向量逐元素一元运算。 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
Microsoft.VisualBasic.Math.SIMD.Vectorization
| Type | Summary | Package | Members |
|---|---|---|---|
| Vectorized | 向量化运算的统一词汇表: 脚本向量化改写器所发射的全部调用都指向本模块。 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
97 |
Microsoft.VisualBasic.Math.Statistics
| Type | Summary | Package | Members |
|---|---|---|---|
| ChiSquareTest | Microsoft.VisualBasic.Math.Statistics 1.0.9753.4776 |
20 | |
| ChiSquareTest | Microsoft.VisualBasic.Math.Statistics 1.0.9762.11310 |
20 | |
| DataSample | Numeric value statics property. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
7 |
| DataSample | Numeric value statics property. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
7 |
| Extensions | Microsoft.VisualBasic.Math.Statistics 1.0.9753.4776 |
5 | |
| Extensions | Microsoft.VisualBasic.Math.Statistics 1.0.9762.11310 |
1 | |
| FastICA | FastICA (Fast Independent Component Analysis) implementation. | Microsoft.VisualBasic.Math.Statistics 1.0.9753.4776 |
76 |
| FastICA | FastICA (Fast Independent Component Analysis) implementation. | Microsoft.VisualBasic.Math.Statistics 1.0.9762.11310 |
76 |
| FisherTest | Fisher's exact test > https://en.wikipedia.org/wiki/Fisher's_exact_test Fisher 's exact test is a statistical significance test used in the analysis of contingency tables.[… | Microsoft.VisualBasic.Math.Statistics 1.0.9753.4776 |
5 |
| FisherTest | Fisher's exact test > https://en.wikipedia.org/wiki/Fisher's_exact_test Fisher 's exact test is a statistical significance test used in the analysis of contingency tables.[… | Microsoft.VisualBasic.Math.Statistics 1.0.9762.11310 |
5 |
| FTest | Microsoft.VisualBasic.Math.Statistics 1.0.9753.4776 |
9 | |
| FTest | Microsoft.VisualBasic.Math.Statistics 1.0.9762.11310 |
8 | |
| GroupBins | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 | |
| GroupBins | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 | |
| IStatPvalue | a general abstract object model for statistics result which contains p value information | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 |
| IStatPvalue | a general abstract object model for statistics result which contains p value information | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 |
| LogLikelihood | calculates log likelihood between a source and a reference corpus. | Microsoft.VisualBasic.Math.Statistics 1.0.9753.4776 |
1 |
| LogLikelihood | calculates log likelihood between a source and a reference corpus. | Microsoft.VisualBasic.Math.Statistics 1.0.9762.11310 |
1 |
| SpecialFunctions | @author Will_and_Sara | Microsoft.VisualBasic.Math.Statistics 1.0.9753.4776 |
24 |
| SpecialFunctions | @author Will_and_Sara | Microsoft.VisualBasic.Math.Statistics 1.0.9762.11310 |
24 |
Microsoft.VisualBasic.Math.Statistics.Distributions
| Type | Summary | Package | Members |
|---|---|---|---|
| ContinuousDistribution | @author Will_and_Sara | Microsoft.VisualBasic.Math.Statistics 1.0.9753.4776 |
10 |
| ContinuousDistribution | @author Will_and_Sara | Microsoft.VisualBasic.Math.Statistics 1.0.9762.11310 |
10 |
| Distribution | Microsoft.VisualBasic.Math.Statistics 1.0.9753.4776 |
21 | |
| Distribution | Microsoft.VisualBasic.Math.Statistics 1.0.9762.11310 |
21 | |
| Skellam | Skellam 分布:两个独立 Poisson 变量之差 X = Y1 - Y2 的分布 (Y1 ~ Poisson(lambda1),Y2 ~ Poisson(lambda2))。 本模块移植自 R 语言的 skellam 包 (参见项目 Resources\pskellam.txt、Resources\dskellam.txt、 Resour… | Microsoft.VisualBasic.Math.Statistics 1.0.9753.4776 |
11 |
| Skellam | Skellam 分布:两个独立 Poisson 变量之差 X = Y1 - Y2 的分布 (Y1 ~ Poisson(lambda1),Y2 ~ Poisson(lambda2))。 本模块移植自 R 语言的 skellam 包 (参见项目 Resources\pskellam.txt、Resources\dskellam.txt、 Resour… | Microsoft.VisualBasic.Math.Statistics 1.0.9762.11310 |
11 |
Microsoft.VisualBasic.Math.Statistics.Distributions.LinearMoments
| Type | Summary | Package | Members |
|---|---|---|---|
| Exponential | @author Will_and_Sara | Microsoft.VisualBasic.Math.Statistics 1.0.9753.4776 |
4 |
| Exponential | @author Will_and_Sara | Microsoft.VisualBasic.Math.Statistics 1.0.9762.11310 |
4 |
| GEV | @author Will_and_Sara and Micheal Wright | Microsoft.VisualBasic.Math.Statistics 1.0.9753.4776 |
4 |
| GEV | @author Will_and_Sara and Micheal Wright | Microsoft.VisualBasic.Math.Statistics 1.0.9762.11310 |
4 |
| Gumbel | @author Will_and_Sara | Microsoft.VisualBasic.Math.Statistics 1.0.9753.4776 |
4 |
| Gumbel | @author Will_and_Sara | Microsoft.VisualBasic.Math.Statistics 1.0.9762.11310 |
4 |
| Logistic | @author Will_and_Sara | Microsoft.VisualBasic.Math.Statistics 1.0.9753.4776 |
4 |
| Logistic | @author Will_and_Sara | Microsoft.VisualBasic.Math.Statistics 1.0.9762.11310 |
4 |
| LogPearsonIII | @author Will_and_Sara | Microsoft.VisualBasic.Math.Statistics 1.0.9753.4776 |
4 |
| LogPearsonIII | @author Will_and_Sara | Microsoft.VisualBasic.Math.Statistics 1.0.9762.11310 |
4 |
| Pareto | @author Will_and_Sara | Microsoft.VisualBasic.Math.Statistics 1.0.9753.4776 |
5 |
| Pareto | @author Will_and_Sara | Microsoft.VisualBasic.Math.Statistics 1.0.9762.11310 |
5 |
Microsoft.VisualBasic.Math.Statistics.Distributions.MethodOfMoments
| Type | Summary | Package | Members |
|---|---|---|---|
| Beta | @author Will_and_Sara | Microsoft.VisualBasic.Math.Statistics 1.0.9753.4776 |
4 |
| Beta | @author Will_and_Sara | Microsoft.VisualBasic.Math.Statistics 1.0.9762.11310 |
4 |
| Emperical | @author Will_and_Sara | Microsoft.VisualBasic.Math.Statistics 1.0.9753.4776 |
4 |
| Emperical | @author Will_and_Sara | Microsoft.VisualBasic.Math.Statistics 1.0.9762.11310 |
4 |
| Exponential | @author Will_and_Sara | Microsoft.VisualBasic.Math.Statistics 1.0.9753.4776 |
4 |
| Exponential | @author Will_and_Sara | Microsoft.VisualBasic.Math.Statistics 1.0.9762.11310 |
4 |
| Gamma | @author Will_and_Sara | Microsoft.VisualBasic.Math.Statistics 1.0.9753.4776 |
4 |
| Gamma | @author Will_and_Sara | Microsoft.VisualBasic.Math.Statistics 1.0.9762.11310 |
4 |
| GEV | @author Will_and_Sara | Microsoft.VisualBasic.Math.Statistics 1.0.9753.4776 |
4 |
| GEV | @author Will_and_Sara | Microsoft.VisualBasic.Math.Statistics 1.0.9762.11310 |
4 |
| Gumbel | @author Will_and_Sara | Microsoft.VisualBasic.Math.Statistics 1.0.9753.4776 |
4 |
| Gumbel | @author Will_and_Sara | Microsoft.VisualBasic.Math.Statistics 1.0.9762.11310 |
4 |
| LogNormal | @author Will_and_Sara | Microsoft.VisualBasic.Math.Statistics 1.0.9753.4776 |
6 |
| LogNormal | @author Will_and_Sara | Microsoft.VisualBasic.Math.Statistics 1.0.9762.11310 |
6 |
| LogPearsonIII | @author Will_and_Sara | Microsoft.VisualBasic.Math.Statistics 1.0.9753.4776 |
5 |
| LogPearsonIII | @author Will_and_Sara | Microsoft.VisualBasic.Math.Statistics 1.0.9762.11310 |
5 |
| Normal | normal distribution @author Will_and_Sara | Microsoft.VisualBasic.Math.Statistics 1.0.9753.4776 |
9 |
| Normal | normal distribution @author Will_and_Sara | Microsoft.VisualBasic.Math.Statistics 1.0.9762.11310 |
9 |
| Rayleigh | @author Will_and_Sara | Microsoft.VisualBasic.Math.Statistics 1.0.9753.4776 |
5 |
| Rayleigh | @author Will_and_Sara | Microsoft.VisualBasic.Math.Statistics 1.0.9762.11310 |
5 |
| Triangular | @author Will_and_Sara | Microsoft.VisualBasic.Math.Statistics 1.0.9753.4776 |
7 |
| Triangular | @author Will_and_Sara | Microsoft.VisualBasic.Math.Statistics 1.0.9762.11310 |
7 |
| Uniform | @author Will_and_Sara | Microsoft.VisualBasic.Math.Statistics 1.0.9753.4776 |
6 |
| Uniform | @author Will_and_Sara | Microsoft.VisualBasic.Math.Statistics 1.0.9762.11310 |
6 |
Microsoft.VisualBasic.Math.Statistics.Hypothesis
| Type | Summary | Package | Members |
|---|---|---|---|
| Hypothesis | Microsoft.VisualBasic.Math.Statistics 1.0.9753.4776 |
6 | |
| Hypothesis | Microsoft.VisualBasic.Math.Statistics 1.0.9762.11310 |
6 | |
| MoranTest | Microsoft.VisualBasic.Math.Statistics 1.0.9753.4776 |
10 | |
| MoranTest | Microsoft.VisualBasic.Math.Statistics 1.0.9762.11310 |
9 | |
| NullHypothesis | Microsoft.VisualBasic.Math.Statistics 1.0.9753.4776 |
4 | |
| NullHypothesis | Microsoft.VisualBasic.Math.Statistics 1.0.9762.11310 |
4 | |
| t | Performs one and two sample t-tests on vectors of data. | Microsoft.VisualBasic.Math.Statistics 1.0.9753.4776 |
5 |
| t | Performs one and two sample t-tests on vectors of data. | Microsoft.VisualBasic.Math.Statistics 1.0.9762.11310 |
5 |
| Topt | Microsoft.VisualBasic.Math.Statistics 1.0.9753.4776 |
4 | |
| Topt | Microsoft.VisualBasic.Math.Statistics 1.0.9762.11310 |
4 | |
| TtestResult | Microsoft.VisualBasic.Math.Statistics 1.0.9753.4776 |
11 | |
| TtestResult | Microsoft.VisualBasic.Math.Statistics 1.0.9762.11310 |
11 |
Microsoft.VisualBasic.Math.Statistics.Hypothesis.ANOVA
| Type | Summary | Package | Members |
|---|---|---|---|
| AnovaFTest | Microsoft.VisualBasic.Math.Statistics.ANOVA 1.0.9753.4776 |
5 | |
| AnovaFTest | Microsoft.VisualBasic.Math.Statistics.ANOVA 1.0.9762.11310 |
5 | |
| AnovaTest | Microsoft.VisualBasic.Math.Statistics.ANOVA 1.0.9753.4776 |
23 | |
| AnovaTest | Microsoft.VisualBasic.Math.Statistics.ANOVA 1.0.9762.11310 |
23 | |
| DataSetHelper | helper module for create the input dataset for run analysis | Microsoft.VisualBasic.Math.Statistics.ANOVA 1.0.9753.4776 |
3 |
| DataSetHelper | helper module for create the input dataset for run analysis | Microsoft.VisualBasic.Math.Statistics.ANOVA 1.0.9762.11310 |
2 |
| DistributionTable | Microsoft.VisualBasic.Math.Statistics.ANOVA 1.0.9753.4776 |
2 | |
| DistributionTable | Microsoft.VisualBasic.Math.Statistics.ANOVA 1.0.9762.11310 |
2 | |
| KruskalWallisModule | Kruskal-Wallis 检验模块:提供完整的非参数多组比较检验功能 | Microsoft.VisualBasic.Math.Statistics.ANOVA 1.0.9753.4776 |
16 |
| KruskalWallisModule | Kruskal-Wallis 检验模块:提供完整的非参数多组比较检验功能 | Microsoft.VisualBasic.Math.Statistics.ANOVA 1.0.9762.11310 |
16 |
| KWResult | Kruskal-Wallis 检验结果结构体,存储单个分类单元(物种/OTU)的检验统计量 | Microsoft.VisualBasic.Math.Statistics.ANOVA 1.0.9753.4776 |
26 |
| KWResult | Kruskal-Wallis 检验结果结构体,存储单个分类单元(物种/OTU)的检验统计量 | Microsoft.VisualBasic.Math.Statistics.ANOVA 1.0.9762.11310 |
26 |
| MultivariateAnalysisResult | Microsoft.VisualBasic.Math.Statistics.ANOVA 1.0.9753.4776 |
29 | |
| MultivariateAnalysisResult | Microsoft.VisualBasic.Math.Statistics.ANOVA 1.0.9762.11310 |
29 | |
| NumericTableAnalysis | 多变量分析(PCA / PLS-DA / OPLS-DA)的统一二维表入口。 所有的入口方法都直接接收 NumericTable,内部会构造 一个全新的 StatisticsObject 之后再调用现有的分析算法, 因此可以安全地进行链式调用。 | Microsoft.VisualBasic.Math.Statistics.ANOVA 1.0.9753.4776 |
4 |
| NumericTableAnalysis | 多变量分析(PCA / PLS-DA / OPLS-DA)的统一二维表入口。 所有的入口方法都直接接收 NumericTable,内部会构造 一个全新的 StatisticsObject 之后再调用现有的分析算法, 因此可以安全地进行链式调用。 | Microsoft.VisualBasic.Math.Statistics.ANOVA 1.0.9762.11310 |
4 |
| NumericTableDataSet | 将 Core 之中的统一二维表 NumericTable 适配为多变量分析所需要的 StatisticsObject 输入对象的帮助模块。 表之中的特征矩阵会作为自变量 X,而指定的标签列则作为响应/分组变量 y。 | Microsoft.VisualBasic.Math.Statistics.ANOVA 1.0.9753.4776 |
4 |
| NumericTableDataSet | 将 Core 之中的统一二维表 NumericTable 适配为多变量分析所需要的 StatisticsObject 输入对象的帮助模块。 表之中的特征矩阵会作为自变量 X,而指定的标签列则作为响应/分组变量 y。 | Microsoft.VisualBasic.Math.Statistics.ANOVA 1.0.9762.11310 |
4 |
| NumericTableResult | 将多变量分析的结果对象 MultivariateAnalysisResult 之中的 降维投影结果(score)与载荷结果(loading)抽取为统一的二维表对象 NumericTable,从而可以方便的直接送入聚类、可视化等后续流程。 | Microsoft.VisualBasic.Math.Statistics.ANOVA 1.0.9753.4776 |
8 |
| NumericTableResult | 将多变量分析的结果对象 MultivariateAnalysisResult 之中的 降维投影结果(score)与载荷结果(loading)抽取为统一的二维表对象 NumericTable,从而可以方便的直接送入聚类、可视化等后续流程。 | Microsoft.VisualBasic.Math.Statistics.ANOVA 1.0.9762.11310 |
8 |
| OPLS | Microsoft.VisualBasic.Math.Statistics.ANOVA 1.0.9753.4776 |
2 | |
| OPLS | Microsoft.VisualBasic.Math.Statistics.ANOVA 1.0.9762.11310 |
2 | |
| PCA | Microsoft.VisualBasic.Math.Statistics.ANOVA 1.0.9753.4776 |
1 | |
| PCA | Microsoft.VisualBasic.Math.Statistics.ANOVA 1.0.9762.11310 |
1 | |
| PCAData | get pca result: contribution, score, loading | Microsoft.VisualBasic.Math.Statistics.ANOVA 1.0.9753.4776 |
2 |
| PCAData | get pca result: contribution, score, loading | Microsoft.VisualBasic.Math.Statistics.ANOVA 1.0.9762.11310 |
1 |
| PLS | Microsoft.VisualBasic.Math.Statistics.ANOVA 1.0.9753.4776 |
8 | |
| PLS | Microsoft.VisualBasic.Math.Statistics.ANOVA 1.0.9762.11310 |
8 | |
| PLSData | get pls-da result | Microsoft.VisualBasic.Math.Statistics.ANOVA 1.0.9753.4776 |
3 |
| PLSData | get pls-da result | Microsoft.VisualBasic.Math.Statistics.ANOVA 1.0.9762.11310 |
1 |
Microsoft.VisualBasic.Math.Statistics.Hypothesis.FishersExact
| Type | Summary | Package | Members |
|---|---|---|---|
| FishersExactPvalues | FishersExactPvalues holds the pvalues calculated by the fishers_exact function. | Microsoft.VisualBasic.Math.Statistics 1.0.9753.4776 |
6 |
| FishersExactPvalues | FishersExactPvalues holds the pvalues calculated by the fishers_exact function. | Microsoft.VisualBasic.Math.Statistics 1.0.9762.11310 |
6 |
| FishersExactTest | Fisher's exact test. Implements a 2×2 Fishers exact test. Use this to test the independence of two categorical variables when the sample sizes are small. For an approachable e… | Microsoft.VisualBasic.Math.Statistics 1.0.9753.4776 |
7 |
| FishersExactTest | Fisher's exact test. Implements a 2×2 Fishers exact test. Use this to test the independence of two categorical variables when the sample sizes are small. For an approachable e… | Microsoft.VisualBasic.Math.Statistics 1.0.9762.11310 |
7 |
Microsoft.VisualBasic.Math.Statistics.Hypothesis.Mantel
| Type | Summary | Package | Members |
|---|---|---|---|
| corr | Microsoft.VisualBasic.Math.Statistics 1.0.9753.4776 |
2 | |
| corr | Microsoft.VisualBasic.Math.Statistics 1.0.9762.11310 |
2 | |
| Model | the test model | Microsoft.VisualBasic.Math.Statistics 1.0.9753.4776 |
6 |
| Model | the test model | Microsoft.VisualBasic.Math.Statistics 1.0.9762.11310 |
6 |
| Result | Microsoft.VisualBasic.Math.Statistics 1.0.9753.4776 |
4 | |
| Result | Microsoft.VisualBasic.Math.Statistics 1.0.9762.11310 |
4 | |
| statistical_test | Microsoft.VisualBasic.Math.Statistics 1.0.9753.4776 |
6 | |
| statistical_test | Microsoft.VisualBasic.Math.Statistics 1.0.9762.11310 |
6 | |
| stats | Microsoft.VisualBasic.Math.Statistics 1.0.9753.4776 |
13 | |
| stats | Microsoft.VisualBasic.Math.Statistics 1.0.9762.11310 |
13 |
Microsoft.VisualBasic.Math.Statistics.Hypothesis.Mantel.corr
| Type | Summary | Package | Members |
|---|---|---|---|
| corr | An abstract delegate function for measure the correlation between two given numeric vector | Microsoft.VisualBasic.Math.Statistics 1.0.9753.4776 |
3 |
| corr | An abstract delegate function for measure the correlation between two given numeric vector | Microsoft.VisualBasic.Math.Statistics 1.0.9762.11310 |
3 |
Microsoft.VisualBasic.Math.Statistics.Hypothesis.mHG
| Type | Summary | Package | Members |
|---|---|---|---|
| HG_row_ncalc | The helper class for the hypergeometric row calculation. | Microsoft.VisualBasic.Math.Statistics.Hypothesis.mHG 1.0.9762.11310 |
3 |
| mHGstatisticInfo | mHG definition: mHG(lambdas) = min over 1 <= n <= N Of HGT (b_n(lambdas); N, B, n) Where HGT Is the hypergeometric tail: HGT(b; N, B, n) = Probability(X >= b)… | Microsoft.VisualBasic.Math.Statistics.Hypothesis.mHG 1.0.9762.11310 |
3 |
| mHGtest | Microsoft.VisualBasic.Math.Statistics.Hypothesis.mHG 1.0.9762.11310 |
12 |
Microsoft.VisualBasic.Math.Statistics.Linq
| Type | Summary | Package | Members |
|---|---|---|---|
| CPOLLicense | http://www.codeproject.com/Articles/42492/Using-LINQ-to-Calculate-Basic-Statistics | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
0 |
| CPOLLicense | http://www.codeproject.com/Articles/42492/Using-LINQ-to-Calculate-Basic-Statistics | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
0 |
| EnumerableStatsCovariance | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 | |
| EnumerableStatsCovariance | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 | |
| EnumerableStatsMedian | 中位数计算拓展 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 |
| EnumerableStatsMedian | 中位数计算拓展 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 |
| EnumerableStatsMode | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 | |
| EnumerableStatsMode | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 | |
| EnumerableStatsPearson | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 | |
| EnumerableStatsPearson | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 | |
| EnumerableStatsStandardDeviation | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 | |
| EnumerableStatsStandardDeviation | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 | |
| EnumerableStatsVariance | make sqrt of the variance result will be the standard deviation | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 |
| EnumerableStatsVariance | make sqrt of the variance result will be the standard deviation | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 |
Microsoft.VisualBasic.Math.Statistics.MomentFunctions
| Type | Summary | Package | Members |
|---|---|---|---|
| BasicProductMoments | 可以利用这个模块来进行一组数据的正态分布的参数的估计 @author Will_and_Sara | Microsoft.VisualBasic.Math.Statistics 1.0.9753.4776 |
12 |
| BasicProductMoments | 可以利用这个模块来进行一组数据的正态分布的参数的估计 @author Will_and_Sara | Microsoft.VisualBasic.Math.Statistics 1.0.9762.11310 |
9 |
| BasicProductMomentsHistogram | @author Will_and_Sara | Microsoft.VisualBasic.Math.Statistics 1.0.9753.4776 |
2 |
| BasicProductMomentsHistogram | @author Will_and_Sara | Microsoft.VisualBasic.Math.Statistics 1.0.9762.11310 |
0 |
| LinearMoments | @author Will_and_Sara | Microsoft.VisualBasic.Math.Statistics 1.0.9753.4776 |
10 |
| LinearMoments | @author Will_and_Sara | Microsoft.VisualBasic.Math.Statistics 1.0.9762.11310 |
10 |
| ProductMoments | In statistics, moments are a set of numerical characteristics that describe the shape and features of a probability distribution. | Microsoft.VisualBasic.Math.Statistics 1.0.9753.4776 |
18 |
| ProductMoments | In statistics, moments are a set of numerical characteristics that describe the shape and features of a probability distribution. | Microsoft.VisualBasic.Math.Statistics 1.0.9762.11310 |
18 |
Microsoft.VisualBasic.Math.Statistics.RANSAC
| Type | Summary | Package | Members |
|---|---|---|---|
| Algorithm | RANSAC (RANdom SAmple Consensus) is an algorithm for measuring system parameters for some input data. | Microsoft.VisualBasic.Math.Statistics 1.0.9753.4776 |
1 |
| Algorithm | RANSAC (RANdom SAmple Consensus) is an algorithm for measuring system parameters for some input data. | Microsoft.VisualBasic.Math.Statistics 1.0.9762.11310 |
1 |
Microsoft.VisualBasic.Math.Statistics.ShapleyValue
| Type | Summary | Package | Members |
|---|---|---|---|
| CharacteristicFunction | represent the following function often written by v 2^N to R for each subset of the set {1.. | Microsoft.VisualBasic.Math.Statistics 1.0.9753.4776 |
4 |
| CharacteristicFunction | represent the following function often written by v 2^N to R for each subset of the set {1.. | Microsoft.VisualBasic.Math.Statistics 1.0.9762.11310 |
4 |
| CoalitionStrategy | @author Franck Benault @version 0.0.2 @since 0.0.2 | Microsoft.VisualBasic.Math.Statistics 1.0.9753.4776 |
8 |
| CoalitionStrategy | @author Franck Benault @version 0.0.2 @since 0.0.2 | Microsoft.VisualBasic.Math.Statistics 1.0.9762.11310 |
8 |
| IShapExplainer | The unified contract of a SHAP explainer. | Microsoft.VisualBasic.Math.Statistics 1.0.9762.11310 |
4 |
| LinearShapExplainer | 线性(以及广义线性)模型的解析 SHAP 解释器。 对于线性模型 f(x) = b0 + sum(bi * xi),在背景分布之上关于特征 i 的 精确 Shapley 值为:phi_i = bi * (xi - E[xi]), 而基线值为 b0 + sum(bi * E[xi])。 因此 sum(phi) + baseline = f(x)… | Microsoft.VisualBasic.Math.Statistics 1.0.9762.11310 |
11 |
| ShapExplanation | 单个样本的 SHAP 解释结果。 | Microsoft.VisualBasic.Math.Statistics 1.0.9762.11310 |
10 |
| ShapleyApplication | facade of Shapley application @author Franck Benault @version 0.0.2 @since 0.0.2 | Microsoft.VisualBasic.Math.Statistics 1.0.9753.4776 |
4 |
| ShapleyApplication | facade of Shapley application @author Franck Benault @version 0.0.2 @since 0.0.2 | Microsoft.VisualBasic.Math.Statistics 1.0.9762.11310 |
4 |
| TreeShapExplainer | 基于 TreeSHAP 算法(论文 arXiv:1802.03888)的树集成 SHAP 解释器。 该解释器把多棵 PkTree 的逐特征贡献相加, 并且把所有树的期望值(cover 加权叶值均值)与一个常数偏置项 (TreeShapExplainer.Intercept,例如梯度提升模型的 base score)相加作为最终的基线值。 因此… | Microsoft.VisualBasic.Math.Statistics 1.0.9762.11310 |
9 |
Microsoft.VisualBasic.Math.Statistics.ShapleyValue.TreeShap
| Type | Summary | Package | Members |
|---|---|---|---|
| PathElement | Path element for use in ShapAlgo2 | Microsoft.VisualBasic.Math.Statistics 1.0.9762.11310 |
9 |
| PkNode | Microsoft.VisualBasic.Math.Statistics 1.0.9762.11310 |
16 | |
| PkTree | Microsoft.VisualBasic.Math.Statistics 1.0.9762.11310 |
3 | |
| ShapAlgo1 | See https://arxiv.org/pdf/1802.03888.pdf - Chapter 3.1, Algorithm 1. | Microsoft.VisualBasic.Math.Statistics 1.0.9762.11310 |
8 |
| ShapAlgo2 | Rewrite of the Algorithm 2 from [1]. | Microsoft.VisualBasic.Math.Statistics 1.0.9762.11310 |
3 |
| ShapOptimized | Microsoft.VisualBasic.Math.Statistics 1.0.9762.11310 |
8 |
Microsoft.VisualBasic.Math.Statistics.ShapleyValue.TreeShape
| Type | Summary | Package | Members |
|---|---|---|---|
| PathElement | Path element for use in ShapAlgo2 | Microsoft.VisualBasic.Math.Statistics 1.0.9753.4776 |
9 |
| PkNode | Microsoft.VisualBasic.Math.Statistics 1.0.9753.4776 |
16 | |
| PkTree | Microsoft.VisualBasic.Math.Statistics 1.0.9753.4776 |
3 | |
| ShapAlgo1 | See https://arxiv.org/pdf/1802.03888.pdf - Chapter 3.1, Algorithm 1. | Microsoft.VisualBasic.Math.Statistics 1.0.9753.4776 |
8 |
| ShapAlgo2 | Rewrite of the Algorithm 2 from [1]. | Microsoft.VisualBasic.Math.Statistics 1.0.9753.4776 |
2 |
| ShapOptimized | Microsoft.VisualBasic.Math.Statistics 1.0.9753.4776 |
6 |
Microsoft.VisualBasic.Math.Sundials.CVODE
| Type | Summary | Package | Members |
|---|---|---|---|
| BandLinearSolver | 带状线性求解器 针对带状矩阵优化的LU分解 | Microsoft.VisualBasic.Math.Sundials.CVODE 1.0.9753.4776 |
6 |
| BandLinearSolver | 带状线性求解器 针对带状矩阵优化的LU分解 | Microsoft.VisualBasic.Math.Sundials.CVODE 1.0.9762.11310 |
6 |
| CVODEBuilder | CVODE求解器构建器 提供流式API创建求解器 | Microsoft.VisualBasic.Math.Sundials.CVODE 1.0.9753.4776 |
10 |
| CVODEBuilder | CVODE求解器构建器 提供流式API创建求解器 | Microsoft.VisualBasic.Math.Sundials.CVODE 1.0.9762.11310 |
10 |
| CVODEMethod | 求解方法枚举 | Microsoft.VisualBasic.Math.Sundials.CVODE 1.0.9753.4776 |
4 |
| CVODEMethod | 求解方法枚举 | Microsoft.VisualBasic.Math.Sundials.CVODE 1.0.9762.11310 |
4 |
| CVODEOptions | CVODE求解器配置选项 | Microsoft.VisualBasic.Math.Sundials.CVODE 1.0.9753.4776 |
14 |
| CVODEOptions | CVODE求解器配置选项 | Microsoft.VisualBasic.Math.Sundials.CVODE 1.0.9762.11310 |
14 |
| CVODESolver | CVODE常微分方程求解器(变阶变步长多步法) | Microsoft.VisualBasic.Math.Sundials.CVODE 1.0.9753.4776 |
35 |
| CVODESolver | CVODE常微分方程求解器(变阶变步长多步法) | Microsoft.VisualBasic.Math.Sundials.CVODE 1.0.9762.11310 |
35 |
| CVODESolverEx | CVODE求解器扩展类 提供根查找等高级功能 | Microsoft.VisualBasic.Math.Sundials.CVODE 1.0.9753.4776 |
5 |
| CVODESolverEx | CVODE求解器扩展类 提供根查找等高级功能 | Microsoft.VisualBasic.Math.Sundials.CVODE 1.0.9762.11310 |
5 |
| CVODEStatus | 求解器返回状态 | Microsoft.VisualBasic.Math.Sundials.CVODE 1.0.9753.4776 |
30 |
| CVODEStatus | 求解器返回状态 | Microsoft.VisualBasic.Math.Sundials.CVODE 1.0.9762.11310 |
30 |
| CVODEUtils | CVODE工具类 | Microsoft.VisualBasic.Math.Sundials.CVODE 1.0.9753.4776 |
4 |
| CVODEUtils | CVODE工具类 | Microsoft.VisualBasic.Math.Sundials.CVODE 1.0.9762.11310 |
4 |
| DenseLinearSolver | 稠密线性求解器 使用带部分主元选择的LU分解 | Microsoft.VisualBasic.Math.Sundials.CVODE 1.0.9753.4776 |
10 |
| DenseLinearSolver | 稠密线性求解器 使用带部分主元选择的LU分解 | Microsoft.VisualBasic.Math.Sundials.CVODE 1.0.9762.11310 |
10 |
| DenseMatrix | 稠密矩阵类,提供矩阵存储和基本操作 采用列优先存储方式,便于与BLAS/LAPACK风格的操作兼容 | Microsoft.VisualBasic.Math.Sundials.CVODE 1.0.9753.4776 |
32 |
| DenseMatrix | 稠密矩阵类,提供矩阵存储和基本操作 采用列优先存储方式,便于与BLAS/LAPACK风格的操作兼容 | Microsoft.VisualBasic.Math.Sundials.CVODE 1.0.9762.11310 |
32 |
| JacobianFunction | Jacobian矩阵计算委托类型 计算Jacobian矩阵 J = ∂f/∂y | Microsoft.VisualBasic.Math.Sundials.CVODE 1.0.9753.4776 |
3 |
| JacobianFunction | Jacobian矩阵计算委托类型 计算Jacobian矩阵 J = ∂f/∂y | Microsoft.VisualBasic.Math.Sundials.CVODE 1.0.9762.11310 |
3 |
| LinearSolverResult | 线性求解器返回状态 | Microsoft.VisualBasic.Math.Sundials.CVODE 1.0.9753.4776 |
8 |
| LinearSolverResult | 线性求解器返回状态 | Microsoft.VisualBasic.Math.Sundials.CVODE 1.0.9762.11310 |
8 |
| LinearSolverType | 线性求解器类型枚举 | Microsoft.VisualBasic.Math.Sundials.CVODE 1.0.9753.4776 |
6 |
| LinearSolverType | 线性求解器类型枚举 | Microsoft.VisualBasic.Math.Sundials.CVODE 1.0.9762.11310 |
6 |
| NVector | NVector类实现了SUNDIALS中的N_Vector抽象数据类型 提供向量的基本操作:创建、复制、算术运算、范数计算等 | Microsoft.VisualBasic.Math.Sundials.CVODE 1.0.9753.4776 |
40 |
| NVector | NVector类实现了SUNDIALS中的N_Vector抽象数据类型 提供向量的基本操作:创建、复制、算术运算、范数计算等 | Microsoft.VisualBasic.Math.Sundials.CVODE 1.0.9762.11310 |
40 |
| ODESolution | 常微分方程求解结果 | Microsoft.VisualBasic.Math.Sundials.CVODE 1.0.9753.4776 |
6 |
| ODESolution | 常微分方程求解结果 | Microsoft.VisualBasic.Math.Sundials.CVODE 1.0.9762.11310 |
6 |
| RHSFunction | 右端函数委托类型 定义常微分方程组 dy/dt = f(t, y) | Microsoft.VisualBasic.Math.Sundials.CVODE 1.0.9753.4776 |
3 |
| RHSFunction | 右端函数委托类型 定义常微分方程组 dy/dt = f(t, y) | Microsoft.VisualBasic.Math.Sundials.CVODE 1.0.9762.11310 |
3 |
| RootFindingResult | 根查找结果 | Microsoft.VisualBasic.Math.Sundials.CVODE 1.0.9753.4776 |
4 |
| RootFindingResult | 根查找结果 | Microsoft.VisualBasic.Math.Sundials.CVODE 1.0.9762.11310 |
4 |
| RootFunction | 根函数委托类型 | Microsoft.VisualBasic.Math.Sundials.CVODE 1.0.9753.4776 |
3 |
| RootFunction | 根函数委托类型 | Microsoft.VisualBasic.Math.Sundials.CVODE 1.0.9762.11310 |
3 |
Microsoft.VisualBasic.Math.Symbolic.GeneticProgramming.evolution
| Type | Summary | Package | Members |
|---|---|---|---|
| Configuration | Basic configuration for the evolution. | Microsoft.VisualBasic.Math.Symbolic.GeneticProgramming 1.0.9753.4776 |
16 |
| Configuration | Basic configuration for the evolution. | Microsoft.VisualBasic.Math.Symbolic.GeneticProgramming 1.0.9762.11310 |
16 |
| GAConfiguration | Configuration for the Genetic Algorithm evolution. | Microsoft.VisualBasic.Math.Symbolic.GeneticProgramming 1.0.9753.4776 |
12 |
| GAConfiguration | Configuration for the Genetic Algorithm evolution. | Microsoft.VisualBasic.Math.Symbolic.GeneticProgramming 1.0.9762.11310 |
12 |
| GPConfiguration | Configuration for the Genetic Programming evolution. | Microsoft.VisualBasic.Math.Symbolic.GeneticProgramming 1.0.9753.4776 |
8 |
| GPConfiguration | Configuration for the Genetic Programming evolution. | Microsoft.VisualBasic.Math.Symbolic.GeneticProgramming 1.0.9762.11310 |
8 |
Microsoft.VisualBasic.Math.Symbolic.GeneticProgramming.model
| Type | Summary | Package | Members |
|---|---|---|---|
| Expression | Represents an expression that can be evaluated for a variable x. | Microsoft.VisualBasic.Math.Symbolic.GeneticProgramming 1.0.9753.4776 |
5 |
| Expression | Represents an expression that can be evaluated for a variable x. | Microsoft.VisualBasic.Math.Symbolic.GeneticProgramming 1.0.9762.11310 |
5 |
Microsoft.VisualBasic.MIME.application.json
| Type | Summary | Package | Members |
|---|---|---|---|
| Deserializer | create .NET clr object from json | Microsoft.VisualBasic.MIME.application.json 1.0.9753.4776 |
4 |
| Deserializer | create .NET clr object from json | Microsoft.VisualBasic.MIME.application.json 1.0.9762.11310 |
4 |
| ExtendedDictionary | Microsoft.VisualBasic.MIME.application.json 1.0.9753.4776 |
4 | |
| ExtendedDictionary | Microsoft.VisualBasic.MIME.application.json 1.0.9762.11310 |
4 | |
| JsonParser | A json text parser module | Microsoft.VisualBasic.MIME.application.json 1.0.9753.4776 |
9 |
| JsonParser | A json text parser module | Microsoft.VisualBasic.MIME.application.json 1.0.9762.11310 |
9 |
| JSONSerializer | Microsoft.VisualBasic.MIME.application.json 1.0.9753.4776 |
8 | |
| JSONSerializer | Microsoft.VisualBasic.MIME.application.json 1.0.9762.11310 |
7 | |
| JSONSerializerOptions | Microsoft.VisualBasic.MIME.application.json 1.0.9753.4776 |
11 | |
| JSONSerializerOptions | Microsoft.VisualBasic.MIME.application.json 1.0.9762.11310 |
11 | |
| JSONTextParser | Microsoft.VisualBasic.MIME.application.json 1.0.9753.4776 |
6 | |
| JSONTextParser | Microsoft.VisualBasic.MIME.application.json 1.0.9762.11310 |
5 | |
| JSONWriter | Microsoft.VisualBasic.MIME.application.json 1.0.9753.4776 |
6 | |
| JSONWriter | Microsoft.VisualBasic.MIME.application.json 1.0.9762.11310 |
6 | |
| ObjectParser | Microsoft.VisualBasic.MIME.application.json 1.0.9753.4776 |
2 | |
| ObjectParser | Microsoft.VisualBasic.MIME.application.json 1.0.9762.11310 |
2 | |
| ObjectSerializer | Microsoft.VisualBasic.MIME.application.json 1.0.9753.4776 |
2 | |
| ObjectSerializer | Microsoft.VisualBasic.MIME.application.json 1.0.9762.11310 |
2 | |
| StreamTokenIcer | Microsoft.VisualBasic.MIME.application.json 1.0.9753.4776 |
3 | |
| StreamTokenIcer | Microsoft.VisualBasic.MIME.application.json 1.0.9762.11310 |
1 | |
| StringTokenIcer | Microsoft.VisualBasic.MIME.application.json 1.0.9753.4776 |
3 | |
| StringTokenIcer | Microsoft.VisualBasic.MIME.application.json 1.0.9762.11310 |
1 | |
| TokenIcer | Microsoft.VisualBasic.MIME.application.json 1.0.9753.4776 |
6 | |
| TokenIcer | Microsoft.VisualBasic.MIME.application.json 1.0.9762.11310 |
4 | |
| Variant | Microsoft.VisualBasic.MIME.application.json 1.0.9753.4776 |
3 | |
| Variant | Microsoft.VisualBasic.MIME.application.json 1.0.9762.11310 |
3 |
Microsoft.VisualBasic.MIME.application.json.BSON
| Type | Summary | Package | Members |
|---|---|---|---|
| BSONFormat | Microsoft.VisualBasic.MIME.application.json 1.0.9753.4776 |
8 | |
| BSONFormat | Microsoft.VisualBasic.MIME.application.json 1.0.9762.11310 |
5 | |
| BSONValue | Microsoft.VisualBasic.MIME.application.json 1.0.9753.4776 |
16 | |
| BSONValue | Microsoft.VisualBasic.MIME.application.json 1.0.9762.11310 |
16 | |
| Decoder | Microsoft.VisualBasic.MIME.application.json 1.0.9753.4776 |
5 | |
| Decoder | Microsoft.VisualBasic.MIME.application.json 1.0.9762.11310 |
3 | |
| Encoder | Microsoft.VisualBasic.MIME.application.json 1.0.9753.4776 |
2 | |
| Encoder | Microsoft.VisualBasic.MIME.application.json 1.0.9762.11310 |
2 | |
| ValueType | Microsoft.VisualBasic.MIME.application.json 1.0.9753.4776 |
16 | |
| ValueType | Microsoft.VisualBasic.MIME.application.json 1.0.9762.11310 |
16 |
Microsoft.VisualBasic.MIME.application.json.Javascript
| Type | Summary | Package | Members |
|---|---|---|---|
| JsonArray | Microsoft.VisualBasic.MIME.application.json 1.0.9753.4776 |
13 | |
| JsonArray | Microsoft.VisualBasic.MIME.application.json 1.0.9762.11310 |
9 | |
| JsonElement | The abstract javascript object model | Microsoft.VisualBasic.MIME.application.json 1.0.9753.4776 |
6 |
| JsonElement | The abstract javascript object model | Microsoft.VisualBasic.MIME.application.json 1.0.9762.11310 |
5 |
| JsonModel | The abstract model of the array/object | Microsoft.VisualBasic.MIME.application.json 1.0.9753.4776 |
1 |
| JsonModel | The abstract model of the array/object | Microsoft.VisualBasic.MIME.application.json 1.0.9762.11310 |
1 |
| JsonObject | Dictionary/Array equivalent in javascript | Microsoft.VisualBasic.MIME.application.json 1.0.9753.4776 |
26 |
| JsonObject | Dictionary/Array equivalent in javascript | Microsoft.VisualBasic.MIME.application.json 1.0.9762.11310 |
10 |
| JsonValue | The primitive value type in javascript. | Microsoft.VisualBasic.MIME.application.json 1.0.9753.4776 |
14 |
| JsonValue | The primitive value type in javascript. | Microsoft.VisualBasic.MIME.application.json 1.0.9762.11310 |
14 |
Microsoft.VisualBasic.MIME.application.json.JSONLogic
| Type | Summary | Package | Members |
|---|---|---|---|
| jsonLogic | Build complex rules, serialize them as JSON, share them between front-end and back-end | Microsoft.VisualBasic.MIME.application.json 1.0.9753.4776 |
1 |
| jsonLogic | Build complex rules, serialize them as JSON, share them between front-end and back-end | Microsoft.VisualBasic.MIME.application.json 1.0.9762.11310 |
1 |
| TreeBuilder | Microsoft.VisualBasic.MIME.application.json 1.0.9753.4776 |
4 | |
| TreeBuilder | Microsoft.VisualBasic.MIME.application.json 1.0.9762.11310 |
4 |
Microsoft.VisualBasic.MIME.application.json.LenientJson
| Type | Summary | Package | Members |
|---|---|---|---|
| LenientJsonExtensions | Extension methods providing convenient access to the LenientJsonParser. | Microsoft.VisualBasic.MIME.application.json 1.0.9753.4776 |
3 |
| LenientJsonExtensions | Extension methods providing convenient access to the LenientJsonParser. | Microsoft.VisualBasic.MIME.application.json 1.0.9762.11310 |
3 |
| LenientJsonParser | A lenient (fault-tolerant) JSON parser designed to automatically repair and parse JSON output produced by Large Language Models (LLMs). | Microsoft.VisualBasic.MIME.application.json 1.0.9753.4776 |
27 |
| LenientJsonParser | A lenient (fault-tolerant) JSON parser designed to automatically repair and parse JSON output produced by Large Language Models (LLMs). | Microsoft.VisualBasic.MIME.application.json 1.0.9762.11310 |
27 |
Microsoft.VisualBasic.MIME.application.json.LenientJson.LenientJsonParser
| Type | Summary | Package | Members |
|---|---|---|---|
| StringContext | Indicates the syntactic position that the string currently being parsed occupies within the JSON structure. | Microsoft.VisualBasic.MIME.application.json 1.0.9753.4776 |
2 |
| StringContext | Indicates the syntactic position that the string currently being parsed occupies within the JSON structure. | Microsoft.VisualBasic.MIME.application.json 1.0.9762.11310 |
2 |
Microsoft.VisualBasic.MIME.application.json.Token
| Type | Summary | Package | Members |
|---|---|---|---|
| JSONElements | Microsoft.VisualBasic.MIME.application.json 1.0.9753.4776 |
16 | |
| JSONElements | Microsoft.VisualBasic.MIME.application.json 1.0.9762.11310 |
16 |
Microsoft.VisualBasic.MIME.application.pdf
| Type | Summary | Package | Members |
|---|---|---|---|
| FlateDecode | Microsoft.VisualBasic.MIME.application.pdf 1.1.9753.4776 |
3 | |
| FlateDecode | Microsoft.VisualBasic.MIME.application.pdf 1.1.9762.11310 |
3 | |
| FontInfo | 字体信息缓存。 | Microsoft.VisualBasic.MIME.application.pdf 1.1.9753.4776 |
6 |
| FontInfo | 字体信息缓存。 | Microsoft.VisualBasic.MIME.application.pdf 1.1.9762.11310 |
6 |
| Microsoft.VisualBasic.MIME.application.pdf 1.1.9753.4776 |
1 | ||
| Microsoft.VisualBasic.MIME.application.pdf 1.1.9762.11310 |
1 | ||
| PdfArray | 数组对象 [a b c ...]。 | Microsoft.VisualBasic.MIME.application.pdf 1.1.9753.4776 |
4 |
| PdfArray | 数组对象 [a b c ...]。 | Microsoft.VisualBasic.MIME.application.pdf 1.1.9762.11310 |
4 |
| PdfBlock | 单个文档内容块。承载文本、级别、样式快照、表格/图片数据等, 由 PdfDocument 收集并在 PdfLayoutEngine 中消费。 | Microsoft.VisualBasic.MIME.application.pdf 1.1.9753.4776 |
34 |
| PdfBlock | 单个文档内容块。承载文本、级别、样式快照、表格/图片数据等, 由 PdfDocument 收集并在 PdfLayoutEngine 中消费。 | Microsoft.VisualBasic.MIME.application.pdf 1.1.9762.11310 |
34 |
| PdfBlockType | 文档内容块类型。 | Microsoft.VisualBasic.MIME.application.pdf 1.1.9753.4776 |
26 |
| PdfBlockType | 文档内容块类型。 | Microsoft.VisualBasic.MIME.application.pdf 1.1.9762.11310 |
26 |
| PdfBoolean | 布尔值。 | Microsoft.VisualBasic.MIME.application.pdf 1.1.9753.4776 |
1 |
| PdfBoolean | 布尔值。 | Microsoft.VisualBasic.MIME.application.pdf 1.1.9762.11310 |
1 |
| PdfColor | PDF 颜色工具。把 OOXML 的 6 位十六进制 RGB(无 # 前缀)转换为 PDF 内容流 使用的 0-1 归一化 RGB 三元组,并生成对应的填充/描边指令。 | Microsoft.VisualBasic.MIME.application.pdf 1.1.9753.4776 |
11 |
| PdfColor | PDF 颜色工具。把 OOXML 的 6 位十六进制 RGB(无 # 前缀)转换为 PDF 内容流 使用的 0-1 归一化 RGB 三元组,并生成对应的填充/描边指令。 | Microsoft.VisualBasic.MIME.application.pdf 1.1.9762.11310 |
11 |
| PdfDictionary | 字典对象 << /Key Value ... | Microsoft.VisualBasic.MIME.application.pdf 1.1.9753.4776 |
4 |
| PdfDictionary | 字典对象 << /Key Value ... | Microsoft.VisualBasic.MIME.application.pdf 1.1.9762.11310 |
4 |
| PdfDocument | PDF 文档生成器。实现 IDocumentWriter,对外提供与 WordDocument 完全一致的编程接口,将文本、表格、图片写入并生成 PDF 文件。 | Microsoft.VisualBasic.MIME.application.pdf 1.1.9753.4776 |
0 |
| PdfDocument | PDF 文档生成器。实现 IDocumentWriter,对外提供与 WordDocument 完全一致的编程接口,将文本、表格、图片写入并生成 PDF 文件。 | Microsoft.VisualBasic.MIME.application.pdf 1.1.9762.11310 |
0 |
| PdfFontEntry | 一个已注册的 PDF 字体资源条目,供 PdfWriter 序列化为 /Font 字典。 | Microsoft.VisualBasic.MIME.application.pdf 1.1.9753.4776 |
8 |
| PdfFontEntry | 一个已注册的 PDF 字体资源条目,供 PdfWriter 序列化为 /Font 字典。 | Microsoft.VisualBasic.MIME.application.pdf 1.1.9762.11310 |
8 |
| PdfFontResource | 字体资源管理器。集中管理与解析文档所用字体并提供字符宽度测量与文本编码。 不嵌入任何字体文件,依赖阅读器本地具备相应字体进行替换渲染。 | Microsoft.VisualBasic.MIME.application.pdf 1.1.9753.4776 |
11 |
| PdfFontResource | 字体资源管理器。集中管理与解析文档所用字体并提供字符宽度测量与文本编码。 不嵌入任何字体文件,依赖阅读器本地具备相应字体进行替换渲染。 | Microsoft.VisualBasic.MIME.application.pdf 1.1.9762.11310 |
11 |
| PdfImageObject | 一个已编码好的图片 XObject,供 PdfWriter 作为 /XObject 资源嵌入。 | Microsoft.VisualBasic.MIME.application.pdf 1.1.9753.4776 |
16 |
| PdfImageObject | 一个已编码好的图片 XObject,供 PdfWriter 作为 /XObject 资源嵌入。 | Microsoft.VisualBasic.MIME.application.pdf 1.1.9762.11310 |
16 |
| PdfImageXObject | 图片 XObject 编码与缓存管理。 | Microsoft.VisualBasic.MIME.application.pdf 1.1.9753.4776 |
5 |
| PdfImageXObject | 图片 XObject 编码与缓存管理。 | Microsoft.VisualBasic.MIME.application.pdf 1.1.9762.11310 |
5 |
| PdfIndirectObject | 间接对象:num gen obj <content> endobj。 | Microsoft.VisualBasic.MIME.application.pdf 1.1.9753.4776 |
3 |
| PdfIndirectObject | 间接对象:num gen obj <content> endobj。 | Microsoft.VisualBasic.MIME.application.pdf 1.1.9762.11310 |
3 |
| PdfLayoutEngine | PDF 内容排版与分页引擎。 | Microsoft.VisualBasic.MIME.application.pdf 1.1.9753.4776 |
4 |
| PdfLayoutEngine | PDF 内容排版与分页引擎。 | Microsoft.VisualBasic.MIME.application.pdf 1.1.9762.11310 |
4 |
| PdfLexer | Microsoft.VisualBasic.MIME.application.pdf 1.1.9753.4776 |
7 | |
| PdfLexer | Microsoft.VisualBasic.MIME.application.pdf 1.1.9762.11310 |
7 | |
| PdfName | 名称对象,例如 /Type、/Pages。内部存储不带前导斜杠。 | Microsoft.VisualBasic.MIME.application.pdf 1.1.9753.4776 |
6 |
| PdfName | 名称对象,例如 /Type、/Pages。内部存储不带前导斜杠。 | Microsoft.VisualBasic.MIME.application.pdf 1.1.9762.11310 |
6 |
| PdfNull | PDF null 对象。 | Microsoft.VisualBasic.MIME.application.pdf 1.1.9753.4776 |
1 |
| PdfNull | PDF null 对象。 | Microsoft.VisualBasic.MIME.application.pdf 1.1.9762.11310 |
1 |
| PdfNumber | 数值(PDF 中数值统一为浮点,需要整数时取整)。 | Microsoft.VisualBasic.MIME.application.pdf 1.1.9753.4776 |
2 |
| PdfNumber | 数值(PDF 中数值统一为浮点,需要整数时取整)。 | Microsoft.VisualBasic.MIME.application.pdf 1.1.9762.11310 |
2 |
| PdfObject | 所有 PDF 对象的抽象基类。 | Microsoft.VisualBasic.MIME.application.pdf 1.1.9753.4776 |
0 |
| PdfObject | 所有 PDF 对象的抽象基类。 | Microsoft.VisualBasic.MIME.application.pdf 1.1.9762.11310 |
0 |
| PdfObjectParser | Microsoft.VisualBasic.MIME.application.pdf 1.1.9753.4776 |
3 | |
| PdfObjectParser | Microsoft.VisualBasic.MIME.application.pdf 1.1.9762.11310 |
3 | |
| PdfReader | Microsoft.VisualBasic.MIME.application.pdf 1.1.9753.4776 |
11 | |
| PdfReader | Microsoft.VisualBasic.MIME.application.pdf 1.1.9762.11310 |
11 | |
| PdfReference | 间接引用:num gen R。 | Microsoft.VisualBasic.MIME.application.pdf 1.1.9753.4776 |
3 |
| PdfReference | 间接引用:num gen R。 | Microsoft.VisualBasic.MIME.application.pdf 1.1.9762.11310 |
3 |
| PdfRenderResult | 布局结果:每页内容流文本 + 引用的图片对象。 | Microsoft.VisualBasic.MIME.application.pdf 1.1.9753.4776 |
2 |
| PdfRenderResult | 布局结果:每页内容流文本 + 引用的图片对象。 | Microsoft.VisualBasic.MIME.application.pdf 1.1.9762.11310 |
2 |
| PdfStream | 流对象:字典 + 二进制数据。 | Microsoft.VisualBasic.MIME.application.pdf 1.1.9753.4776 |
2 |
| PdfStream | 流对象:字典 + 二进制数据。 | Microsoft.VisualBasic.MIME.application.pdf 1.1.9762.11310 |
2 |
| PdfString | 字符串对象。同时保留原始字节和解码后的文本。 | Microsoft.VisualBasic.MIME.application.pdf 1.1.9753.4776 |
2 |
| PdfString | 字符串对象。同时保留原始字节和解码后的文本。 | Microsoft.VisualBasic.MIME.application.pdf 1.1.9762.11310 |
2 |
| PdfWriteMeta | PDF 文档信息字典元数据。 | Microsoft.VisualBasic.MIME.application.pdf 1.1.9753.4776 |
5 |
| PdfWriteMeta | PDF 文档信息字典元数据。 | Microsoft.VisualBasic.MIME.application.pdf 1.1.9762.11310 |
5 |
| PdfWriter | PDF 文件序列化器。 | Microsoft.VisualBasic.MIME.application.pdf 1.1.9753.4776 |
3 |
| PdfWriter | PDF 文件序列化器。 | Microsoft.VisualBasic.MIME.application.pdf 1.1.9762.11310 |
3 |
| TextExtractor | Microsoft.VisualBasic.MIME.application.pdf 1.1.9753.4776 |
4 | |
| TextExtractor | Microsoft.VisualBasic.MIME.application.pdf 1.1.9762.11310 |
4 | |
| ToUnicodeCMap | Microsoft.VisualBasic.MIME.application.pdf 1.1.9753.4776 |
6 | |
| ToUnicodeCMap | Microsoft.VisualBasic.MIME.application.pdf 1.1.9762.11310 |
6 | |
| XRefEntry | 交叉引用条目。 | Microsoft.VisualBasic.MIME.application.pdf 1.1.9753.4776 |
0 |
| XRefEntry | 交叉引用条目。 | Microsoft.VisualBasic.MIME.application.pdf 1.1.9762.11310 |
0 |
Microsoft.VisualBasic.MIME.application.rdf_xml
| Type | Summary | Package | Members |
|---|---|---|---|
| Array | <Bag>、<Seq> 以及 <Alt> + <rdf:Bag> 元素用于描述一个规定为无序的值的列表。元素可包含重复的值。 + <rdf:Seq> 元素用于描述一个规定为有序的值的列表(比如一个字母顺序的排序)。 + <rdf:Alt> 元素用于一个可替换的值的列表(用户仅可选择这些值的其中之一)。 | Microsoft.VisualBasic.MIME.application.rdf_xml 1.0.9753.4776 |
4 |
| Array | <Bag>、<Seq> 以及 <Alt> + <rdf:Bag> 元素用于描述一个规定为无序的值的列表。元素可包含重复的值。 + <rdf:Seq> 元素用于描述一个规定为有序的值的列表(比如一个字母顺序的排序)。 + <rdf:Alt> 元素用于一个可替换的值的列表(用户仅可选择这些值的其中之一)。 | Microsoft.VisualBasic.MIME.application.rdf_xml 1.0.9762.11310 |
1 |
| DataTypes | http://www.w3.org/2001/XMLSchema | Microsoft.VisualBasic.MIME.application.rdf_xml 1.0.9753.4776 |
5 |
| DataTypes | http://www.w3.org/2001/XMLSchema | Microsoft.VisualBasic.MIME.application.rdf_xml 1.0.9762.11310 |
5 |
| DCMI | RDF 都柏林核心元数据倡议 (http://w3school.com.cn/rdf/rdf_dublin.asp) | Microsoft.VisualBasic.MIME.application.rdf_xml 1.0.9753.4776 |
15 |
| DCMI | RDF 都柏林核心元数据倡议 (http://w3school.com.cn/rdf/rdf_dublin.asp) | Microsoft.VisualBasic.MIME.application.rdf_xml 1.0.9762.11310 |
15 |
| EntityProperty | RDF DataValue | Microsoft.VisualBasic.MIME.application.rdf_xml 1.0.9753.4776 |
8 |
| EntityProperty | RDF DataValue | Microsoft.VisualBasic.MIME.application.rdf_xml 1.0.9762.11310 |
8 |
| RDF | the xml file serilization model | Microsoft.VisualBasic.MIME.application.rdf_xml 1.0.9753.4776 |
2 |
| RDF | the xml file serilization model | Microsoft.VisualBasic.MIME.application.rdf_xml 1.0.9762.11310 |
2 |
| RDFEntity | 在rdf之中被描述的对象实体 | Microsoft.VisualBasic.MIME.application.rdf_xml 1.0.9753.4776 |
10 |
| RDFEntity | 在rdf之中被描述的对象实体 | Microsoft.VisualBasic.MIME.application.rdf_xml 1.0.9762.11310 |
4 |
| RDFProperty | property value with data type | Microsoft.VisualBasic.MIME.application.rdf_xml 1.0.9753.4776 |
0 |
| RDFProperty | property value with data type | Microsoft.VisualBasic.MIME.application.rdf_xml 1.0.9762.11310 |
0 |
| RDFType | rdf:type | Microsoft.VisualBasic.MIME.application.rdf_xml 1.0.9753.4776 |
1 |
| RDFType | rdf:type | Microsoft.VisualBasic.MIME.application.rdf_xml 1.0.9762.11310 |
1 |
| Resource | a data resource reference | Microsoft.VisualBasic.MIME.application.rdf_xml 1.0.9753.4776 |
3 |
| Resource | a data resource reference | Microsoft.VisualBasic.MIME.application.rdf_xml 1.0.9762.11310 |
3 |
Microsoft.VisualBasic.MIME.application.rdf_xml.Turtle
| Type | Summary | Package | Members |
|---|---|---|---|
| BuildObject | Microsoft.VisualBasic.MIME.application.rdf_xml 1.0.9753.4776 |
1 | |
| BuildObject | Microsoft.VisualBasic.MIME.application.rdf_xml 1.0.9762.11310 |
1 | |
| Relation | property data | Microsoft.VisualBasic.MIME.application.rdf_xml 1.0.9753.4776 |
3 |
| Relation | property data | Microsoft.VisualBasic.MIME.application.rdf_xml 1.0.9762.11310 |
3 |
| Triple | object properties | Microsoft.VisualBasic.MIME.application.rdf_xml 1.0.9753.4776 |
3 |
| Triple | object properties | Microsoft.VisualBasic.MIME.application.rdf_xml 1.0.9762.11310 |
3 |
| ttl_property | A simple key-value pair tuple data | Microsoft.VisualBasic.MIME.application.rdf_xml 1.0.9753.4776 |
4 |
| ttl_property | A simple key-value pair tuple data | Microsoft.VisualBasic.MIME.application.rdf_xml 1.0.9762.11310 |
4 |
| TurtleFile | RDF 1.1 Turtle Terse RDF Triple Language | Microsoft.VisualBasic.MIME.application.rdf_xml 1.0.9753.4776 |
3 |
| TurtleFile | RDF 1.1 Turtle Terse RDF Triple Language | Microsoft.VisualBasic.MIME.application.rdf_xml 1.0.9762.11310 |
3 |
Microsoft.VisualBasic.MIME.application.xml
| Type | Summary | Package | Members |
|---|---|---|---|
| CodeGenerator | Generate the VB.NET class code based on the xsd definition | Microsoft.VisualBasic.MIME.application.xml 1.0.9753.4776 |
0 |
| CodeGenerator | Generate the VB.NET class code based on the xsd definition | Microsoft.VisualBasic.MIME.application.xml 1.0.9762.11310 |
0 |
| CurrentNode | 选取当前节点。 | Microsoft.VisualBasic.MIME.application.xml 1.0.9753.4776 |
2 |
| CurrentNode | 选取当前节点。 | Microsoft.VisualBasic.MIME.application.xml 1.0.9762.11310 |
1 |
| CurrentNodes | 从匹配选择的当前节点选择文档中的节点,而不考虑它们的位置。 | Microsoft.VisualBasic.MIME.application.xml 1.0.9753.4776 |
2 |
| CurrentNodes | 从匹配选择的当前节点选择文档中的节点,而不考虑它们的位置。 | Microsoft.VisualBasic.MIME.application.xml 1.0.9762.11310 |
1 |
| ParentNode | 选取当前节点的父节点。 | Microsoft.VisualBasic.MIME.application.xml 1.0.9753.4776 |
2 |
| ParentNode | 选取当前节点的父节点。 | Microsoft.VisualBasic.MIME.application.xml 1.0.9762.11310 |
1 |
| RootPathSelector | 从根节点选取。 | Microsoft.VisualBasic.MIME.application.xml 1.0.9753.4776 |
2 |
| RootPathSelector | 从根节点选取。 | Microsoft.VisualBasic.MIME.application.xml 1.0.9762.11310 |
1 |
| SelectAttributes | 选取属性。 | Microsoft.VisualBasic.MIME.application.xml 1.0.9753.4776 |
2 |
| SelectAttributes | 选取属性。 | Microsoft.VisualBasic.MIME.application.xml 1.0.9762.11310 |
1 |
| SelectByNodeName | 选取此节点的所有子节点。 | Microsoft.VisualBasic.MIME.application.xml 1.0.9753.4776 |
2 |
| SelectByNodeName | 选取此节点的所有子节点。 | Microsoft.VisualBasic.MIME.application.xml 1.0.9762.11310 |
1 |
| XmlElement | A generic xml element node | Microsoft.VisualBasic.MIME.application.xml 1.0.9753.4776 |
11 |
| XmlElement | A generic xml element node | Microsoft.VisualBasic.MIME.application.xml 1.0.9762.11310 |
4 |
| XmlParser | Microsoft.VisualBasic.MIME.application.xml 1.0.9753.4776 |
1 | |
| XmlParser | Microsoft.VisualBasic.MIME.application.xml 1.0.9762.11310 |
1 | |
| XPath | 1. nodename 选取此节点的所有子节点。 2. / 从根节点选取。 3. // 从匹配选择的当前节点选择文档中的节点,而不考虑它们的位置。 4. . 选取当前节点。 5. .. 选取当前节点的父节点。 6. @ 选取属性。 | Microsoft.VisualBasic.MIME.application.xml 1.0.9753.4776 |
4 |
| XPath | 1. nodename 选取此节点的所有子节点。 2. / 从根节点选取。 3. // 从匹配选择的当前节点选择文档中的节点,而不考虑它们的位置。 4. . 选取当前节点。 5. .. 选取当前节点的父节点。 6. @ 选取属性。 | Microsoft.VisualBasic.MIME.application.xml 1.0.9762.11310 |
2 |
Microsoft.VisualBasic.MIME.application.xml.MathML
| Type | Summary | Package | Members |
|---|---|---|---|
| actiontypes | Microsoft.VisualBasic.MIME.application.xml 1.0.9753.4776 |
4 | |
| actiontypes | Microsoft.VisualBasic.MIME.application.xml 1.0.9762.11310 |
4 | |
| Apply | Microsoft.VisualBasic.MIME.application.xml 1.0.9753.4776 |
8 | |
| Apply | Microsoft.VisualBasic.MIME.application.xml 1.0.9762.11310 |
8 | |
| ContentBuilder | Microsoft.VisualBasic.MIME.application.xml 1.0.9753.4776 |
3 | |
| ContentBuilder | Microsoft.VisualBasic.MIME.application.xml 1.0.9762.11310 |
3 | |
| LambdaExpression | A lambda expression that consist with the LambdaExpression.parameters and LambdaExpression.lambda body. | Microsoft.VisualBasic.MIME.application.xml 1.0.9753.4776 |
4 |
| LambdaExpression | A lambda expression that consist with the LambdaExpression.parameters and LambdaExpression.lambda body. | Microsoft.VisualBasic.MIME.application.xml 1.0.9762.11310 |
4 |
| maction | The MathML <maction> element provides a possibility to bind actions to (sub-) expressions. | Microsoft.VisualBasic.MIME.application.xml 1.0.9753.4776 |
4 |
| maction | The MathML <maction> element provides a possibility to bind actions to (sub-) expressions. | Microsoft.VisualBasic.MIME.application.xml 1.0.9762.11310 |
4 |
Microsoft.VisualBasic.MIME.Html
| Type | Summary | Package | Members |
|---|---|---|---|
| DocumentFormatter | Module provides some method for text document | Microsoft.VisualBasic.MIME.Html 1.0.9753.4776 |
3 |
| DocumentFormatter | Module provides some method for text document | Microsoft.VisualBasic.MIME.Html 1.0.9762.11310 |
3 |
Microsoft.VisualBasic.MIME.Html.CSS
| Type | Summary | Package | Members |
|---|---|---|---|
| CSSEnvirnment | Microsoft.VisualBasic.MIME.Html 1.0.9753.4776 |
19 | |
| CSSEnvirnment | Microsoft.VisualBasic.MIME.Html 1.0.9762.11310 |
10 | |
| CSSFont | CSS font-style: style; font-size: size; font-family: Name; 这个简写属性用于一次设置元素字体的两个或更多方面。使用 icon 等关键字可以适当地设置元素的字体,使之与用户计算机环境中的某个方面一致。 注意,如果没有使用这些关键词,至少要指定字体大小和字体系列。 可以按顺序设置如下属性:… | Microsoft.VisualBasic.MIME.Html 1.0.9753.4776 |
44 |
| CSSFont | CSS font-style: style; font-size: size; font-family: Name; 这个简写属性用于一次设置元素字体的两个或更多方面。使用 icon 等关键字可以适当地设置元素的字体,使之与用户计算机环境中的某个方面一致。 注意,如果没有使用这些关键词,至少要指定字体大小和字体系列。 可以按顺序设置如下属性:… | Microsoft.VisualBasic.MIME.Html 1.0.9762.11310 |
8 |
| CSSLayer | 进行样式渲染的图层对象 | Microsoft.VisualBasic.MIME.Html 1.0.9753.4776 |
1 |
| CSSLayer | 进行样式渲染的图层对象 | Microsoft.VisualBasic.MIME.Html 1.0.9762.11310 |
1 |
| CSSsize | parse the width and height data from the css style string | Microsoft.VisualBasic.MIME.Html 1.0.9753.4776 |
2 |
| CSSsize | parse the width and height data from the css style string | Microsoft.VisualBasic.MIME.Html 1.0.9762.11310 |
2 |
| CssUnit | Represents the possible units of the CSS lengths | Microsoft.VisualBasic.MIME.Html 1.0.9753.4776 |
20 |
| CssUnit | Represents the possible units of the CSS lengths | Microsoft.VisualBasic.MIME.Html 1.0.9762.11310 |
20 |
| Fill | Brush: SolidBrush and TextureBrush | Microsoft.VisualBasic.MIME.Html 1.0.9753.4776 |
3 |
| Fill | Brush: SolidBrush and TextureBrush | Microsoft.VisualBasic.MIME.Html 1.0.9762.11310 |
2 |
| ICSSValue | an abstract object model for get ICSSValue.CSSValue string from current object. | Microsoft.VisualBasic.MIME.Html 1.0.9753.4776 |
2 |
| ICSSValue | an abstract object model for get ICSSValue.CSSValue string from current object. | Microsoft.VisualBasic.MIME.Html 1.0.9762.11310 |
2 |
| Padding | Represents padding or margin information associated with a gdi+ element. | Microsoft.VisualBasic.MIME.Html 1.0.9753.4776 |
21 |
| Padding | Represents padding or margin information associated with a gdi+ element. | Microsoft.VisualBasic.MIME.Html 1.0.9762.11310 |
21 |
| PaddingLayout | A fix numeric layout data | Microsoft.VisualBasic.MIME.Html 1.0.9753.4776 |
13 |
| PaddingLayout | A fix numeric layout data | Microsoft.VisualBasic.MIME.Html 1.0.9762.11310 |
13 |
| Stroke | css stroke: color/image; stroke-width: width(px); stroke-dash: dash_style; | Microsoft.VisualBasic.MIME.Html 1.0.9753.4776 |
18 |
| Stroke | css stroke: color/image; stroke-width: width(px); stroke-dash: dash_style; | Microsoft.VisualBasic.MIME.Html 1.0.9762.11310 |
9 |
Microsoft.VisualBasic.MIME.Html.Document
| Type | Summary | Package | Members |
|---|---|---|---|
| Anchor | Microsoft.VisualBasic.MIME.Html 1.0.9753.4776 |
10 | |
| Anchor | Microsoft.VisualBasic.MIME.Html 1.0.9762.11310 |
9 | |
| Extensions | Microsoft.VisualBasic.MIME.Html 1.0.9753.4776 |
3 | |
| Extensions | Microsoft.VisualBasic.MIME.Html 1.0.9762.11310 |
3 | |
| HtmlCompress | html compress | Microsoft.VisualBasic.MIME.Html 1.0.9753.4776 |
1 |
| HtmlCompress | html compress | Microsoft.VisualBasic.MIME.Html 1.0.9762.11310 |
1 |
| HtmlDocument | A root document that is a kind of subclass of HtmlElement | Microsoft.VisualBasic.MIME.Html 1.0.9753.4776 |
1 |
| HtmlDocument | A root document that is a kind of subclass of HtmlElement | Microsoft.VisualBasic.MIME.Html 1.0.9762.11310 |
1 |
| HtmlElement | 一个标签所标记的元素以及内部文本 | Microsoft.VisualBasic.MIME.Html 1.0.9753.4776 |
28 |
| HtmlElement | 一个标签所标记的元素以及内部文本 | Microsoft.VisualBasic.MIME.Html 1.0.9762.11310 |
16 |
| Image | Microsoft.VisualBasic.MIME.Html 1.0.9753.4776 |
9 | |
| Image | Microsoft.VisualBasic.MIME.Html 1.0.9762.11310 |
9 | |
| InnerPlantText | Plant text inner the html.(HTML文档内的纯文本对象) | Microsoft.VisualBasic.MIME.Html 1.0.9753.4776 |
7 |
| InnerPlantText | Plant text inner the html.(HTML文档内的纯文本对象) | Microsoft.VisualBasic.MIME.Html 1.0.9762.11310 |
2 |
| ValueAttribute | A key-value pair of the html attribute, includes the attribute name and attribute value | Microsoft.VisualBasic.MIME.Html 1.0.9753.4776 |
7 |
| ValueAttribute | A key-value pair of the html attribute, includes the attribute name and attribute value | Microsoft.VisualBasic.MIME.Html 1.0.9762.11310 |
4 |
Microsoft.VisualBasic.MIME.Html.HTML.jQuery
| Type | Summary | Package | Members |
|---|---|---|---|
| Extensions | Microsoft.VisualBasic.MIME.Html 1.0.9753.4776 |
2 | |
| Extensions | Microsoft.VisualBasic.MIME.Html 1.0.9762.11310 |
2 |
Microsoft.VisualBasic.MIME.Html.Language
| Type | Summary | Package | Members |
|---|---|---|---|
| Escaping | Microsoft.VisualBasic.MIME.Html 1.0.9753.4776 |
1 | |
| Escaping | Microsoft.VisualBasic.MIME.Html 1.0.9762.11310 |
1 | |
| HtmlTokens | Microsoft.VisualBasic.MIME.Html 1.0.9753.4776 |
9 | |
| HtmlTokens | Microsoft.VisualBasic.MIME.Html 1.0.9762.11310 |
9 |
Microsoft.VisualBasic.MIME.Html.Language.CSS
| Type | Summary | Package | Members |
|---|---|---|---|
| CSSFile | CSS文件的对象模型,一个CSS文件是由若干个selector节点选择器所构成的,以及每一个选择器都是由若干样式属性定义所构成 | Microsoft.VisualBasic.MIME.Html 1.0.9753.4776 |
9 |
| CSSFile | CSS文件的对象模型,一个CSS文件是由若干个selector节点选择器所构成的,以及每一个选择器都是由若干样式属性定义所构成 | Microsoft.VisualBasic.MIME.Html 1.0.9762.11310 |
6 |
| CssParser | Parser css code to add/remove or manage it. | Microsoft.VisualBasic.MIME.Html 1.0.9753.4776 |
7 |
| CssParser | Parser css code to add/remove or manage it. | Microsoft.VisualBasic.MIME.Html 1.0.9762.11310 |
7 |
| CssProperty | Css properties list. | Microsoft.VisualBasic.MIME.Html 1.0.9753.4776 |
600 |
| CssProperty | Css properties list. | Microsoft.VisualBasic.MIME.Html 1.0.9762.11310 |
600 |
| CSSSelectorTypes | Define Tag type. | Microsoft.VisualBasic.MIME.Html 1.0.9753.4776 |
8 |
| CSSSelectorTypes | Define Tag type. | Microsoft.VisualBasic.MIME.Html 1.0.9762.11310 |
8 |
| HtmlTags | HTML Tags. | Microsoft.VisualBasic.MIME.Html 1.0.9753.4776 |
38 |
| HtmlTags | HTML Tags. | Microsoft.VisualBasic.MIME.Html 1.0.9762.11310 |
38 |
| Selector | CSS之中的样式选择器 | Microsoft.VisualBasic.MIME.Html 1.0.9753.4776 |
5 |
| Selector | CSS之中的样式选择器 | Microsoft.VisualBasic.MIME.Html 1.0.9762.11310 |
3 |
| UrlEvaluator | Microsoft.VisualBasic.MIME.Html 1.0.9753.4776 |
2 | |
| UrlEvaluator | Microsoft.VisualBasic.MIME.Html 1.0.9762.11310 |
2 |
Microsoft.VisualBasic.MIME.Html.Render
| Type | Summary | Package | Members |
|---|---|---|---|
| HtmlConstants | Defines HTML strings | Microsoft.VisualBasic.MIME.Html 1.0.9753.4776 |
217 |
| HtmlConstants | Defines HTML strings | Microsoft.VisualBasic.MIME.Html 1.0.9762.11310 |
217 |
| HtmlRenderer | A Professional HTML Renderer You Will Use > https://www.codeproject.com/Articles/32376/A-Professional-HTML-Renderer-You-Will-Use | Microsoft.VisualBasic.MIME.Html 1.0.9753.4776 |
3 |
| HtmlRenderer | A Professional HTML Renderer You Will Use > https://www.codeproject.com/Articles/32376/A-Professional-HTML-Renderer-You-Will-Use | Microsoft.VisualBasic.MIME.Html 1.0.9762.11310 |
3 |
| Parser | Collection of regular expressions used when parsing | Microsoft.VisualBasic.MIME.Html 1.0.9753.4776 |
23 |
| Parser | Collection of regular expressions used when parsing | Microsoft.VisualBasic.MIME.Html 1.0.9762.11310 |
23 |
| TextAPI | 用于简单的HTML文档渲染 | Microsoft.VisualBasic.MIME.Html 1.0.9753.4776 |
4 |
| TextAPI | 用于简单的HTML文档渲染 | Microsoft.VisualBasic.MIME.Html 1.0.9762.11310 |
3 |
Microsoft.VisualBasic.MIME.Html.Render.CSS
| Type | Summary | Package | Members |
|---|---|---|---|
| CssConstants | String constants to avoid typing errors. | Microsoft.VisualBasic.MIME.Html 1.0.9753.4776 |
101 |
| CssConstants | String constants to avoid typing errors. | Microsoft.VisualBasic.MIME.Html 1.0.9762.11310 |
101 |
| CssDefaults | Microsoft.VisualBasic.MIME.Html 1.0.9753.4776 |
18 | |
| CssDefaults | Microsoft.VisualBasic.MIME.Html 1.0.9762.11310 |
18 | |
| CssLength | Represents and gets info about a CSS Length | Microsoft.VisualBasic.MIME.Html 1.0.9753.4776 |
10 |
| CssLength | Represents and gets info about a CSS Length | Microsoft.VisualBasic.MIME.Html 1.0.9762.11310 |
10 |
| CssPropertyAttribute | Used to mark a property as a Css property. | Microsoft.VisualBasic.MIME.Html 1.0.9753.4776 |
3 |
| CssPropertyAttribute | Used to mark a property as a Css property. | Microsoft.VisualBasic.MIME.Html 1.0.9762.11310 |
3 |
| CssRectangle | Microsoft.VisualBasic.MIME.Html 1.0.9753.4776 |
10 | |
| CssRectangle | Microsoft.VisualBasic.MIME.Html 1.0.9762.11310 |
10 | |
| CssValue | Microsoft.VisualBasic.MIME.Html 1.0.9753.4776 |
8 | |
| CssValue | Microsoft.VisualBasic.MIME.Html 1.0.9762.11310 |
8 |
Microsoft.VisualBasic.MIME.Html.Render.TextString
| Type | Summary | Package | Members |
|---|---|---|---|
| WeightStyles | Microsoft.VisualBasic.MIME.Html 1.0.9753.4776 |
5 | |
| WeightStyles | Microsoft.VisualBasic.MIME.Html 1.0.9762.11310 |
5 |
Microsoft.VisualBasic.MIME.Html.XmlMeta
| Type | Summary | Package | Members |
|---|---|---|---|
| CSS | Html之中的CSS样式 | Microsoft.VisualBasic.MIME.Html 1.0.9753.4776 |
5 |
| CSS | Html之中的CSS样式 | Microsoft.VisualBasic.MIME.Html 1.0.9762.11310 |
5 |
| Node | The base of the html node | Microsoft.VisualBasic.MIME.Html 1.0.9753.4776 |
3 |
| Node | The base of the html node | Microsoft.VisualBasic.MIME.Html 1.0.9762.11310 |
3 |
Microsoft.VisualBasic.MIME.RTF
| Type | Summary | Package | Members |
|---|---|---|---|
| Font | Font style of the selected text region. | Microsoft.VisualBasic.MIME.RTF 1.0.9762.11310 |
13 |
| FormatedRegion | Microsoft.VisualBasic.MIME.RTF 1.0.9762.11310 |
8 | |
| Rtf | Rich text format document object model.(带有格式描述信息的文本文档的对象模型) | Microsoft.VisualBasic.MIME.RTF 1.0.9762.11310 |
11 |
| RtfBlock | 单个 RTF 文档内容块。承载文本、级别、样式快照、表格/图片数据等, 由 RtfDocument 收集并在 RtfSerializer 中消费。 | Microsoft.VisualBasic.MIME.RTF 1.0.9762.11310 |
38 |
| RtfBlockType | RTF 文档内容块类型。 | Microsoft.VisualBasic.MIME.RTF 1.0.9762.11310 |
26 |
| RtfCodePage | RTF 所依赖的代码页访问:写入侧用于把非 ASCII 文本(字体名、生成器)编码为 \'hh, 读取侧用于按 \ansicpg / \cpg 解码 \'hh 与原始多字节字节序列。 | Microsoft.VisualBasic.MIME.RTF 1.0.9762.11310 |
4 |
| RtfDocument | RTF 文档生成器。实现 IDocumentWriter,对外提供与 WordDocument / PdfDocument 完全一致的编程接口, 将文本、表格、图片写入并生成 .rtf 文件。 | Microsoft.VisualBasic.MIME.RTF 1.0.9762.11310 |
46 |
| RtfDocumentInfo | RTF 文档元数据(对应 RTF 的 \info 组与 \*\generator)。 缺失字段为空字符串,不会抛出异常。 | Microsoft.VisualBasic.MIME.RTF 1.0.9762.11310 |
8 |
| RtfLexer | RTF 词法解析器:单遍扫描 RTF 字节流,产出正文段落与文档元数据。 | Microsoft.VisualBasic.MIME.RTF 1.0.9762.11310 |
8 |
| RtfSerializer | RTF 1.x 序列化器:把 RtfBlock 队列渲染为 RTF 文本并落盘。 | Microsoft.VisualBasic.MIME.RTF 1.0.9762.11310 |
12 |
| RtfTextReader | RTF 文本提取器:从 .rtf 文件或 RTF 文本流中读取正文。 | Microsoft.VisualBasic.MIME.RTF 1.0.9762.11310 |
8 |
| RtfWriteMeta | 写入 RTF 时携带的文档元数据。 | Microsoft.VisualBasic.MIME.RTF 1.0.9762.11310 |
6 |
Microsoft.VisualBasic.MIME.RTF.Omml
| Type | Summary | Package | Members |
|---|---|---|---|
| HTML | Omml: office microsoft word xml | Microsoft.VisualBasic.MIME.RTF 1.0.9762.11310 |
3 |
Microsoft.VisualBasic.MIME.RTF.RtfLexer
| Type | Summary | Package | Members |
|---|---|---|---|
| GroupState | 分组状态快照,用于 {} 配对时恢复各类设置的作用域。 | Microsoft.VisualBasic.MIME.RTF 1.0.9762.11310 |
0 |
Microsoft.VisualBasic.MIME.RTF.RtfSerializer
| Type | Summary | Package | Members |
|---|---|---|---|
| ColorTable | RTF 颜色表:索引 0 保留给 \cf0(自动色),自定义色自 1 起。 | Microsoft.VisualBasic.MIME.RTF 1.0.9762.11310 |
1 |
| FontTable | RTF 字体表:名称去重,序号即 \fN 的 N。 | Microsoft.VisualBasic.MIME.RTF 1.0.9762.11310 |
0 |
Microsoft.VisualBasic.MIME.text.markdown
| Type | Summary | Package | Members |
|---|---|---|---|
| MarkdownParser | A two-phase recursive Markdown parser: block-level tokenization followed by inline parsing. | Microsoft.VisualBasic.MIME.text.markdown 1.0.9753.4776 |
3 |
| MarkdownParser | A two-phase recursive Markdown parser: block-level tokenization followed by inline parsing. | Microsoft.VisualBasic.MIME.text.markdown 1.0.9762.11310 |
3 |
| MarkdownRender | Markdown text document transform its markup language format into html text format. | Microsoft.VisualBasic.MIME.text.markdown 1.0.9753.4776 |
3 |
| MarkdownRender | Markdown text document transform its markup language format into html text format. | Microsoft.VisualBasic.MIME.text.markdown 1.0.9762.11310 |
3 |
| Render | The different markup syntax formatter for the markdown document. | Microsoft.VisualBasic.MIME.text.markdown 1.0.9753.4776 |
20 |
| Render | The different markup syntax formatter for the markdown document. | Microsoft.VisualBasic.MIME.text.markdown 1.0.9762.11310 |
20 |
| TOC | Microsoft.VisualBasic.MIME.text.markdown 1.0.9753.4776 |
3 | |
| TOC | Microsoft.VisualBasic.MIME.text.markdown 1.0.9762.11310 |
3 |
Microsoft.VisualBasic.MIME.text.markdown.JSONSchema
| Type | Summary | Package | Members |
|---|---|---|---|
| Block | 针对markdown格式有限的支持 | Microsoft.VisualBasic.MIME.text.markdown 1.0.9753.4776 |
16 |
| Block | 针对markdown格式有限的支持 | Microsoft.VisualBasic.MIME.text.markdown 1.0.9762.11310 |
16 |
| BlockRenderer | markdown block rendering extensions, converts a single Block object into its markdown or html text fragment. | Microsoft.VisualBasic.MIME.text.markdown 1.0.9753.4776 |
5 |
| BlockRenderer | markdown block rendering extensions, converts a single Block object into its markdown or html text fragment. | Microsoft.VisualBasic.MIME.text.markdown 1.0.9762.11310 |
5 |
| JSONRenderer | Markdown render helper for LLM outputs | Microsoft.VisualBasic.MIME.text.markdown 1.0.9753.4776 |
3 |
| JSONRenderer | Markdown render helper for LLM outputs | Microsoft.VisualBasic.MIME.text.markdown 1.0.9762.11310 |
3 |
Microsoft.VisualBasic.MIME.text.yaml
| Type | Summary | Package | Members |
|---|---|---|---|
| MultiLineState | Tracks the state for multi-line string collection during pre-processing. | Microsoft.VisualBasic.MIME.text.yaml 1.0.9753.4776 |
8 |
| MultiLineState | Tracks the state for multi-line string collection during pre-processing. | Microsoft.VisualBasic.MIME.text.yaml 1.0.9762.11310 |
8 |
| Serialization | Microsoft.VisualBasic.MIME.text.yaml 1.0.9753.4776 |
3 | |
| Serialization | Microsoft.VisualBasic.MIME.text.yaml 1.0.9762.11310 |
3 | |
| YamlFrontMatterParser | A lightweight YAML front-matter parser specialized for SKILL.md files. | Microsoft.VisualBasic.MIME.text.yaml 1.0.9753.4776 |
2 |
| YamlFrontMatterParser | A lightweight YAML front-matter parser specialized for SKILL.md files. | Microsoft.VisualBasic.MIME.text.yaml 1.0.9762.11310 |
2 |
| YamlLine | Represents a single pre-processed line of YAML text with its indentation level. | Microsoft.VisualBasic.MIME.text.yaml 1.0.9753.4776 |
3 |
| YamlLine | Represents a single pre-processed line of YAML text with its indentation level. | Microsoft.VisualBasic.MIME.text.yaml 1.0.9762.11310 |
3 |
| YamlParser | A YAML document parser that converts YAML text into JsonElement model objects. | Microsoft.VisualBasic.MIME.text.yaml 1.0.9753.4776 |
22 |
| YamlParser | A YAML document parser that converts YAML text into JsonElement model objects. | Microsoft.VisualBasic.MIME.text.yaml 1.0.9762.11310 |
22 |
Microsoft.VisualBasic.My
| Type | Summary | Package | Members |
|---|---|---|---|
| File | A internal file handler | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 |
| File | A internal file handler | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 |
| FileFormats | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
6 | |
| FileFormats | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
6 | |
| InnerQueue | Task action Queue for terminal QUEUE SOLVER 🙉 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| InnerQueue | Task action Queue for terminal QUEUE SOLVER 🙉 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
| Log4VB | VB.NET Console log framework. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
15 |
| Log4VB | VB.NET Console log framework. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
15 |
| RlangInterop | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 | |
| RlangInterop | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 | |
| SingletonHolder | An Interface for the SingletonHolder Class.(存储单体模式的对象实例) | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 |
| SingletonHolder | An Interface for the SingletonHolder Class.(存储单体模式的对象实例) | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 |
Microsoft.VisualBasic.My.FrameworkInternal
| Type | Summary | Package | Members |
|---|---|---|---|
| Config | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
7 | |
| Config | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
7 | |
| DoConfiguration | Do configuration | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
6 |
| DoConfiguration | Do configuration | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
6 |
| FrameworkConfigAttribute | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 | |
| FrameworkConfigAttribute | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 | |
| IOHandler | Collection IO extensions | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
6 |
| IOHandler | Collection IO extensions | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
6 |
| MemoryLoads | config memory usage by the framework | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
6 |
| MemoryLoads | config memory usage by the framework | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
6 |
Microsoft.VisualBasic.My.JavaScript
| Type | Summary | Package | Members |
|---|---|---|---|
| DataView | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
6 | |
| DataView | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
6 | |
| IJavaScriptObjectAccessor | Interface helper for get value by name | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 |
| IJavaScriptObjectAccessor | Interface helper for get value by name | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 |
| JavaScriptObject | javascript object | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
18 |
| JavaScriptObject | javascript object | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
18 |
| JavaScriptValue | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
7 | |
| JavaScriptValue | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
7 | |
| Linq | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
14 | |
| Linq | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
14 | |
| MemberAccessorResult | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
6 | |
| MemberAccessorResult | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
6 | |
| UnionType | Union type of the value and its value generator function. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
13 |
| UnionType | Union type of the value and its value generator function. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
13 |
Microsoft.VisualBasic.My.JavaScript.ES6
Microsoft.VisualBasic.My.UNIX
| Type | Summary | Package | Members |
|---|---|---|---|
| LinuxRunHelper | mono shortcuts | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 |
| LinuxRunHelper | mono shortcuts | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 |
| PathMapper | Maps the linux path to the Windows path.(这个模块是将Linux路径映射为Windows路径的) | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| PathMapper | Maps the linux path to the Windows path.(这个模块是将Linux路径映射为Windows路径的) | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
Microsoft.VisualBasic.Net
| Type | Summary | Package | Members |
|---|---|---|---|
| AddressEnumerator | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 | |
| AddressEnumerator | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 | |
| DomainName | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 | |
| DomainName | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 | |
| DomainParser | http://sub.domain.com/somefolder/index.html -> domain.com somedomain.info -> somedomain.info http://anotherdomain.org/home -> anotherdomain.org www.subdomain.anothersubdomain.ma… | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 |
| DomainParser | http://sub.domain.com/somefolder/index.html -> domain.com somedomain.info -> somedomain.info http://anotherdomain.org/home -> anotherdomain.org www.subdomain.anothersubdomain.ma… | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 |
| IPEndPoint | The object of IPEndPoint can not be Xml serialization. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
16 |
| IPEndPoint | The object of IPEndPoint can not be Xml serialization. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
16 |
| LANTools | http://www.codeproject.com/Tips/358946/Retrieving-IP-and-MAC-addresses-for-a-LAN | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
6 |
| LANTools | http://www.codeproject.com/Tips/358946/Retrieving-IP-and-MAC-addresses-for-a-LAN | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
6 |
| PingUtility | http://www.codeproject.com/Articles/18635/Ping-exe-replica-in-C Ping.exe replica in C# 2.0 Stefan Prodan, 3 May 2007 CPOL Usage example of the System.Net.NetworkInformation.P… | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| PingUtility | http://www.codeproject.com/Articles/18635/Ping-exe-replica-in-C Ping.exe replica in C# 2.0 Stefan Prodan, 3 May 2007 CPOL Usage example of the System.Net.NetworkInformation.P… | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
Microsoft.VisualBasic.Net.Abstract
| Type | Summary | Package | Members |
|---|---|---|---|
| IDataRequestHandler | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 | |
| IDataRequestHandler | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 | |
| IServicesSocket | Socket listening object which is running at the server side asynchronous able multiple threading. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 |
| IServicesSocket | Socket listening object which is running at the server side asynchronous able multiple threading. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 |
Microsoft.VisualBasic.Net.FTP
| Type | Summary | Package | Members |
|---|---|---|---|
| FtpAuthenticationException | 认证失败异常。 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
0 |
| FtpAuthenticationException | 认证失败异常。 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
0 |
| FtpClient | FTP 客户端,基于 BCL TcpClient + SslStream 从头实现。 模仿 HttpClient 异步设计模式。 注意: 此类非线程安全,请勿从多线程同时操作同一实例。 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
21 |
| FtpClient | FTP 客户端,基于 BCL TcpClient + SslStream 从头实现。 模仿 HttpClient 异步设计模式。 注意: 此类非线程安全,请勿从多线程同时操作同一实例。 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
21 |
| FtpClientOptions | FTP 客户端配置选项。 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
6 |
| FtpClientOptions | FTP 客户端配置选项。 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
6 |
| FtpConnectionException | 连接失败异常。 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
0 |
| FtpConnectionException | 连接失败异常。 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
0 |
| FtpCredentials | FTP 登录凭据。 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| FtpCredentials | FTP 登录凭据。 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
| FtpDownloadProgress | 文件下载进度信息。 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 |
| FtpDownloadProgress | 文件下载进度信息。 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 |
| FtpException | FTP 异常基类。 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 |
| FtpException | FTP 异常基类。 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 |
| FtpFileInfo | 远程文件信息。 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| FtpFileInfo | 远程文件信息。 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
| FtpFileNotFoundException | 文件未找到异常 (550)。 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
0 |
| FtpFileNotFoundException | 文件未找到异常 (550)。 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
0 |
| FtpProtocolException | 协议错误异常。 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
0 |
| FtpProtocolException | 协议错误异常。 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
0 |
| FtpResponse | FTP 服务器响应。 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 |
| FtpResponse | FTP 服务器响应。 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 |
Microsoft.VisualBasic.Net.Http
| Type | Summary | Package | Members |
|---|---|---|---|
| Base64Codec | Tools API for encoded the image into a base64 string. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
10 |
| Base64Codec | Tools API for encoded the image into a base64 string. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
10 |
| DataURI | Data URI scheme | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
10 |
| DataURI | Data URI scheme | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
10 |
| GZipStreamHandler | 请注意,这个模块是处理http请求或者响应之中的gzip压缩的数据, 对于zip压缩的数据需要使用ZipStreamExtensions模块之中的帮助函数来完成 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
8 |
| GZipStreamHandler | 请注意,这个模块是处理http请求或者响应之中的gzip压缩的数据, 对于zip压缩的数据需要使用ZipStreamExtensions模块之中的帮助函数来完成 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
8 |
| HTTP_RFC | The following is a list of Hypertext Transfer Protocol (HTTP) response status codes. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
156 |
| HTTP_RFC | The following is a list of Hypertext Transfer Protocol (HTTP) response status codes. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
156 |
| HttpClientFactory | Shared, configured HttpClient infrastructure used to replace the obsolete HttpWebRequest/WebRequest API. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
11 |
| HttpClientFactory | Shared, configured HttpClient infrastructure used to replace the obsolete HttpWebRequest/WebRequest API. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
11 |
| HttpHeaderName | 可在服务器响应中指定的 HTTP 标头。 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
41 |
| HttpHeaderName | 可在服务器响应中指定的 HTTP 标头。 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
41 |
| HttpHeaderNameExtensions | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 | |
| HttpHeaderNameExtensions | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 | |
| IHttpGet | the abstract model for the http proxy get request | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 |
| IHttpGet | the abstract model for the http proxy get request | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 |
| MultipartForm | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
8 | |
| MultipartForm | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
8 | |
| RequestBuilder | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 | |
| RequestBuilder | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 | |
| sitemap | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 | |
| sitemap | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 | |
| URL | Parse the url components inside a given url string as clr object | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
15 |
| URL | Parse the url components inside a given url string as clr object | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
15 |
| UserAgent | List of user-agent that can be using in the http GET | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
8 |
| UserAgent | List of user-agent that can be using in the http GET | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
8 |
| WebQuery | Context类型参数应该是查询的term的数据类型, 而非返回的查询结果的数据类型 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
18 |
| WebQuery | Context类型参数应该是查询的term的数据类型, 而非返回的查询结果的数据类型 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
18 |
| WebQueryModule | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 | |
| WebQueryModule | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 | |
| WebResponseResult | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
6 | |
| WebResponseResult | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
6 | |
| WebResult | The data structure for represents the search result of the Web search egine. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
6 |
| WebResult | The data structure for represents the search result of the Web search egine. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
6 |
| ZipStreamExtensions | zip magic header: 120, 218 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 |
| ZipStreamExtensions | zip magic header: 120, 218 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 |
Microsoft.VisualBasic.Net.Http.JsonRPC
Microsoft.VisualBasic.Net.LANTools
| Type | Summary | Package | Members |
|---|---|---|---|
| MIB_IPNETROW | MIB_IPNETROW structure returned by GetIpNetTable DO NOT MODIFY THIS STRUCTURE. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
0 |
| MIB_IPNETROW | MIB_IPNETROW structure returned by GetIpNetTable DO NOT MODIFY THIS STRUCTURE. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
0 |
Microsoft.VisualBasic.Net.Protocols.ContentTypes
| Type | Summary | Package | Members |
|---|---|---|---|
| ContentType | MIME types / Internet Media Types | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
6 |
| ContentType | MIME types / Internet Media Types | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
6 |
| ContentTypeAttribute | MIME types / Internet Media Types attribute data that tagged on the content generator class or module | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 |
| ContentTypeAttribute | MIME types / Internet Media Types attribute data that tagged on the content generator class or module | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 |
| MIME | MIME stands for "Multipurpose Internet Mail Extensions. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
16 |
| MIME | MIME stands for "Multipurpose Internet Mail Extensions. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
16 |
Microsoft.VisualBasic.Net.Tcp
| Type | Summary | Package | Members |
|---|---|---|---|
| IPUtils | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 | |
| IPUtils | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 | |
| IPv4 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
27 | |
| IPv4 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
27 | |
| TCPExtensions | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
7 | |
| TCPExtensions | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
7 |
Microsoft.VisualBasic.Net.WebClient
| Type | Summary | Package | Members |
|---|---|---|---|
| Axel | linux axel liked multiple thread http file download module | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 |
| Axel | linux axel liked multiple thread http file download module | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 |
| FtpContext | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 | |
| FtpContext | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 | |
| FtpDownloader | 基于 FtpClient 实现的 FTP 文件下载器。 用于替代基于已过时 FtpWebRequest 的旧实现。 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 |
| FtpDownloader | 基于 FtpClient 实现的 FTP 文件下载器。 用于替代基于已过时 FtpWebRequest 的旧实现。 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 |
| WebClient | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 | |
| WebClient | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 | |
| wget | 命令行下的下载程序组件 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
8 |
| wget | 命令行下的下载程序组件 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
8 |
| wgetTask | 提供一些比较详细的数据信息和事件处理 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
14 |
| wgetTask | 提供一些比较详细的数据信息和事件处理 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
14 |
Microsoft.VisualBasic.Parallel
| Type | Summary | Package | Members |
|---|---|---|---|
| BufferPipe | the abstract base type of the package data | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 |
| BufferPipe | the abstract base type of the package data | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 |
| DataPipe | a MemoryStream liked in-memory data | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
7 |
| DataPipe | a MemoryStream liked in-memory data | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
7 |
| DataRequestHandler | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 | |
| DataRequestHandler | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 | |
| GroupResult | 分组操作的结果 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 |
| GroupResult | 分组操作的结果 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 |
| ParallelExtension | Parallel based on the threading | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 |
| ParallelExtension | Parallel based on the threading | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 |
| RequestStream | Socket user client => Socket server data request & Socket server => Socket user client data response package. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
40 |
| RequestStream | Socket user client => Socket server data request & Socket server => Socket user client data response package. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
40 |
| ThreadQueue | 任务线程队列 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
14 |
| ThreadQueue | 任务线程队列 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
14 |
| TimeOutAPI | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 | |
| TimeOutAPI | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 | |
| VectorTask | the parallel task helper | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
15 |
| VectorTask | the parallel task helper | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
15 |
| ZipDataPipe | compress the in-memory buffer data | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 |
| ZipDataPipe | compress the in-memory buffer data | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 |
Microsoft.VisualBasic.Parallel.Linq
| Type | Summary | Package | Members |
|---|---|---|---|
| LQuerySchedule | Parallel Linq query library for VisualBasic. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
9 |
| LQuerySchedule | Parallel Linq query library for VisualBasic. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
9 |
| TaskPartitions | 对大量的短时间的任务进行分区的操作是在这里完成的 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
9 |
| TaskPartitions | 对大量的短时间的任务进行分区的操作是在这里完成的 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
9 |
Microsoft.VisualBasic.Parallel.Linq.TaskPartitions
| Type | Summary | Package | Members |
|---|---|---|---|
| __taskHelper | 因为在上一层调用之中使用了并行化,所以在这里不能够使用并行化拓展了 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
0 |
| __taskHelper | 因为在上一层调用之中使用了并行化,所以在这里不能够使用并行化拓展了 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
0 |
Microsoft.VisualBasic.Parallel.MMFProtocol
| Type | Summary | Package | Members |
|---|---|---|---|
| DataArrival | 客户端接受到的数据需要经过反序列化解码方能读取 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| DataArrival | 客户端接受到的数据需要经过反序列化解码方能读取 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
| MMFSocket | MMFProtocol socket object for the inter-process communication on the localhost, this can be using for the data exchange between two process. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
15 |
| MMFSocket | MMFProtocol socket object for the inter-process communication on the localhost, this can be using for the data exchange between two process. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
15 |
| ProcessLock | 进程排斥锁 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 |
| ProcessLock | 进程排斥锁 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 |
| ReadNewMessage | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 | |
| ReadNewMessage | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 | |
| WorkFlow | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 | |
| WorkFlow | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 |
Microsoft.VisualBasic.Parallel.MMFProtocol.MapStream
| Type | Summary | Package | Members |
|---|---|---|---|
| MMFStream | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 | |
| MMFStream | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 | |
| MSIOReader | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 | |
| MSIOReader | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 | |
| MSWriter | Memory stream writer | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| MSWriter | Memory stream writer | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
Microsoft.VisualBasic.Parallel.RequestStream
Microsoft.VisualBasic.Parallel.Tasks
| Type | Summary | Package | Members |
|---|---|---|---|
| Actor | This Actor class can be used to call a function which has one parameter, object (T) and returns the result, object (V). | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 |
| Actor | This Actor class can be used to call a function which has one parameter, object (T) and returns the result, object (V). | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 |
| AsyncHandle | Represents the status of an asynchronous operation.(背景线程加载数据) | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
8 |
| AsyncHandle | Represents the status of an asynchronous operation.(背景线程加载数据) | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
8 |
| BackgroundTask | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 | |
| BackgroundTask | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 | |
| CallbackTask | When the task job complete, then the program will notify user code through callback function. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 |
| CallbackTask | When the task job complete, then the program will notify user code through callback function. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 |
| IBackgroundTask | 背景线程的任务抽象 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| IBackgroundTask | 背景线程的任务抽象 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
| IParallelTask | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 | |
| IParallelTask | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 | |
| RevokableTaskLoop | 可以被取消的循环对象 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 |
| RevokableTaskLoop | 可以被取消的循环对象 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 |
| RevokableTaskLoop | 可以被取消的循环对象 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 |
| RevokableTaskLoop | 可以被取消的循环对象 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 |
| Task | 更加底层的线程模式,和LINQ相比不会受到CPU核心数目的限制 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| Task | 更加底层的线程模式,和LINQ相比不会受到CPU核心数目的限制 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
| TaskQueue | 这个只有一条线程来执行 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
13 |
| TaskQueue | 这个只有一条线程来执行 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
13 |
| UpdateThread | Running a specific Action in the background periodically. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
10 |
| UpdateThread | Running a specific Action in the background periodically. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
10 |
Microsoft.VisualBasic.Parallel.Tasks.Actor`2
Microsoft.VisualBasic.Parallel.Tasks.TaskQueue`1
| Type | Summary | Package | Members |
|---|---|---|---|
| TaskWorker | A task | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
9 |
| TaskWorker | A task | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
9 |
Microsoft.VisualBasic.Parallel.Threads
| Type | Summary | Package | Members |
|---|---|---|---|
| ThreadPool | 使用多条线程来执行任务队列,推荐在编写Web服务器的时候使用这个模块来执行任务 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
15 |
| ThreadPool | 使用多条线程来执行任务队列,推荐在编写Web服务器的时候使用这个模块来执行任务 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
15 |
| ThreadStart | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 | |
| ThreadStart | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 |
Microsoft.VisualBasic.Parallel.Threads.ThreadPool
| Type | Summary | Package | Members |
|---|---|---|---|
| __taskInvoke | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 | |
| __taskInvoke | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 |
Microsoft.VisualBasic.Printing
Microsoft.VisualBasic.RegexExtensions
Microsoft.VisualBasic.Scripting
| Type | Summary | Package | Members |
|---|---|---|---|
| Abstract | Delegate function pointer interface for scripting internal. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
0 |
| Abstract | Delegate function pointer interface for scripting internal. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
0 |
| Activity | Display the object instance object json from the type definition by using Activator. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 |
| Activity | Display the object instance object json from the type definition by using Activator. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 |
| CCodeStringLiteralEscape | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 | |
| CCodeStringLiteralEscape | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 | |
| ExternalCall | Shell object for the external script running. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 |
| ExternalCall | Shell object for the external script running. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 |
| InputHandler | Handles the input text string from commandline or scripting, dealing with the conversion of this input string to .NET object in a more easy way. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
24 |
| InputHandler | Handles the input text string from commandline or scripting, dealing with the conversion of this input string to .NET object in a more easy way. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
24 |
| ShellValue | Script shell result. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
9 |
| ShellValue | Script shell result. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
9 |
| TextGrepMethod | 从目标源文本字符串之中进行字符串解析的操作 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| TextGrepMethod | 从目标源文本字符串之中进行字符串解析的操作 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
| TextGrepMethodToken | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 | |
| TextGrepMethodToken | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 | |
| TextGrepScriptEngine | A script object for grep the gene id in the blast output query and subject title. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
14 |
| TextGrepScriptEngine | A script object for grep the gene id in the blast output query and subject title. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
14 |
Microsoft.VisualBasic.Scripting.Abstract
| Type | Summary | Package | Members |
|---|---|---|---|
| FunctionEvaluate | How to make a function calls.(这个是在已经知道了确切的函数对象的前体下才会使用这个进行调用) | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| FunctionEvaluate | How to make a function calls.(这个是在已经知道了确切的函数对象的前体下才会使用这个进行调用) | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
| GetValue | Gets the variable value from runtime. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| GetValue | Gets the variable value from runtime. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
| LoadObject | 在脚本编程之中将用户输入的字符串数据转换为目标类型的方法接口 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| LoadObject | 在脚本编程之中将用户输入的字符串数据转换为目标类型的方法接口 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
| SetValue | Set the variable value to the variable. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| SetValue | Set the variable value to the variable. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
Microsoft.VisualBasic.Scripting.Expressions
| Type | Summary | Package | Members |
|---|---|---|---|
| Aggregate | Helper module for get lambda function by scripting text | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 |
| Aggregate | Helper module for get lambda function by scripting text | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 |
| Aggregates | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
7 | |
| Aggregates | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
7 | |
| ArrayIndex | Expression text helper for vector index | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 |
| ArrayIndex | Expression text helper for vector index | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 |
| IAggregate | Aggregate a numeric vector as a scalar numeric value | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| IAggregate | Aggregate a numeric vector as a scalar numeric value | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
| Selector | The property value selector | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
6 |
| Selector | The property value selector | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
6 |
| StringInterpolation | 简单的字符串插值引擎,可以用来调试字符串表达式的处理结果 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 |
| StringInterpolation | 简单的字符串插值引擎,可以用来调试字符串表达式的处理结果 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 |
Microsoft.VisualBasic.Scripting.Expressions.Selector
Microsoft.VisualBasic.Scripting.MetaData
| Type | Summary | Package | Members |
|---|---|---|---|
| APICategories | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
8 | |
| APICategories | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
8 | |
| Cite | EndNote tags | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
22 |
| Cite | EndNote tags | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
22 |
| FunctionReturns | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 | |
| FunctionReturns | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 | |
| MetaAPI | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 | |
| MetaAPI | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 | |
| OverloadsSignatureHandle | 用于解决函数重载的函数数字签名的属性 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 |
| OverloadsSignatureHandle | 用于解决函数重载的函数数字签名的属性 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 |
| PackageAttribute | This attribute provides a more details information about a namepace package module in your scripting plugins. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
9 |
| PackageAttribute | This attribute provides a more details information about a namepace package module in your scripting plugins. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
9 |
| Parameter | You Cann assign the parameter value using the parameter's alias name in the scripting using this attribute. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
8 |
| Parameter | You Cann assign the parameter value using the parameter's alias name in the scripting using this attribute. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
8 |
| TypeInfo | The clr type reference information. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
12 |
| TypeInfo | The clr type reference information. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
12 |
Microsoft.VisualBasic.Scripting.Runtime
| Type | Summary | Package | Members |
|---|---|---|---|
| BinaryOperator | Binary operator invoker | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
10 |
| BinaryOperator | Binary operator invoker | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
10 |
| Casting | Methods for convert the String to some .NET data types. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
36 |
| Casting | Methods for convert the String to some .NET data types. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
36 |
| CastStringVector | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
18 | |
| CastStringVector | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
18 | |
| ClrConversion | helper for make clr value type conversion | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 |
| ClrConversion | helper for make clr value type conversion | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 |
| ImplictCType | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
9 | |
| ImplictCType | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
9 | |
| IParser | Custom user object parser | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 |
| IParser | Custom user object parser | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 |
| Logics | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
10 | |
| Logics | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
10 | |
| NestedScriptEnvironment | 脚本运行环境(支持作用域嵌套) | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 |
| NestedScriptEnvironment | 脚本运行环境(支持作用域嵌套) | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 |
| NumberConversionRoutines | 这个模块之中包含有安全的将字符串解析为不同的数值类型的方法函数 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
7 |
| NumberConversionRoutines | 这个模块之中包含有安全的将字符串解析为不同的数值类型的方法函数 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
7 |
| OverloadsFunction | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 | |
| OverloadsFunction | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 | |
| ScriptEnvironment | 脚本运行环境 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
9 |
| ScriptEnvironment | 脚本运行环境 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
9 |
| ScriptLoadContext | 脚本专用AssemblyLoadContext: 在运行时解析动态assembly的#imports依赖 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
6 |
| ScriptLoadContext | 脚本专用AssemblyLoadContext: 在运行时解析动态assembly的#imports依赖 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
6 |
| ScriptSlot | 变量槽位:封装变量的类型、值和元数据 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
22 |
| ScriptSlot | 变量槽位:封装变量的类型、值和元数据 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
22 |
| Where | Merge the logical lambda into one lambda function by a specifc logical operation in Logics. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 |
| Where | Merge the logical lambda into one lambda function by a specifc logical operation in Logics. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 |
Microsoft.VisualBasic.Scripting.SymbolBuilder
| Type | Summary | Package | Members |
|---|---|---|---|
| ScriptBuilder | 对StringBuilder对象的拓展,添加了操作符凭借字符串,从而能够让生成代码的操作更加的方便 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
11 |
| ScriptBuilder | 对StringBuilder对象的拓展,添加了操作符凭借字符串,从而能够让生成代码的操作更加的方便 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
11 |
Microsoft.VisualBasic.Scripting.SymbolBuilder.VBLanguage
| Type | Summary | Package | Members |
|---|---|---|---|
| Extensions | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 | |
| Extensions | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 | |
| KeywordProcessor | Keyword processor of the VB.NET language | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 |
| KeywordProcessor | Keyword processor of the VB.NET language | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 |
| Patterns | Regex pattern of VisualBasic language tokens | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
14 |
| Patterns | Regex pattern of VisualBasic language tokens | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
14 |
Microsoft.VisualBasic.Scripting.TokenIcer
| Type | Summary | Package | Members |
|---|---|---|---|
| CodeSpan | 目标Token对象在原始代码文本之中的定位位置 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 |
| CodeSpan | 目标Token对象在原始代码文本之中的定位位置 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 |
| CodeToken | a Token object class, This defines the Token object | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
10 |
| CodeToken | a Token object class, This defines the Token object | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
10 |
| OperatorExpression | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 | |
| OperatorExpression | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 | |
| ParserCommon | Generally expression parser codes | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
9 |
| ParserCommon | Generally expression parser codes | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
9 |
| StackStates | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
6 | |
| StackStates | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
6 | |
| TokenStack | A general script token stack helper | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 |
| TokenStack | A general script token stack helper | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 |
Microsoft.VisualBasic.SecurityString
| Type | Summary | Package | Members |
|---|---|---|---|
| AES | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 | |
| AES | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 | |
| MD5Hash | Represents the abstract class from which all implementations of the System.Security.Cryptography.MD5 hash algorithm inherit. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
15 |
| MD5Hash | Represents the abstract class from which all implementations of the System.Security.Cryptography.MD5 hash algorithm inherit. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
15 |
| Md5HashProvider | 并行化的需求 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
6 |
| Md5HashProvider | 并行化的需求 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
6 |
| SHA256 | Derives a SHA256 key from a password using an extension of the PBKDF1 algorithm. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
14 |
| SHA256 | Derives a SHA256 key from a password using an extension of the PBKDF1 algorithm. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
14 |
| TripleDES | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
6 | |
| TripleDES | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
6 |
Microsoft.VisualBasic.Serialization
| Type | Summary | Package | Members |
|---|---|---|---|
| ConfigurationMappings | 最基本的思想是将属性值按照同名属性名称在A和B两个对象类型之间进行映射,即A与B两个对象之间必须要具备相同的属性名称,才可以产生映射,请注意在本对象之中仅能够映射最基本的值类型的数据类型 对于一些自定义的映射操作,请在目标数据模型之中定义自定义的映射函数,要求为函数只有一个参数,参数类型和返回值类型分别为映射的两个节点的数据类型,程序会使用反射自动查找 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
7 |
| ConfigurationMappings | 最基本的思想是将属性值按照同名属性名称在A和B两个对象类型之间进行映射,即A与B两个对象之间必须要具备相同的属性名称,才可以产生映射,请注意在本对象之中仅能够映射最基本的值类型的数据类型 对于一些自定义的映射操作,请在目标数据模型之中定义自定义的映射函数,要求为函数只有一个参数,参数类型和返回值类型分别为映射的两个节点的数据类型,程序会使用反射自动查找 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
7 |
| DynamicsConfiguration | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
9 | |
| DynamicsConfiguration | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
9 | |
| ISerializable | 支持序列化的对象,则这个对象可以被应用于RequestStream数据载体的网络传输操作过程 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 |
| ISerializable | 支持序列化的对象,则这个对象可以被应用于RequestStream数据载体的网络传输操作过程 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 |
| IStringBuilder | 将目标对象序列化为文本字符串的字符串构造方法 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| IStringBuilder | 将目标对象序列化为文本字符串的字符串构造方法 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
| IStringParser | 数据类型转换方法的句柄对象 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| IStringParser | 数据类型转换方法的句柄对象 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
| IToString | delegate for generic cast object to string | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| IToString | delegate for generic cast object to string | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
| MappingsIgnored | 这个属性或者方法不会被用于映射 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
0 |
| MappingsIgnored | 这个属性或者方法不会被用于映射 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
0 |
| NodeMapping | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
9 | |
| NodeMapping | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
9 | |
| RawStream | 原始串流的基本模型,这个流对象应该具备有两个基本的方法: 1. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
15 |
| RawStream | 原始串流的基本模型,这个流对象应该具备有两个基本的方法: 1. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
15 |
| UseCustomMapping | 不会使用系统自带的映射方法进行映射 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
0 |
| UseCustomMapping | 不会使用系统自带的映射方法进行映射 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
0 |
Microsoft.VisualBasic.Serialization.Bencoding
| Type | Summary | Package | Members |
|---|---|---|---|
| BDictionary | A bencode dictionary. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
6 |
| BDictionary | A bencode dictionary. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
6 |
| BElement | An interface for bencoded elements. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 |
| BElement | An interface for bencoded elements. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 |
| BencodeDecoder | A class used for decoding Bencoding. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 |
| BencodeDecoder | A class used for decoding Bencoding. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 |
| BencodingException | A bencoding exception. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| BencodingException | A bencoding exception. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
| BencodingExtensions | A class with extension methods for use with Bencoding. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 |
| BencodingExtensions | A class with extension methods for use with Bencoding. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 |
| BInteger | A bencode integer. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
10 |
| BInteger | A bencode integer. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
10 |
| BList | A bencode list. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 |
| BList | A bencode list. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 |
| BString | A bencode string. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
10 |
| BString | A bencode string. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
10 |
Microsoft.VisualBasic.Serialization.BinaryDumping
| Type | Summary | Package | Members |
|---|---|---|---|
| Buffer | A biffer object with byte length prefix | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
7 |
| Buffer | A biffer object with byte length prefix | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
7 |
| BufferAPI | 适用于对变长的流的操作 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 |
| BufferAPI | 适用于对变长的流的操作 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 |
| DoVisitObject | Do serialization or count memory size by this interface method | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| DoVisitObject | Do serialization or count memory size by this interface method | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
| NetworkByteOrderBuffer | ensure that the number is converted as bytes always in network byte order outputs. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
18 |
| NetworkByteOrderBuffer | ensure that the number is converted as bytes always in network byte order outputs. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
18 |
| ObjectOutputStream | clr object binary serialization helper | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 |
| ObjectOutputStream | clr object binary serialization helper | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 |
| ObjectVisitor | A Common framework for visit a object | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
7 |
| ObjectVisitor | A Common framework for visit a object | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
7 |
| StructSerializer | Some times these method is not works well, not sure why? | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
6 |
| StructSerializer | Some times these method is not works well, not sure why? | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
6 |
Microsoft.VisualBasic.Serialization.JSON
| Type | Summary | Package | Members |
|---|---|---|---|
| AnonymousJSONExtensions | Extension helpers for deal with the anonymous type | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
7 |
| AnonymousJSONExtensions | Extension helpers for deal with the anonymous type | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
7 |
| JsonContract | Only works on the Public visible type. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
21 |
| JsonContract | Only works on the Public visible type. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
21 |
| Markdown | Markdown doc generator for the json schema | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
0 |
| Markdown | Markdown doc generator for the json schema | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
0 |
| Schema | Here is a basic example of a JSON Schema: json { "title": "Example Schema", "type": "object", "properties": { "firstName": { "type": "string"… | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 |
| Schema | Here is a basic example of a JSON Schema: json { "title": "Example Schema", "type": "object", "properties": { "firstName": { "type": "string"… | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 |
| VisualBasicCode | Generates the VisualBasic source code from json schema | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
0 |
| VisualBasicCode | Generates the VisualBasic source code from json schema | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
0 |
Microsoft.VisualBasic.Serialization.JSON.Formatter
| Type | Summary | Package | Members |
|---|---|---|---|
| JsonFormatter | Provides JSON formatting functionality. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 |
| JsonFormatter | Provides JSON formatting functionality. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 |
Microsoft.VisualBasic.Serialization.JSON.Formatter.Internals.Strategies
| Type | Summary | Package | Members |
|---|---|---|---|
| CloseBracketStrategy | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 | |
| CloseBracketStrategy | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 | |
| CloseSquareBracketStrategy | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 | |
| CloseSquareBracketStrategy | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 | |
| CommaStrategy | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 | |
| CommaStrategy | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 | |
| OpenBracketStrategy | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 | |
| OpenBracketStrategy | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 | |
| OpenSquareBracketStrategy | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 | |
| OpenSquareBracketStrategy | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 |
Microsoft.VisualBasic.Text
| Type | Summary | Package | Members |
|---|---|---|---|
| ASCII | ASCII (American Standard Code for Information Interchange,美国信息互换标准代码,ASCⅡ) 是基于拉丁字母的一套电脑编码系统。 它主要用于显示现代英语和其他西欧语言。它是现今最通用的单字节编码系统,并等同于国际标准ISO/IEC 646。 ASCII第一次以规范标准的型态发表是在1967年,最后一… | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
94 |
| ASCII | ASCII (American Standard Code for Information Interchange,美国信息互换标准代码,ASCⅡ) 是基于拉丁字母的一套电脑编码系统。 它主要用于显示现代英语和其他西欧语言。它是现今最通用的单字节编码系统,并等同于国际标准ISO/IEC 646。 ASCII第一次以规范标准的型态发表是在1967年,最后一… | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
94 |
| BufferedLineReader | 按字节定位、以 0x0A 切行的缓冲读取器(顺带剥离结尾 CR)。 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 |
| BufferedLineReader | 按字节定位、以 0x0A 切行的缓冲读取器(顺带剥离结尾 CR)。 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 |
| EncodingHelper | Helper for Encodings | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 |
| EncodingHelper | Helper for Encodings | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 |
| Encodings | The text document encodings constant for text file read and write | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
14 |
| Encodings | The text document encodings constant for text file read and write | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
14 |
| GB2312 | A helper module for processing of the chinese characters | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
17 |
| GB2312 | A helper module for processing of the chinese characters | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
17 |
| GreekAlphabets | Processing for the chemical compound name/genome species scientific name. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
6 |
| GreekAlphabets | Processing for the chemical compound name/genome species scientific name. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
6 |
| Paragraph | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 | |
| Paragraph | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 | |
| PartitionedStream | 只是针对文本文件的 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
8 |
| PartitionedStream | 只是针对文本文件的 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
8 |
| Splitter | Split strings with support to multi-character, multi-lines Delimiter | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 |
| Splitter | Split strings with support to multi-character, multi-lines Delimiter | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 |
| TextEncodings | 表示字符编码。若要浏览此类型的.NET Framework 源代码,请参阅 Reference Source。 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
15 |
| TextEncodings | 表示字符编码。若要浏览此类型的.NET Framework 源代码,请参阅 Reference Source。 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
15 |
| TextFileEncodingDetector | Encoding fileEncoding = TextFileEncodingDetector.DetectTextFileEncoding("you file path",Encoding.Default); | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
7 |
| TextFileEncodingDetector | Encoding fileEncoding = TextFileEncodingDetector.DetectTextFileEncoding("you file path",Encoding.Default); | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
7 |
| UnbufferedStreamReader | 提供无缓冲的按行读取文本流的功能。 用于避免 StreamReader 内部缓冲区导致流位置超出实际内容末尾的问题。 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| UnbufferedStreamReader | 提供无缓冲的按行读取文本流的功能。 用于避免 StreamReader 内部缓冲区导致流位置超出实际内容末尾的问题。 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
| UnbufferedStringReader | Represents a reader that can read a sequential series of characters. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
7 |
| UnbufferedStringReader | Represents a reader that can read a sequential series of characters. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
7 |
Microsoft.VisualBasic.Text.ASCII
Microsoft.VisualBasic.Text.Levenshtein
| Type | Summary | Package | Members |
|---|---|---|---|
| LevenshteinString | The string like helper | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
6 |
| LevenshteinString | The string like helper | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
6 |
| LevenshteinTree | a text string similarity index | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 |
| LevenshteinTree | a text string similarity index | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 |
| LevenshteinTreeIndex | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 | |
| LevenshteinTreeIndex | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 | |
| LevExtensions | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 | |
| LevExtensions | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 |
Microsoft.VisualBasic.Text.Parser
| Type | Summary | Package | Members |
|---|---|---|---|
| CharBuffer | A buffer list of the characters | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
25 |
| CharBuffer | A buffer list of the characters | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
25 |
| CharPtr | Char enumerator | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
9 |
| CharPtr | Char enumerator | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
9 |
| DelimiterParser | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 | |
| DelimiterParser | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 | |
| FormattedParser | Parser API for the well formatted documents. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
6 |
| FormattedParser | Parser API for the well formatted documents. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
6 |
| ParserHelpers | Helpers for text parser | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 |
| ParserHelpers | Helpers for text parser | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 |
| ParserValue | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 | |
| ParserValue | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 | |
| Scanner | 模拟Java Scanner类功能的VB.NET类。 注意:此类未实现Java Scanner的所有方法,仅提供核心功能。 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
15 |
| Scanner | 模拟Java Scanner类功能的VB.NET类。 注意:此类未实现Java Scanner的所有方法,仅提供核心功能。 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
15 |
| TryParseOptions | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
6 | |
| TryParseOptions | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
6 |
Microsoft.VisualBasic.Text.Parser.FormattedParser
| Type | Summary | Package | Members |
|---|---|---|---|
| DoContinute | Condition for continue move the parser pointer. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| DoContinute | Condition for continue move the parser pointer. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
Microsoft.VisualBasic.Text.Parser.HtmlParser
| Type | Summary | Package | Members |
|---|---|---|---|
| HtmlStrips | Html text document operations for a given html text | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
25 |
| HtmlStrips | Html text document operations for a given html text | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
25 |
| TableParser | The string parser for the table html text block | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 |
| TableParser | The string parser for the table html text block | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 |
| TagAttributeParser | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
10 | |
| TagAttributeParser | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
10 |
Microsoft.VisualBasic.Text.Patterns
| Type | Summary | Package | Members |
|---|---|---|---|
| CommonTagParser | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
11 | |
| CommonTagParser | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
11 | |
| Regexp | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
8 | |
| Regexp | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
8 | |
| WildcardsExtension | Extensions to String by using wildcards to match string ###### A very simple wildcard match > https://github.com/picrap/WildcardMatch | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 |
| WildcardsExtension | Extensions to String by using wildcards to match string ###### A very simple wildcard match > https://github.com/picrap/WildcardMatch | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 |
Microsoft.VisualBasic.Text.Patterns.Validator
Microsoft.VisualBasic.Text.Search
| Type | Summary | Package | Members |
|---|---|---|---|
| TextIndexing | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
7 | |
| TextIndexing | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
7 | |
| TextSegment | 文本之中的一个片段 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
6 |
| TextSegment | 文本之中的一个片段 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
6 |
Microsoft.VisualBasic.Text.Similarity
| Type | Summary | Package | Members |
|---|---|---|---|
| DirectTextComparer | A wrapper of the StringHelpers.TextEquals()) function | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 |
| DirectTextComparer | A wrapper of the StringHelpers.TextEquals()) function | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 |
| Evaluations | text string similarity evaluation module | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
9 |
| Evaluations | text string similarity evaluation module | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
9 |
| ISimilarity | Summary description for StringMatcher. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| ISimilarity | Summary description for StringMatcher. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
| StringEqualityHelper | thresholds: + 0: text equals + 1: binary equals + (0, 1): similarity threshold | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
7 |
| StringEqualityHelper | thresholds: + 0: text equals + 1: binary equals + (0, 1): similarity threshold | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
7 |
Microsoft.VisualBasic.Text.Xml
| Type | Summary | Package | Members |
|---|---|---|---|
| Extensions | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
7 | |
| Extensions | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
7 | |
| HtmlBuilder | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 | |
| HtmlBuilder | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 | |
| IXmlDocumentTree | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 | |
| IXmlDocumentTree | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 | |
| IXmlNode | includes tree node and text node | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 |
| IXmlNode | includes tree node and text node | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 |
| XmlDeclaration | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
10 | |
| XmlDeclaration | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
10 | |
| XmlDoc | 请使用XmlDoc.ToString()方法获取修改之后的Xml文档 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
15 |
| XmlDoc | 请使用XmlDoc.ToString()方法获取修改之后的Xml文档 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
15 |
| XmlEntity | https://en.wikipedia.org/wiki/List_of_XML_and_HTML_character_entity_references | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
6 |
| XmlEntity | https://en.wikipedia.org/wiki/List_of_XML_and_HTML_character_entity_references | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
6 |
| Xmlns | Xml namespace | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
12 |
| Xmlns | Xml namespace | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
12 |
Microsoft.VisualBasic.Text.Xml.Linq
| Type | Summary | Package | Members |
|---|---|---|---|
| Data | Using large xml file as Linq data source | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
18 |
| Data | Using large xml file as Linq data source | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
18 |
| DataSetWriter | Write a very large dataset in Xml format | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 |
| DataSetWriter | Write a very large dataset in Xml format | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 |
| DeserializeHandler | The xml deserialize helper | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 |
| DeserializeHandler | The xml deserialize helper | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 |
| NamespaceIgnorantXmlTextReader | https://stackoverflow.com/questions/12590487/net-xml-deserialization-ignore-namespaces | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
0 |
| NamespaceIgnorantXmlTextReader | https://stackoverflow.com/questions/12590487/net-xml-deserialization-ignore-namespaces | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
0 |
| NodeIterator | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 | |
| NodeIterator | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 | |
| XmlStreamReader | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 | |
| XmlStreamReader | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
Microsoft.VisualBasic.Text.Xml.Models
| Type | Summary | Package | Members |
|---|---|---|---|
| Coordinate | Improvements on the xml format layout compare with PointF type. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
8 |
| Coordinate | Improvements on the xml format layout compare with PointF type. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
8 |
| Href | Resource link data. | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 |
| Href | Resource link data. | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 |
| KeyValuePair | An object for the text file format xml data storage.(用于存储与XML文件之中的字符串键值对对象) | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
9 |
| KeyValuePair | An object for the text file format xml data storage.(用于存储与XML文件之中的字符串键值对对象) | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
9 |
| LineValue | 代码行的模型? | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| LineValue | 代码行的模型? | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
| ListOf | 可以通过CollectionValueGetter.AsEnumerable())拓展函数转换这个列表对象为枚举类型 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 |
| ListOf | 可以通过CollectionValueGetter.AsEnumerable())拓展函数转换这个列表对象为枚举类型 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 |
| NamedValue | A key-value pair data for xml | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 |
| NamedValue | A key-value pair data for xml | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 |
| NamedVector | 在这里不实现IEnumerable是为了方便的实现XML序列化操作 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
5 |
| NamedVector | 在这里不实现IEnumerable是为了方便的实现XML序列化操作 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
5 |
| NumericVector | A Double type numeric sequence container | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
9 |
| NumericVector | A Double type numeric sequence container | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
9 |
| Property | Property Info (Property Name and Property Value). | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
4 |
| Property | Property Info (Property Name and Property Value). | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
4 |
| PropertyValue | 用于读写tsv/XML文件格式的键值对数据 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
6 |
| PropertyValue | 用于读写tsv/XML文件格式的键值对数据 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
6 |
| Sequence | A numeric sequence model | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
6 |
| Sequence | A numeric sequence model | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
6 |
| StringValue | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
2 | |
| StringValue | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
2 | |
| TermsVector | a collection of the string terms | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| TermsVector | a collection of the string terms | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
| XmlBuilder | Builder for XML and html | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
6 |
| XmlBuilder | Builder for XML and html | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
6 |
| XmlList | a general list model for export a collection of the clr object to a single xml file | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| XmlList | a general list model for export a collection of the clr object to a single xml file | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
Microsoft.VisualBasic.Text.Xml.Models.KeyValuePair
| Type | Summary | Package | Members |
|---|---|---|---|
| IKeyValuePair | Defines a key/value pair that can be set or retrieved.(特化的IKeyValuePairObject字符串属性类型) | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
0 |
| IKeyValuePair | Defines a key/value pair that can be set or retrieved.(特化的IKeyValuePairObject字符串属性类型) | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
0 |
Microsoft.VisualBasic.Text.Xml.OpenXml
| Type | Summary | Package | Members |
|---|---|---|---|
| ContentTypes | [Content_Types].xml | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| ContentTypes | [Content_Types].xml | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
Microsoft.VisualBasic.ValueTypes
| Type | Summary | Package | Members |
|---|---|---|---|
| DateTimeHelper | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
13 | |
| DateTimeHelper | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
13 | |
| RangeExtensions | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
1 | |
| RangeExtensions | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
1 | |
| TimeSpanScale | 时间单位 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
7 |
| TimeSpanScale | 时间单位 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
7 |
Microsoft.VisualBasic.VBDebugger
| Type | Summary | Package | Members |
|---|---|---|---|
| LoggingDriver | 对外部开放的调试日志的获取接口类型的申明 | Microsoft.VisualBasic.Runtime 10.5.9753.4776 |
3 |
| LoggingDriver | 对外部开放的调试日志的获取接口类型的申明 | Microsoft.VisualBasic.Runtime 10.5.9762.11310 |
3 |
R_graphics.Common.Runtime
| Type | Summary | Package | Members |
|---|---|---|---|
| graphics | R_graphics.Common.Runtime 1.0.0 |
7 | |
| graphicsDevice | the internal graphics device handle of the R# environment | R_graphics.Common.Runtime 1.0.0 |
12 |
SMRUCC.genomics
| Type | Summary | Package | Members |
|---|---|---|---|
| BioAssemblyExtensions | Extension methods for some common operations | SMRUCC.genomics.Core 10.5.9753.40023 |
15 |
| BioAssemblyExtensions | Extension methods for some common operations | SMRUCC.genomics.Core 10.5.9762.7562 |
9 |
| LICENSE | ᶘ ᵒᴥᵒᶅ???? | SMRUCC.genomics.Core 10.5.9753.40023 |
6 |
| LICENSE | ᶘ ᵒᴥᵒᶅ???? | SMRUCC.genomics.Core 10.5.9762.7562 |
6 |
SMRUCC.genomics.Analysis.BNLearn
| Type | Summary | Package | Members |
|---|---|---|---|
| Effector | effects of the effector to the TF protein | SMRUCC.genomics.Analysis.BNLearn 1.0.9753.40023 |
3 |
| Effector | effects of the effector to the TF protein | SMRUCC.genomics.Analysis.BNLearn 1.0.9762.7562 |
3 |
| RegulatoryLink | Gene regulatory network | SMRUCC.genomics.Analysis.BNLearn 1.0.9753.40023 |
8 |
| RegulatoryLink | Gene regulatory network | SMRUCC.genomics.Analysis.BNLearn 1.0.9762.7562 |
8 |
SMRUCC.genomics.Analysis.BNLearn.Core
| Type | Summary | Package | Members |
|---|---|---|---|
| BayesianNetwork | 贝叶斯网络 —— DAG 结构 | SMRUCC.genomics.Analysis.BNLearn 1.0.9753.40023 |
23 |
| BayesianNetwork | 贝叶斯网络 —— DAG 结构 | SMRUCC.genomics.Analysis.BNLearn 1.0.9762.7562 |
23 |
| BnCPD | 高斯条件概率分布参数 Xi | Pa(Xi) ~ N(β0 + β1·Pa1 + β2·Pa2 + ... | SMRUCC.genomics.Analysis.BNLearn 1.0.9753.40023 |
14 |
| BnCPD | 高斯条件概率分布参数 Xi | Pa(Xi) ~ N(β0 + β1·Pa1 + β2·Pa2 + ... | SMRUCC.genomics.Analysis.BNLearn 1.0.9762.7562 |
14 |
| BNLearnWorkflow | BNLearn 工作流 —— 基因表达调控网络建模与虚拟干扰分析 | SMRUCC.genomics.Analysis.BNLearn 1.0.9753.40023 |
52 |
| BNLearnWorkflow | BNLearn 工作流 —— 基因表达调控网络建模与虚拟干扰分析 | SMRUCC.genomics.Analysis.BNLearn 1.0.9762.7562 |
52 |
| BnNode | 贝叶斯网络节点 —— 对应一个基因 | SMRUCC.genomics.Analysis.BNLearn 1.0.9753.40023 |
7 |
| BnNode | 贝叶斯网络节点 —— 对应一个基因 | SMRUCC.genomics.Analysis.BNLearn 1.0.9762.7562 |
7 |
| GeneExpressionData | 基因表达矩阵 行 = 基因,列 = 样本(可能包含多个时间点) | SMRUCC.genomics.Analysis.BNLearn 1.0.9753.40023 |
16 |
| GeneExpressionData | 基因表达矩阵 行 = 基因,列 = 样本(可能包含多个时间点) | SMRUCC.genomics.Analysis.BNLearn 1.0.9762.7562 |
16 |
| InterventionCPD | 被干预节点的 CPD —— 用于虚拟敲除/过表达 将节点值固定为常数,忽略所有父节点 | SMRUCC.genomics.Analysis.BNLearn 1.0.9753.40023 |
6 |
| InterventionCPD | 被干预节点的 CPD —— 用于虚拟敲除/过表达 将节点值固定为常数,忽略所有父节点 | SMRUCC.genomics.Analysis.BNLearn 1.0.9762.7562 |
6 |
| PriorNetwork | 先验调控网络 | SMRUCC.genomics.Analysis.BNLearn 1.0.9753.40023 |
8 |
| PriorNetwork | 先验调控网络 | SMRUCC.genomics.Analysis.BNLearn 1.0.9762.7562 |
8 |
| RegulatoryEdge | 转录调控关系 | SMRUCC.genomics.Analysis.BNLearn 1.0.9753.40023 |
6 |
| RegulatoryEdge | 转录调控关系 | SMRUCC.genomics.Analysis.BNLearn 1.0.9762.7562 |
6 |
SMRUCC.genomics.Analysis.BNLearn.Core.InterventionCPD
| Type | Summary | Package | Members |
|---|---|---|---|
| InterventionMode | SMRUCC.genomics.Analysis.BNLearn 1.0.9753.40023 |
4 | |
| InterventionMode | SMRUCC.genomics.Analysis.BNLearn 1.0.9762.7562 |
4 |
SMRUCC.genomics.Analysis.BNLearn.DBN
| Type | Summary | Package | Members |
|---|---|---|---|
| ActivationModel | 节点激活模型的预计算结果:把 TF / effector 的父下标与调控方向解析成定长数组。 原始实现在每一个父配置里都要对 ParentIds 做 IndexOf 字符串查找, 单次 O(P) 比较 × 每个配置 O(P) 次 = O(P²),在 3^P 个配置上总复杂度为 O(3^P·P²)。 预计算之后每个配置只需 O(P) 次数组取值,无字… | SMRUCC.genomics.Analysis.BNLearn 1.0.9753.40023 |
4 |
| ActivationModel | 节点激活模型的预计算结果:把 TF / effector 的父下标与调控方向解析成定长数组。 原始实现在每一个父配置里都要对 ParentIds 做 IndexOf 字符串查找, 单次 O(P) 比较 × 每个配置 O(P) 次 = O(P²),在 3^P 个配置上总复杂度为 O(3^P·P²)。 预计算之后每个配置只需 O(P) 次数组取值,无字… | SMRUCC.genomics.Analysis.BNLearn 1.0.9762.7562 |
4 |
| ConditionalProbabilityTable | Conditional Probability Table (CPT) for a DBN node. | SMRUCC.genomics.Analysis.BNLearn 1.0.9753.40023 |
11 |
| ConditionalProbabilityTable | Conditional Probability Table (CPT) for a DBN node. | SMRUCC.genomics.Analysis.BNLearn 1.0.9762.7562 |
11 |
| DBNConfig | Configuration options for the Dynamic Bayesian Network. | SMRUCC.genomics.Analysis.BNLearn 1.0.9753.40023 |
19 |
| DBNConfig | Configuration options for the Dynamic Bayesian Network. | SMRUCC.genomics.Analysis.BNLearn 1.0.9762.7562 |
19 |
| DBNNode | A node in the Dynamic Bayesian Network. | SMRUCC.genomics.Analysis.BNLearn 1.0.9753.40023 |
10 |
| DBNNode | A node in the Dynamic Bayesian Network. | SMRUCC.genomics.Analysis.BNLearn 1.0.9762.7562 |
10 |
| DBNNodeType | Type of node in the Dynamic Bayesian Network. | SMRUCC.genomics.Analysis.BNLearn 1.0.9753.40023 |
6 |
| DBNNodeType | Type of node in the Dynamic Bayesian Network. | SMRUCC.genomics.Analysis.BNLearn 1.0.9762.7562 |
6 |
| DBNODECoupler | Coupling interface between the DBN and metabolic network ODEs. | SMRUCC.genomics.Analysis.BNLearn 1.0.9753.40023 |
7 |
| DBNODECoupler | Coupling interface between the DBN and metabolic network ODEs. | SMRUCC.genomics.Analysis.BNLearn 1.0.9762.7562 |
7 |
| DBNPredictionResult | Result of a DBN prediction step. | SMRUCC.genomics.Analysis.BNLearn 1.0.9753.40023 |
7 |
| DBNPredictionResult | Result of a DBN prediction step. | SMRUCC.genomics.Analysis.BNLearn 1.0.9762.7562 |
7 |
| DynamicBayesianNetwork | Dynamic Bayesian Network for gene regulatory network simulation. | SMRUCC.genomics.Analysis.BNLearn 1.0.9753.40023 |
34 |
| DynamicBayesianNetwork | Dynamic Bayesian Network for gene regulatory network simulation. | SMRUCC.genomics.Analysis.BNLearn 1.0.9762.7562 |
34 |
SMRUCC.genomics.Analysis.BNLearn.Inference
| Type | Summary | Package | Members |
|---|---|---|---|
| BnInferenceEngine | 概率推断引擎 | SMRUCC.genomics.Analysis.BNLearn 1.0.9753.40023 |
7 |
| BnInferenceEngine | 概率推断引擎 | SMRUCC.genomics.Analysis.BNLearn 1.0.9762.7562 |
7 |
| Extensions | SMRUCC.genomics.Analysis.BNLearn 1.0.9753.40023 |
2 | |
| Extensions | SMRUCC.genomics.Analysis.BNLearn 1.0.9762.7562 |
2 |
SMRUCC.genomics.Analysis.BNLearn.Intervention
| Type | Summary | Package | Members |
|---|---|---|---|
| BnInterventionAnalyzer | 虚拟干扰分析引擎 | SMRUCC.genomics.Analysis.BNLearn 1.0.9753.40023 |
8 |
| BnInterventionAnalyzer | 虚拟干扰分析引擎 | SMRUCC.genomics.Analysis.BNLearn 1.0.9762.7562 |
8 |
| InterventionComparisonExporter | 虚拟扰动结果比较分析导出器 | SMRUCC.genomics.Analysis.BNLearn 1.0.9753.40023 |
20 |
| InterventionComparisonExporter | 虚拟扰动结果比较分析导出器 | SMRUCC.genomics.Analysis.BNLearn 1.0.9762.7562 |
20 |
| InterventionMode | 干预模式 | SMRUCC.genomics.Analysis.BNLearn 1.0.9753.40023 |
8 |
| InterventionMode | 干预模式 | SMRUCC.genomics.Analysis.BNLearn 1.0.9762.7562 |
8 |
| InterventionResult | 干预分析结果 | SMRUCC.genomics.Analysis.BNLearn 1.0.9753.40023 |
14 |
| InterventionResult | 干预分析结果 | SMRUCC.genomics.Analysis.BNLearn 1.0.9762.7562 |
14 |
| InterventionSpec | 单次干预定义 | SMRUCC.genomics.Analysis.BNLearn 1.0.9753.40023 |
6 |
| InterventionSpec | 单次干预定义 | SMRUCC.genomics.Analysis.BNLearn 1.0.9762.7562 |
6 |
SMRUCC.genomics.Analysis.BNLearn.Intervention.InterventionComparisonExporter
| Type | Summary | Package | Members |
|---|---|---|---|
| ComparisonMatrix | 比较矩阵数据结构 | SMRUCC.genomics.Analysis.BNLearn 1.0.9753.40023 |
4 |
| ComparisonMatrix | 比较矩阵数据结构 | SMRUCC.genomics.Analysis.BNLearn 1.0.9762.7562 |
4 |
| ComparisonMetric | 比较指标枚举 | SMRUCC.genomics.Analysis.BNLearn 1.0.9753.40023 |
7 |
| ComparisonMetric | 比较指标枚举 | SMRUCC.genomics.Analysis.BNLearn 1.0.9762.7562 |
7 |
SMRUCC.genomics.Analysis.BNLearn.IO
| Type | Summary | Package | Members |
|---|---|---|---|
| BnIO | 数据读写工具 | SMRUCC.genomics.Analysis.BNLearn 1.0.9753.40023 |
5 |
| BnIO | 数据读写工具 | SMRUCC.genomics.Analysis.BNLearn 1.0.9762.7562 |
5 |
| WriteModel | SMRUCC.genomics.Analysis.BNLearn 1.0.9753.40023 |
2 | |
| WriteModel | SMRUCC.genomics.Analysis.BNLearn 1.0.9762.7562 |
2 |
SMRUCC.genomics.Analysis.BNLearn.ModularNetwork
| Type | Summary | Package | Members |
|---|---|---|---|
| BlockBayesianNetwork | SMRUCC.genomics.Analysis.BNLearn 1.0.9753.40023 |
31 | |
| BlockBayesianNetwork | SMRUCC.genomics.Analysis.BNLearn 1.0.9762.7562 |
31 | |
| BlockDynamics | SMRUCC.genomics.Analysis.BNLearn 1.0.9753.40023 |
2 | |
| BlockDynamics | SMRUCC.genomics.Analysis.BNLearn 1.0.9762.7562 |
2 | |
| BlockModules | SMRUCC.genomics.Analysis.BNLearn 1.0.9753.40023 |
12 | |
| BlockModules | SMRUCC.genomics.Analysis.BNLearn 1.0.9762.7562 |
12 | |
| BlockNetwork | SMRUCC.genomics.Analysis.BNLearn 1.0.9753.40023 |
10 | |
| BlockNetwork | SMRUCC.genomics.Analysis.BNLearn 1.0.9762.7562 |
10 | |
| BlockPropagate | SMRUCC.genomics.Analysis.BNLearn 1.0.9753.40023 |
7 | |
| BlockPropagate | SMRUCC.genomics.Analysis.BNLearn 1.0.9762.7562 |
7 | |
| BlockResponseResult | SMRUCC.genomics.Analysis.BNLearn 1.0.9753.40023 |
6 | |
| BlockResponseResult | SMRUCC.genomics.Analysis.BNLearn 1.0.9762.7562 |
6 | |
| GlobalPerturbationResult | 单个扰动源在全局网络上传播后的结果 | SMRUCC.genomics.Analysis.BNLearn 1.0.9753.40023 |
10 |
| GlobalPerturbationResult | 单个扰动源在全局网络上传播后的结果 | SMRUCC.genomics.Analysis.BNLearn 1.0.9762.7562 |
10 |
| ModularNetworkPipeline | 基于 WGCNA 模块划分的贝叶斯子网络训练 + 全局虚拟扰动流水线 | SMRUCC.genomics.Analysis.BNLearn 1.0.9753.40023 |
36 |
| ModularNetworkPipeline | 基于 WGCNA 模块划分的贝叶斯子网络训练 + 全局虚拟扰动流水线 | SMRUCC.genomics.Analysis.BNLearn 1.0.9762.7562 |
36 |
| ModuleDBN | 单个 WGCNA 模块的 DBN 子网络训练结果容器(模块内部使用,不污染公共 API)。 | SMRUCC.genomics.Analysis.BNLearn 1.0.9753.40023 |
6 |
| ModuleDBN | 单个 WGCNA 模块的 DBN 子网络训练结果容器(模块内部使用,不污染公共 API)。 | SMRUCC.genomics.Analysis.BNLearn 1.0.9762.7562 |
6 |
| PropagationMethod | 全局虚拟扰动的传播方法 | SMRUCC.genomics.Analysis.BNLearn 1.0.9753.40023 |
4 |
| PropagationMethod | 全局虚拟扰动的传播方法 | SMRUCC.genomics.Analysis.BNLearn 1.0.9762.7562 |
4 |
SMRUCC.genomics.Analysis.BNLearn.ModularNetwork.WGCNA
| Type | Summary | Package | Members |
|---|---|---|---|
| GeneModuleColor | WGCNA gene module color assignment result | SMRUCC.genomics.Analysis.BNLearn 1.0.9753.40023 |
4 |
| GeneModuleColor | WGCNA gene module color assignment result | SMRUCC.genomics.Analysis.BNLearn 1.0.9762.7562 |
4 |
| WGCNAFiles | WGCNA module block extensions | SMRUCC.genomics.Analysis.BNLearn 1.0.9753.40023 |
2 |
| WGCNAFiles | WGCNA module block extensions | SMRUCC.genomics.Analysis.BNLearn 1.0.9762.7562 |
2 |
SMRUCC.genomics.Analysis.BNLearn.ParameterLearning
| Type | Summary | Package | Members |
|---|---|---|---|
| BnParameterLearner | 贝叶斯网络参数学习器 | SMRUCC.genomics.Analysis.BNLearn 1.0.9753.40023 |
1 |
| BnParameterLearner | 贝叶斯网络参数学习器 | SMRUCC.genomics.Analysis.BNLearn 1.0.9762.7562 |
1 |
| ParameterLearningResult | 参数学习结果 | SMRUCC.genomics.Analysis.BNLearn 1.0.9753.40023 |
5 |
| ParameterLearningResult | 参数学习结果 | SMRUCC.genomics.Analysis.BNLearn 1.0.9762.7562 |
5 |
SMRUCC.genomics.Analysis.BNLearn.StructureLearning
| Type | Summary | Package | Members |
|---|---|---|---|
| BnStructureLearner | 贝叶斯网络结构学习器 | SMRUCC.genomics.Analysis.BNLearn 1.0.9753.40023 |
30 |
| BnStructureLearner | 贝叶斯网络结构学习器 | SMRUCC.genomics.Analysis.BNLearn 1.0.9762.7562 |
30 |
| StructureAlgorithm | 结构学习算法类型 | SMRUCC.genomics.Analysis.BNLearn 1.0.9753.40023 |
6 |
| StructureAlgorithm | 结构学习算法类型 | SMRUCC.genomics.Analysis.BNLearn 1.0.9762.7562 |
6 |
| StructureLearningParams | 结构学习参数 | SMRUCC.genomics.Analysis.BNLearn 1.0.9753.40023 |
9 |
| StructureLearningParams | 结构学习参数 | SMRUCC.genomics.Analysis.BNLearn 1.0.9762.7562 |
9 |
| StructureLearningResult | 结构学习结果 | SMRUCC.genomics.Analysis.BNLearn 1.0.9753.40023 |
5 |
| StructureLearningResult | 结构学习结果 | SMRUCC.genomics.Analysis.BNLearn 1.0.9762.7562 |
5 |
SMRUCC.genomics.Analysis.BNLearn.StructureLearning.BnStructureLearner
| Type | Summary | Package | Members |
|---|---|---|---|
| EdgeCandidate | 边操作候选项 —— 供外层并行搜索的 thread-local 局部最优归约使用 | SMRUCC.genomics.Analysis.BNLearn 1.0.9753.40023 |
1 |
| EdgeCandidate | 边操作候选项 —— 供外层并行搜索的 thread-local 局部最优归约使用 | SMRUCC.genomics.Analysis.BNLearn 1.0.9762.7562 |
1 |
SMRUCC.genomics.Analysis.CellPhenotype
| Type | Summary | Package | Members |
|---|---|---|---|
| GeneRegulatoryNetwork | WGCNA 共表达网络与 BNLearn 动态贝叶斯网络(DBN)之间的桥接模块。 本模块将 NetworkGraph 形式的 WGCNA 无向共表达网络,按照 转录因子(TF)注释结果定向为有向调控先验,导入 BNLearn 的 高斯贝叶斯网络工作流(BNLearnWorkflow)与动态贝叶斯网络 (DynamicBayesianNetwork… | SMRUCC.genomics.Analysis.CellPhenotype 1.0.9753.40023 |
14 |
| GeneRegulatoryNetwork | WGCNA 共表达网络与 BNLearn 动态贝叶斯网络(DBN)之间的桥接模块。 本模块将 NetworkGraph 形式的 WGCNA 无向共表达网络,按照 转录因子(TF)注释结果定向为有向调控先验,导入 BNLearn 的 高斯贝叶斯网络工作流(BNLearnWorkflow)与动态贝叶斯网络 (DynamicBayesianNetwork… | SMRUCC.genomics.Analysis.CellPhenotype 1.0.9762.7562 |
14 |
| MetabolicNetwork | 代谢网络邻接表结构 | SMRUCC.genomics.Analysis.CellPhenotype 1.0.9753.40023 |
4 |
| MetabolicNetwork | 代谢网络邻接表结构 | SMRUCC.genomics.Analysis.CellPhenotype 1.0.9762.7562 |
4 |
| PPRSolver | Personalized PageRank(PPR)+ 代谢扩散稳态计算 | SMRUCC.genomics.Analysis.CellPhenotype 1.0.9753.40023 |
3 |
| PPRSolver | Personalized PageRank(PPR)+ 代谢扩散稳态计算 | SMRUCC.genomics.Analysis.CellPhenotype 1.0.9762.7562 |
3 |
SMRUCC.genomics.Analysis.GEARS
| Type | Summary | Package | Members |
|---|---|---|---|
| GEARS | GEARS:基于图神经网络的基因表达调控网络虚拟扰动实验 | SMRUCC.genomics.Analysis.GEARS 1.0.9753.40023 |
48 |
| GEARS | GEARS:基于图神经网络的基因表达调控网络虚拟扰动实验 | SMRUCC.genomics.Analysis.GEARS 1.0.9762.7562 |
48 |
| GEARSConfig | GEARS 虚拟扰动实验的超参数配置 | SMRUCC.genomics.Analysis.GEARS 1.0.9753.40023 |
23 |
| GEARSConfig | GEARS 虚拟扰动实验的超参数配置 | SMRUCC.genomics.Analysis.GEARS 1.0.9762.7562 |
23 |
SMRUCC.genomics.Analysis.GEARS.Graph
| Type | Summary | Package | Members |
|---|---|---|---|
| EdgeRelationType | 基因调控图中边的关系类型 | SMRUCC.genomics.Analysis.GEARS 1.0.9753.40023 |
8 |
| EdgeRelationType | 基因调控图中边的关系类型 | SMRUCC.genomics.Analysis.GEARS 1.0.9762.7562 |
8 |
| EdgeRelationTypes | EdgeRelationType 的工具方法集合 | SMRUCC.genomics.Analysis.GEARS 1.0.9753.40023 |
5 |
| EdgeRelationTypes | EdgeRelationType 的工具方法集合 | SMRUCC.genomics.Analysis.GEARS 1.0.9762.7562 |
5 |
| GeneRegulatoryGraph | 基因调控图:由先验调控网络构建用于 GNN 消息传递的异质有向图 | SMRUCC.genomics.Analysis.GEARS 1.0.9753.40023 |
16 |
| GeneRegulatoryGraph | 基因调控图:由先验调控网络构建用于 GNN 消息传递的异质有向图 | SMRUCC.genomics.Analysis.GEARS 1.0.9762.7562 |
16 |
SMRUCC.genomics.Analysis.GEARS.IO
| Type | Summary | Package | Members |
|---|---|---|---|
| GEARSStorage | GEARS 模型的 zip 持久化编解码模块 | SMRUCC.genomics.Analysis.GEARS 1.0.9753.40023 |
25 |
| GEARSStorage | GEARS 模型的 zip 持久化编解码模块 | SMRUCC.genomics.Analysis.GEARS 1.0.9762.7562 |
25 |
| PerturbSeqIO | 真实 Perturb-seq / CROP-seq 数据加载工具 | SMRUCC.genomics.Analysis.GEARS 1.0.9753.40023 |
5 |
| PerturbSeqIO | 真实 Perturb-seq / CROP-seq 数据加载工具 | SMRUCC.genomics.Analysis.GEARS 1.0.9762.7562 |
5 |
| PriorNetworkIO | 先验调控网络的 CSV 读取工具 | SMRUCC.genomics.Analysis.GEARS 1.0.9753.40023 |
8 |
| PriorNetworkIO | 先验调控网络的 CSV 读取工具 | SMRUCC.genomics.Analysis.GEARS 1.0.9762.7562 |
8 |
SMRUCC.genomics.Analysis.GEARS.IO.GEARSStorage
| Type | Summary | Package | Members |
|---|---|---|---|
| ManifestKeys | zip 包清单的字段键名集合 | SMRUCC.genomics.Analysis.GEARS 1.0.9753.40023 |
11 |
| ManifestKeys | zip 包清单的字段键名集合 | SMRUCC.genomics.Analysis.GEARS 1.0.9762.7562 |
11 |
SMRUCC.genomics.Analysis.GEARS.Layers
| Type | Summary | Package | Members |
|---|---|---|---|
| DenseLayer | 全连接层(线性变换层),实现 y = x @ W + b | SMRUCC.genomics.Analysis.GEARS 1.0.9753.40023 |
15 |
| DenseLayer | 全连接层(线性变换层),实现 y = x @ W + b | SMRUCC.genomics.Analysis.GEARS 1.0.9762.7562 |
15 |
| GEARSConvLayer | GEARS 边类型感知的图卷积层 | SMRUCC.genomics.Analysis.GEARS 1.0.9753.40023 |
26 |
| GEARSConvLayer | GEARS 边类型感知的图卷积层 | SMRUCC.genomics.Analysis.GEARS 1.0.9762.7562 |
26 |
| GeneEmbeddingLayer | 基因身份嵌入层(Gene identity embedding) | SMRUCC.genomics.Analysis.GEARS 1.0.9753.40023 |
11 |
| GeneEmbeddingLayer | 基因身份嵌入层(Gene identity embedding) | SMRUCC.genomics.Analysis.GEARS 1.0.9762.7562 |
11 |
| MatOps | 基于 Tensor 底层数组实现的高性能矩阵运算工具 | SMRUCC.genomics.Analysis.GEARS 1.0.9753.40023 |
10 |
| MatOps | 基于 Tensor 底层数组实现的高性能矩阵运算工具 | SMRUCC.genomics.Analysis.GEARS 1.0.9762.7562 |
10 |
SMRUCC.genomics.Analysis.GEARS.Model
| Type | Summary | Package | Members |
|---|---|---|---|
| GEARSModel | GEARS 模型:面向基因表达调控网络虚拟扰动的图神经网络 | SMRUCC.genomics.Analysis.GEARS 1.0.9753.40023 |
21 |
| GEARSModel | GEARS 模型:面向基因表达调控网络虚拟扰动的图神经网络 | SMRUCC.genomics.Analysis.GEARS 1.0.9762.7562 |
21 |
SMRUCC.genomics.Analysis.GEARS.Training
| Type | Summary | Package | Members |
|---|---|---|---|
| GEARSTrainer | GEARS 模型训练器 | SMRUCC.genomics.Analysis.GEARS 1.0.9753.40023 |
13 |
| GEARSTrainer | GEARS 模型训练器 | SMRUCC.genomics.Analysis.GEARS 1.0.9762.7562 |
13 |
| InSilicoPerturbationSimulator | 虚拟扰动的计算机仿真器:基于先验调控网络生成伪 Perturb-seq 训练标签 | SMRUCC.genomics.Analysis.GEARS 1.0.9753.40023 |
13 |
| InSilicoPerturbationSimulator | 虚拟扰动的计算机仿真器:基于先验调控网络生成伪 Perturb-seq 训练标签 | SMRUCC.genomics.Analysis.GEARS 1.0.9762.7562 |
13 |
| PerturbSeqSample | 一次(虚拟)扰动实验样本,等价于 Perturb-seq 中的一条记录 | SMRUCC.genomics.Analysis.GEARS 1.0.9753.40023 |
10 |
| PerturbSeqSample | 一次(虚拟)扰动实验样本,等价于 Perturb-seq 中的一条记录 | SMRUCC.genomics.Analysis.GEARS 1.0.9762.7562 |
10 |
SMRUCC.genomics.Analysis.HTS.FELLA.Core
| Type | Summary | Package | Members |
|---|---|---|---|
| ApproximationMethod | Approximation method for p-value computation. | SMRUCC.genomics.Analysis.HTS.FELLA 1.0.9753.40023 |
4 |
| ApproximationMethod | Approximation method for p-value computation. | SMRUCC.genomics.Analysis.HTS.FELLA 1.0.9762.7562 |
4 |
| BuildGraph | Build KEGG graph from data sources. | SMRUCC.genomics.Analysis.HTS.FELLA 1.0.9753.40023 |
3 |
| BuildGraph | Build KEGG graph from data sources. | SMRUCC.genomics.Analysis.HTS.FELLA 1.0.9762.7562 |
3 |
| Enrich | Main enrichment wrapper. | SMRUCC.genomics.Analysis.HTS.FELLA 1.0.9753.40023 |
2 |
| Enrich | Main enrichment wrapper. | SMRUCC.genomics.Analysis.HTS.FELLA 1.0.9762.7562 |
2 |
| EnrichmentMethod | Enrichment method type. | SMRUCC.genomics.Analysis.HTS.FELLA 1.0.9753.40023 |
3 |
| EnrichmentMethod | Enrichment method type. | SMRUCC.genomics.Analysis.HTS.FELLA 1.0.9762.7562 |
3 |
| EnrichmentResult | Results from a single enrichment method. | SMRUCC.genomics.Analysis.HTS.FELLA 1.0.9753.40023 |
7 |
| EnrichmentResult | Results from a single enrichment method. | SMRUCC.genomics.Analysis.HTS.FELLA 1.0.9762.7562 |
7 |
| ExportResults | Export and format FELLA analysis results. | SMRUCC.genomics.Analysis.HTS.FELLA 1.0.9753.40023 |
6 |
| ExportResults | Export and format FELLA analysis results. | SMRUCC.genomics.Analysis.HTS.FELLA 1.0.9762.7562 |
6 |
| FellaData | Precomputed database for FELLA analysis. | SMRUCC.genomics.Analysis.HTS.FELLA 1.0.9753.40023 |
16 |
| FellaData | Precomputed database for FELLA analysis. | SMRUCC.genomics.Analysis.HTS.FELLA 1.0.9762.7562 |
16 |
| FellaUser | User analysis object. Stores input compounds and enrichment results. Equivalent to the FELLA.USER S4 class in the R package. | SMRUCC.genomics.Analysis.HTS.FELLA 1.0.9753.40023 |
9 |
| FellaUser | User analysis object. Stores input compounds and enrichment results. Equivalent to the FELLA.USER S4 class in the R package. | SMRUCC.genomics.Analysis.HTS.FELLA 1.0.9762.7562 |
9 |
| KeggEdge | Represents a directed edge in the KEGG graph. | SMRUCC.genomics.Analysis.HTS.FELLA 1.0.9753.40023 |
4 |
| KeggEdge | Represents a directed edge in the KEGG graph. | SMRUCC.genomics.Analysis.HTS.FELLA 1.0.9762.7562 |
4 |
| KeggGraph | The KEGG multi-layer heterogeneous graph. | SMRUCC.genomics.Analysis.HTS.FELLA 1.0.9753.40023 |
20 |
| KeggGraph | The KEGG multi-layer heterogeneous graph. | SMRUCC.genomics.Analysis.HTS.FELLA 1.0.9762.7562 |
20 |
| KeggNode | Represents a single node in the KEGG graph. | SMRUCC.genomics.Analysis.HTS.FELLA 1.0.9753.40023 |
5 |
| KeggNode | Represents a single node in the KEGG graph. | SMRUCC.genomics.Analysis.HTS.FELLA 1.0.9762.7562 |
5 |
| KeggNodeType | Types of nodes in the KEGG hierarchical graph. | SMRUCC.genomics.Analysis.HTS.FELLA 1.0.9753.40023 |
5 |
| KeggNodeType | Types of nodes in the KEGG hierarchical graph. | SMRUCC.genomics.Analysis.HTS.FELLA 1.0.9762.7562 |
5 |
| NodeResult | Result for a single node from enrichment analysis. | SMRUCC.genomics.Analysis.HTS.FELLA 1.0.9753.40023 |
9 |
| NodeResult | Result for a single node from enrichment analysis. | SMRUCC.genomics.Analysis.HTS.FELLA 1.0.9762.7562 |
9 |
| RunDiffusion | Network diffusion analysis for FELLA. | SMRUCC.genomics.Analysis.HTS.FELLA 1.0.9753.40023 |
4 |
| RunDiffusion | Network diffusion analysis for FELLA. | SMRUCC.genomics.Analysis.HTS.FELLA 1.0.9762.7562 |
4 |
| RunHypergeom | Hypergeometric over-representation analysis. | SMRUCC.genomics.Analysis.HTS.FELLA 1.0.9753.40023 |
1 |
| RunHypergeom | Hypergeometric over-representation analysis. | SMRUCC.genomics.Analysis.HTS.FELLA 1.0.9762.7562 |
1 |
| RunPagerank | Personalized PageRank analysis for FELLA. | SMRUCC.genomics.Analysis.HTS.FELLA 1.0.9753.40023 |
3 |
| RunPagerank | Personalized PageRank analysis for FELLA. | SMRUCC.genomics.Analysis.HTS.FELLA 1.0.9762.7562 |
3 |
SMRUCC.genomics.Analysis.HTS.FELLA.Core.FellaData
| Type | Summary | Package | Members |
|---|---|---|---|
| NullDistributionStats | Statistics of the null distribution for a single node. | SMRUCC.genomics.Analysis.HTS.FELLA 1.0.9753.40023 |
3 |
| NullDistributionStats | Statistics of the null distribution for a single node. | SMRUCC.genomics.Analysis.HTS.FELLA 1.0.9762.7562 |
3 |
SMRUCC.genomics.Analysis.HTS.FELLA.Math
| Type | Summary | Package | Members |
|---|---|---|---|
| Matrix | Dense matrix class with basic linear algebra operations. | SMRUCC.genomics.Analysis.HTS.FELLA 1.0.9753.40023 |
30 |
| Matrix | Dense matrix class with basic linear algebra operations. | SMRUCC.genomics.Analysis.HTS.FELLA 1.0.9762.7562 |
30 |
| Statistics | Statistical utility functions required for FELLA enrichment analysis. | SMRUCC.genomics.Analysis.HTS.FELLA 1.0.9753.40023 |
28 |
| Statistics | Statistical utility functions required for FELLA enrichment analysis. | SMRUCC.genomics.Analysis.HTS.FELLA 1.0.9762.7562 |
28 |
SMRUCC.genomics.Analysis.HTS.GSEA.KnowledgeBase
| Type | Summary | Package | Members |
|---|---|---|---|
| BBHLibrary | Module for create GSEA background model from bbh annotation result. | SMRUCC.genomics.Analysis.HTS.GSEA.KnowledgeBase.Extensions 1.0.9753.40023 |
1 |
| BBHLibrary | Module for create GSEA background model from bbh annotation result. | SMRUCC.genomics.Analysis.HTS.GSEA.KnowledgeBase.Extensions 1.0.9762.7562 |
1 |
| KEGGCompounds | Create background model for KEGG pathway enrichment based on the kegg metabolites, used for LC-MS metabolism data analysis. | SMRUCC.genomics.Analysis.HTS.GSEA.KnowledgeBase.Extensions 1.0.9753.40023 |
2 |
| KEGGCompounds | Create background model for KEGG pathway enrichment based on the kegg metabolites, used for LC-MS metabolism data analysis. | SMRUCC.genomics.Analysis.HTS.GSEA.KnowledgeBase.Extensions 1.0.9762.7562 |
2 |
| MultipleOmics | helper for create enrichment background model for multiple omics data analysis | SMRUCC.genomics.Analysis.HTS.GSEA.KnowledgeBase.Extensions 1.0.9753.40023 |
2 |
| MultipleOmics | helper for create enrichment background model for multiple omics data analysis | SMRUCC.genomics.Analysis.HTS.GSEA.KnowledgeBase.Extensions 1.0.9762.7562 |
2 |
SMRUCC.genomics.Analysis.HTS.GSEA.KnowledgeBase.Metabolism
| Type | Summary | Package | Members |
|---|---|---|---|
| EnrichmentNetwork | Model of network based enrichment analysis(KEGG pathway targetted) | SMRUCC.genomics.Analysis.HTS.GSEA.KnowledgeBase.Extensions 1.0.9753.40023 |
4 |
| EnrichmentNetwork | Model of network based enrichment analysis(KEGG pathway targetted) | SMRUCC.genomics.Analysis.HTS.GSEA.KnowledgeBase.Extensions 1.0.9762.7562 |
4 |
SMRUCC.genomics.Analysis.HTS.GSEA.KnowledgeBase.Metabolism.Metpa
| Type | Summary | Package | Members |
|---|---|---|---|
| graph | SMRUCC.genomics.Analysis.HTS.GSEA.KnowledgeBase.Extensions 1.0.9753.40023 |
1 | |
| graph | SMRUCC.genomics.Analysis.HTS.GSEA.KnowledgeBase.Extensions 1.0.9762.7562 |
1 | |
| metpa | metpa symbol | SMRUCC.genomics.Analysis.HTS.GSEA.KnowledgeBase.Extensions 1.0.9753.40023 |
2 |
| metpa | metpa symbol | SMRUCC.genomics.Analysis.HTS.GSEA.KnowledgeBase.Extensions 1.0.9762.7562 |
2 |
| mset | a molecule collection | SMRUCC.genomics.Analysis.HTS.GSEA.KnowledgeBase.Extensions 1.0.9753.40023 |
3 |
| mset | a molecule collection | SMRUCC.genomics.Analysis.HTS.GSEA.KnowledgeBase.Extensions 1.0.9762.7562 |
3 |
| msetList | the molecule collection for each pathway cluster | SMRUCC.genomics.Analysis.HTS.GSEA.KnowledgeBase.Extensions 1.0.9753.40023 |
0 |
| msetList | the molecule collection for each pathway cluster | SMRUCC.genomics.Analysis.HTS.GSEA.KnowledgeBase.Extensions 1.0.9762.7562 |
0 |
| Topologys | the network graph topology impact score algorithm | SMRUCC.genomics.Analysis.HTS.GSEA.KnowledgeBase.Extensions 1.0.9753.40023 |
4 |
| Topologys | the network graph topology impact score algorithm | SMRUCC.genomics.Analysis.HTS.GSEA.KnowledgeBase.Extensions 1.0.9762.7562 |
4 |
SMRUCC.genomics.Analysis.HTS.P_NET
| Type | Summary | Package | Members |
|---|---|---|---|
| AdamOptimizer | Adam 优化器(自适应矩估计) | SMRUCC.genomics.Analysis.HTS.P-NET 1.0.9753.40023 |
9 |
| AdamOptimizer | Adam 优化器(自适应矩估计) | SMRUCC.genomics.Analysis.HTS.P-NET 1.0.9762.7562 |
9 |
| DataSplit | 按照训练集 / 验证集 / 测试集划分之后的数据集三元组 | SMRUCC.genomics.Analysis.HTS.P-NET 1.0.9753.40023 |
4 |
| DataSplit | 按照训练集 / 验证集 / 测试集划分之后的数据集三元组 | SMRUCC.genomics.Analysis.HTS.P-NET 1.0.9762.7562 |
4 |
| DeepLIFT | DeepLIFT(Rescale 规则)对 P-NET 做逐层归因 | SMRUCC.genomics.Analysis.HTS.P-NET 1.0.9753.40023 |
9 |
| DeepLIFT | DeepLIFT(Rescale 规则)对 P-NET 做逐层归因 | SMRUCC.genomics.Analysis.HTS.P-NET 1.0.9762.7562 |
9 |
| DeepLIFTResult | DeepLIFT 归因结果 | SMRUCC.genomics.Analysis.HTS.P-NET 1.0.9753.40023 |
9 |
| DeepLIFTResult | DeepLIFT 归因结果 | SMRUCC.genomics.Analysis.HTS.P-NET 1.0.9762.7562 |
9 |
| DemoData | P-NET 演示数据合成器 | SMRUCC.genomics.Analysis.HTS.P-NET 1.0.9753.40023 |
7 |
| DemoData | P-NET 演示数据合成器 | SMRUCC.genomics.Analysis.HTS.P-NET 1.0.9762.7562 |
7 |
| DemoDataset | 合成的演示数据集 | SMRUCC.genomics.Analysis.HTS.P-NET 1.0.9753.40023 |
6 |
| DemoDataset | 合成的演示数据集 | SMRUCC.genomics.Analysis.HTS.P-NET 1.0.9762.7562 |
6 |
| EvaluationResult | 一次评估所产生的全部指标结果 | SMRUCC.genomics.Analysis.HTS.P-NET 1.0.9753.40023 |
11 |
| EvaluationResult | 一次评估所产生的全部指标结果 | SMRUCC.genomics.Analysis.HTS.P-NET 1.0.9762.7562 |
11 |
| GeneAlterationImportance | 某一个基因上特定改变类型的重要性 | SMRUCC.genomics.Analysis.HTS.P-NET 1.0.9753.40023 |
4 |
| GeneAlterationImportance | 某一个基因上特定改变类型的重要性 | SMRUCC.genomics.Analysis.HTS.P-NET 1.0.9762.7562 |
4 |
| GmtIO | Gene Matrix Transposed (.gmt) 格式的通路层级读写器 | SMRUCC.genomics.Analysis.HTS.P-NET 1.0.9753.40023 |
5 |
| GmtIO | Gene Matrix Transposed (.gmt) 格式的通路层级读写器 | SMRUCC.genomics.Analysis.HTS.P-NET 1.0.9762.7562 |
5 |
| HierarchyLevel | 单层生物学实体定义(通路层 / 基因层) | SMRUCC.genomics.Analysis.HTS.P-NET 1.0.9753.40023 |
9 |
| HierarchyLevel | 单层生物学实体定义(通路层 / 基因层) | SMRUCC.genomics.Analysis.HTS.P-NET 1.0.9762.7562 |
9 |
| ImportanceAnalyzer | 跨样本聚合归因分数并对节点度做偏倚校正的解释分析器 | SMRUCC.genomics.Analysis.HTS.P-NET 1.0.9753.40023 |
5 |
| ImportanceAnalyzer | 跨样本聚合归因分数并对节点度做偏倚校正的解释分析器 | SMRUCC.genomics.Analysis.HTS.P-NET 1.0.9762.7562 |
5 |
| MaskedDenseLayer | P-NET 的核心算子:受二值掩码约束的稀疏全连接层 | SMRUCC.genomics.Analysis.HTS.P-NET 1.0.9753.40023 |
22 |
| MaskedDenseLayer | P-NET 的核心算子:受二值掩码约束的稀疏全连接层 | SMRUCC.genomics.Analysis.HTS.P-NET 1.0.9762.7562 |
22 |
| Metrics | 二分类模型的评估指标 | SMRUCC.genomics.Analysis.HTS.P-NET 1.0.9753.40023 |
8 |
| Metrics | 二分类模型的评估指标 | SMRUCC.genomics.Analysis.HTS.P-NET 1.0.9762.7562 |
8 |
| NNBuilder | 把生物学层级"编译"为 P-NET 网络拓扑的构建器 | SMRUCC.genomics.Analysis.HTS.P-NET 1.0.9753.40023 |
3 |
| NNBuilder | 把生物学层级"编译"为 P-NET 网络拓扑的构建器 | SMRUCC.genomics.Analysis.HTS.P-NET 1.0.9762.7562 |
3 |
| NodeImportance | 单个节点的解释结果 | SMRUCC.genomics.Analysis.HTS.P-NET 1.0.9753.40023 |
12 |
| NodeImportance | 单个节点的解释结果 | SMRUCC.genomics.Analysis.HTS.P-NET 1.0.9762.7562 |
12 |
| PathwayHierarchy | 生物学层级本体:基因 → 精细通路 → 逐级抽象的粗通路 | SMRUCC.genomics.Analysis.HTS.P-NET 1.0.9753.40023 |
18 |
| PathwayHierarchy | 生物学层级本体:基因 → 精细通路 → 逐级抽象的粗通路 | SMRUCC.genomics.Analysis.HTS.P-NET 1.0.9762.7562 |
18 |
| PNETBuildConfig | 网络构建配置 | SMRUCC.genomics.Analysis.HTS.P-NET 1.0.9753.40023 |
4 |
| PNETBuildConfig | 网络构建配置 | SMRUCC.genomics.Analysis.HTS.P-NET 1.0.9762.7562 |
4 |
| PNETForwardResult | 一次前向传播所产生的全部中间结果 | SMRUCC.genomics.Analysis.HTS.P-NET 1.0.9753.40023 |
7 |
| PNETForwardResult | 一次前向传播所产生的全部中间结果 | SMRUCC.genomics.Analysis.HTS.P-NET 1.0.9762.7562 |
7 |
| PNETModel | P-NET:生物学先验驱动的稀疏可见神经网络 | SMRUCC.genomics.Analysis.HTS.P-NET 1.0.9753.40023 |
20 |
| PNETModel | P-NET:生物学先验驱动的稀疏可见神经网络 | SMRUCC.genomics.Analysis.HTS.P-NET 1.0.9762.7562 |
20 |
| PNETSampleSet | P-NET 的样本数据集 | SMRUCC.genomics.Analysis.HTS.P-NET 1.0.9753.40023 |
15 |
| PNETSampleSet | P-NET 的样本数据集 | SMRUCC.genomics.Analysis.HTS.P-NET 1.0.9762.7562 |
15 |
| PNETTrainer | P-NET 的训练器 | SMRUCC.genomics.Analysis.HTS.P-NET 1.0.9753.40023 |
10 |
| PNETTrainer | P-NET 的训练器 | SMRUCC.genomics.Analysis.HTS.P-NET 1.0.9762.7562 |
10 |
| PredictionHead | 深度监督预测头:挂在每一个隐藏层之后的 sigmoid 二分类输出节点 | SMRUCC.genomics.Analysis.HTS.P-NET 1.0.9753.40023 |
16 |
| PredictionHead | 深度监督预测头:挂在每一个隐藏层之后的 sigmoid 二分类输出节点 | SMRUCC.genomics.Analysis.HTS.P-NET 1.0.9762.7562 |
16 |
| SparseConnectivity | 稀疏连接内核:由生物层级父子关系编译出来的边表 | SMRUCC.genomics.Analysis.HTS.P-NET 1.0.9753.40023 |
13 |
| SparseConnectivity | 稀疏连接内核:由生物层级父子关系编译出来的边表 | SMRUCC.genomics.Analysis.HTS.P-NET 1.0.9762.7562 |
13 |
| TensorOps | P-NET 所需要的基础数值算子 | SMRUCC.genomics.Analysis.HTS.P-NET 1.0.9753.40023 |
18 |
| TensorOps | P-NET 所需要的基础数值算子 | SMRUCC.genomics.Analysis.HTS.P-NET 1.0.9762.7562 |
18 |
| TrainConfig | P-NET 的训练超参数配置 | SMRUCC.genomics.Analysis.HTS.P-NET 1.0.9753.40023 |
14 |
| TrainConfig | P-NET 的训练超参数配置 | SMRUCC.genomics.Analysis.HTS.P-NET 1.0.9762.7562 |
14 |
| TrainingHistory | 训练过程的历史记录 | SMRUCC.genomics.Analysis.HTS.P-NET 1.0.9753.40023 |
7 |
| TrainingHistory | 训练过程的历史记录 | SMRUCC.genomics.Analysis.HTS.P-NET 1.0.9762.7562 |
7 |
SMRUCC.genomics.Analysis.HTS.WGCNA
| Type | Summary | Package | Members |
|---|---|---|---|
| Analysis | WGCNA分析主模块 | SMRUCC.genomics.Analysis.HTS.WGCNA 1.0.9753.40023 |
4 |
| Analysis | WGCNA分析主模块 | SMRUCC.genomics.Analysis.HTS.WGCNA 1.0.9762.7562 |
4 |
| BetaTest | test for best beta power value | SMRUCC.genomics.Analysis.HTS.WGCNA 1.0.9753.40023 |
11 |
| BetaTest | test for best beta power value | SMRUCC.genomics.Analysis.HTS.WGCNA 1.0.9762.7562 |
11 |
| GeneSignificanceResult | 基因显著性结果 | SMRUCC.genomics.Analysis.HTS.WGCNA 1.0.9753.40023 |
7 |
| GeneSignificanceResult | 基因显著性结果 | SMRUCC.genomics.Analysis.HTS.WGCNA 1.0.9762.7562 |
7 |
| ModuleEigengeneResult | 模块特征基因计算结果 | SMRUCC.genomics.Analysis.HTS.WGCNA 1.0.9753.40023 |
4 |
| ModuleEigengeneResult | 模块特征基因计算结果 | SMRUCC.genomics.Analysis.HTS.WGCNA 1.0.9762.7562 |
4 |
| ModuleMembershipResult | 模块成员结果 | SMRUCC.genomics.Analysis.HTS.WGCNA 1.0.9753.40023 |
7 |
| ModuleMembershipResult | 模块成员结果 | SMRUCC.genomics.Analysis.HTS.WGCNA 1.0.9762.7562 |
7 |
| ModulePhenotype | WGCNA模块与表型相关性分析模块 该模块实现了WGCNA分析中关键的模块-表型关联分析功能: 1. | SMRUCC.genomics.Analysis.HTS.WGCNA 1.0.9753.40023 |
7 |
| ModulePhenotype | WGCNA模块与表型相关性分析模块 该模块实现了WGCNA分析中关键的模块-表型关联分析功能: 1. | SMRUCC.genomics.Analysis.HTS.WGCNA 1.0.9762.7562 |
7 |
| ModulePhenotypeCorrelation | 模块与表型相关性结果 | SMRUCC.genomics.Analysis.HTS.WGCNA 1.0.9753.40023 |
8 |
| ModulePhenotypeCorrelation | 模块与表型相关性结果 | SMRUCC.genomics.Analysis.HTS.WGCNA 1.0.9762.7562 |
8 |
| Result | WGCNA分析结果类 | SMRUCC.genomics.Analysis.HTS.WGCNA 1.0.9753.40023 |
17 |
| Result | WGCNA分析结果类 | SMRUCC.genomics.Analysis.HTS.WGCNA 1.0.9762.7562 |
17 |
| SoftLinear | 把连通性分隔,分隔内连通性的平均值取log10,跟频率的概率取log10,两者之间有线性关系。 | SMRUCC.genomics.Analysis.HTS.WGCNA 1.0.9753.40023 |
0 |
| SoftLinear | 把连通性分隔,分隔内连通性的平均值取log10,跟频率的概率取log10,两者之间有线性关系。 | SMRUCC.genomics.Analysis.HTS.WGCNA 1.0.9762.7562 |
0 |
| TOM | Category 2: Functions for module detection. | SMRUCC.genomics.Analysis.HTS.WGCNA 1.0.9753.40023 |
3 |
| TOM | Category 2: Functions for module detection. | SMRUCC.genomics.Analysis.HTS.WGCNA 1.0.9762.7562 |
3 |
| WeightedNetwork | Category 1: Functions for network construction | SMRUCC.genomics.Analysis.HTS.WGCNA 1.0.9753.40023 |
3 |
| WeightedNetwork | Category 1: Functions for network construction | SMRUCC.genomics.Analysis.HTS.WGCNA 1.0.9762.7562 |
3 |
SMRUCC.genomics.Analysis.Metagenome
| Type | Summary | Package | Members |
|---|---|---|---|
| ACE | Ace – the ACE estimator (http://www.mothur.org/wiki/Ace);用来估计群落中OTU 数目的指数,由Chao 提出,是生态学中估计物种总数的常用指数之一 | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
0 |
| ACE | Ace – the ACE estimator (http://www.mothur.org/wiki/Ace);用来估计群落中OTU 数目的指数,由Chao 提出,是生态学中估计物种总数的常用指数之一 | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
0 |
| BIOM | 生成BIOM数据模型 | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
4 |
| BIOM | 生成BIOM数据模型 | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
4 |
| BIOMExtensions | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
1 | |
| BIOMExtensions | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
1 | |
| CoreMicrobiomeCalculator | 从一个OTU相对丰度表格中筛选出核心微生物群落,“跨样本/全局维度”的普遍性+丰度筛选,找的是“核心种” | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
0 |
| CoreMicrobiomeCalculator | 从一个OTU相对丰度表格中筛选出核心微生物群落,“跨样本/全局维度”的普遍性+丰度筛选,找的是“核心种” | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
0 |
| Enterotype | Protocol module to produce enterotype clusters | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
2 |
| Enterotype | Protocol module to produce enterotype clusters | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
1 |
| ITaxonomyAbundance | [id, ncbi_taxid, expression_value] | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
0 |
| ITaxonomyAbundance | [id, ncbi_taxid, expression_value] | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
0 |
| MeganImports | Megan Csv imports | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
5 |
| MeganImports | Megan Csv imports | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
5 |
| MetagenomicsBenchmark | 算法比较评估模块 | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
4 |
| MetagenomicsBenchmark | 算法比较评估模块 | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
4 |
| OTU | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
2 | |
| OTU | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
2 | |
| OTUTable | OTU table (sequence count table) A OTU table contains the number of sequences that are observed for each taxonomic unit (OTUs) in each samples. | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
5 |
| OTUTable | OTU table (sequence count table) A OTU table contains the number of sequences that are observed for each taxonomic unit (OTUs) in each samples. | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
5 |
| OTUTableBuilder | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
1 | |
| OTUTableBuilder | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
1 | |
| RankAbundance | Rank Abundance曲线 | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
2 |
| RankAbundance | Rank Abundance曲线 | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
2 |
| RankLevelView | samples data aggregate in a specific taxonomy rank | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
3 |
| RankLevelView | samples data aggregate in a specific taxonomy rank | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
3 |
| RelativeStatics | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
6 | |
| RelativeStatics | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
6 | |
| SILVA_OTU | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
3 | |
| SILVA_OTU | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
3 | |
| SILVABuild | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
1 | |
| SILVABuild | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
1 | |
| ToolScore | 单个工具的评估得分 | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
8 |
| ToolScore | 单个工具的评估得分 | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
8 |
| UniFracCalculator | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
2 | |
| UniFracCalculator | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
2 |
SMRUCC.genomics.Analysis.Metagenome.BEBaC
| Type | Summary | Package | Members |
|---|---|---|---|
| CrudeClustering | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
2 | |
| CrudeClustering | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
2 | |
| I3Mers | Where a 3-mer means 3 consecutive DNA bases ranging from AAA to TTT. | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
64 |
| I3Mers | Where a 3-mer means 3 consecutive DNA bases ranging from AAA to TTT. | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
64 |
| PosteriorProbability | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
3 | |
| PosteriorProbability | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
3 | |
| VectorAPI | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
2 | |
| VectorAPI | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
2 |
SMRUCC.genomics.Analysis.Metagenome.gast
| Type | Summary | Package | Members |
|---|---|---|---|
| ARGV | gast -in input_fasta -ref reference_uniques_fasta -rtax reference_dupes_taxonomy [-mp min_pct_id] [-m majority] -out output_file | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
19 |
| ARGV | gast -in input_fasta -ref reference_uniques_fasta -rtax reference_dupes_taxonomy [-mp min_pct_id] [-m majority] -out output_file | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
19 |
| gast_tools | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
5 | |
| gast_tools | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
4 | |
| GastAPI | compares trimmed sequences against a reference database for assigning taxonomy, reads a fasta file of trimmed 16S sequences, compares each sequence to a Set Of similarly trimme… | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
8 |
| GastAPI | compares trimmed sequences against a reference database for assigning taxonomy, reads a fasta file of trimmed 16S sequences, compares each sequence to a Set Of similarly trimme… | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
8 |
| gastOUT | The gast script OTU count result table | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
4 |
| gastOUT | The gast script OTU count result table | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
4 |
| Names | .names 相当于一个OTU数据 | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
1 |
| Names | .names 相当于一个OTU数据 | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
1 |
| SUBROUTINES | SUBROUTINES | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
0 |
| SUBROUTINES | SUBROUTINES | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
0 |
| Taxonomy | Create taxonomic objects, Return classes Or full text Of a taxonoDim Object, Calculate consensus Of an array Of taxonomic objects. | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
8 |
| Taxonomy | Create taxonomic objects, Return classes Or full text Of a taxonoDim Object, Calculate consensus Of an array Of taxonomic objects. | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
8 |
| TaxonomyTree | a taxonomy tree node | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
2 |
| TaxonomyTree | a taxonomy tree node | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
2 |
| TreeBuilder | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
1 | |
| TreeBuilder | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
1 |
SMRUCC.genomics.Analysis.Metagenome.GCModeller.FileSystem
| Type | Summary | Package | Members |
|---|---|---|---|
| FileSystem | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
16 | |
| FileSystem | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
16 |
SMRUCC.genomics.Analysis.Metagenome.GCModeller.FileSystem.KEGG
| Type | Summary | Package | Members |
|---|---|---|---|
| Directories | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
1 | |
| Directories | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
1 |
SMRUCC.genomics.Analysis.Metagenome.GCModeller.FileSystem.RegPrecise
| Type | Summary | Package | Members |
|---|---|---|---|
| Directories | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
2 | |
| Directories | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
2 |
SMRUCC.genomics.Analysis.Metagenome.greengenes
| Type | Summary | Package | Members |
|---|---|---|---|
| Extensions | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
2 | |
| Extensions | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
2 | |
| otu_taxonomy | otu id mappingg to taxonomy lineage information | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
2 |
| otu_taxonomy | otu id mappingg to taxonomy lineage information | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
2 |
SMRUCC.genomics.Analysis.Metagenome.Kmers
| Type | Summary | Package | Members |
|---|---|---|---|
| AbundanceEstimate | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
8 | |
| AbundanceEstimate | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
8 | |
| Classifier | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
2 | |
| Classifier | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
2 | |
| DatabaseReader | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
4 | |
| DatabaseReader | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
4 | |
| DatabaseWriter | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
3 | |
| DatabaseWriter | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
3 | |
| Extensions | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
1 | |
| Extensions | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
1 | |
| KmerBloomFilter | kmer bloom filter of a specific genome | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
2 |
| KmerBloomFilter | kmer bloom filter of a specific genome | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
2 |
| KmerFilter | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
3 | |
| KmerFilter | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
3 | |
| KmerHashIndexFilter | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
1 | |
| KmerHashIndexFilter | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
1 | |
| KmersDatabase | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
7 | |
| KmersDatabase | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
7 | |
| KmerSeed | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
4 | |
| KmerSeed | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
4 | |
| KmerSource | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
4 | |
| KmerSource | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
4 | |
| KmerWriter | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
9 | |
| KmerWriter | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
9 | |
| PriorProbabilityBuilder | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
4 | |
| PriorProbabilityBuilder | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
4 | |
| SequenceCollection | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
6 | |
| SequenceCollection | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
6 | |
| SequenceSource | source information of the target genome source sequence | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
7 |
| SequenceSource | source information of the target genome source sequence | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
7 |
| ShardingReader | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
3 | |
| ShardingReader | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
3 | |
| ShardingWriter | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
8 | |
| ShardingWriter | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
8 |
SMRUCC.genomics.Analysis.Metagenome.Kmers.Kraken2
| Type | Summary | Package | Members |
|---|---|---|---|
| Bracken | the bracken abundance table | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
0 |
| Bracken | the bracken abundance table | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
0 |
| KrakenOutputRecord | 用于存储 --output 文件中每一行的数据,这个文件详细列出了每一条序列(read)的分类结果。每一行对应一条 read。 | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
12 |
| KrakenOutputRecord | 用于存储 --output 文件中每一行的数据,这个文件详细列出了每一条序列(read)的分类结果。每一行对应一条 read。 | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
12 |
| KrakenParser | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
2 | |
| KrakenParser | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
2 | |
| KrakenReportRecord | 用于存储 --report 文件中每一行的数据。这个文件提供了整个样本的分类汇总统计,非常直观。 | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
6 |
| KrakenReportRecord | 用于存储 --report 文件中每一行的数据。这个文件提供了整个样本的分类汇总统计,非常直观。 | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
6 |
| ReportFilter | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
3 | |
| ReportFilter | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
3 | |
| TaxonomyTreeBuilder | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
2 | |
| TaxonomyTreeBuilder | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
2 |
SMRUCC.genomics.Analysis.Metagenome.Settings
| Type | Summary | Package | Members |
|---|---|---|---|
| Docker | The configuration model of the GCModeller docker environment. | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
4 |
| Docker | The configuration model of the GCModeller docker environment. | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
4 |
| File | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
21 | |
| File | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
8 | |
| Session | GCModeller program profile session.(GCModeller的应用程序配置会话) | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
17 |
| Session | GCModeller program profile session.(GCModeller的应用程序配置会话) | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
17 |
| Templates | App.HOME & "/Templates/" | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
0 |
| Templates | App.HOME & "/Templates/" | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
0 |
SMRUCC.genomics.Analysis.Metagenome.Settings.Programs
| Type | Summary | Package | Members |
|---|---|---|---|
| GCHOST | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
3 | |
| GCHOST | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
3 | |
| IDE | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
5 | |
| IDE | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
5 | |
| SMART | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
1 | |
| SMART | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
1 |
SMRUCC.genomics.Analysis.Metagenome.Settings.Programs.IDE
SMRUCC.genomics.Analysis.Metagenome.UniFracCalculator
| Type | Summary | Package | Members |
|---|---|---|---|
| PhylogeneticBranch | 定义系统发育树分支结构 | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
2 |
| PhylogeneticBranch | 定义系统发育树分支结构 | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
2 |
SMRUCC.genomics.Analysis.Metagenome.UPGMATree
| Type | Summary | Package | Members |
|---|---|---|---|
| NodeLayout | 用于缓存每个节点的极坐标布局信息 | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
0 |
| NodeLayout | 用于缓存每个节点的极坐标布局信息 | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
0 |
| Taxa | Taxonomy tree model | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
1 |
| Taxa | Taxonomy tree model | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
1 |
| TreeDrawer | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
5 | |
| TreeDrawer | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
5 | |
| UPGMATree | 基于矩阵数据结构(两两比较的得分/距离矩阵),最常用的从零构建进化树的算法是 UPGMA(Unweighted Pair Group Method with Arithmetic Mean)算法。 UPGMA 是一种自底向上的聚类算法,它假设分子钟假说(即所有物种的进化速率相同),最终生成一棵有根树。本质上是基于平均连接值得层次聚类树。 > http… | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
1 |
| UPGMATree | 基于矩阵数据结构(两两比较的得分/距离矩阵),最常用的从零构建进化树的算法是 UPGMA(Unweighted Pair Group Method with Arithmetic Mean)算法。 UPGMA 是一种自底向上的聚类算法,它假设分子钟假说(即所有物种的进化速率相同),最终生成一棵有根树。本质上是基于平均连接值得层次聚类树。 > http… | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
1 |
SMRUCC.genomics.Analysis.Metagenome.ZetaDiversity
| Type | Summary | Package | Members |
|---|---|---|---|
| ZetaAnalysisResult | Complete result container for zeta diversity analysis. | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
18 |
| ZetaAnalysisResult | Complete result container for zeta diversity analysis. | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
18 |
| ZetaDiversityAnalysis | Zeta Diversity Analysis Module # # Based on: Hui, C., & McGeoch, M. | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
27 |
| ZetaDiversityAnalysis | Zeta Diversity Analysis Module # # Based on: Hui, C., & McGeoch, M. | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
27 |
| ZetaFitResult | Container for zeta diversity model fitting results. | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
10 |
| ZetaFitResult | Container for zeta diversity model fitting results. | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
10 |
| ZetaNullModelResult | Container for null model permutation test results. | SMRUCC.genomics.Analysis.Metagenome 1.0.9753.40023 |
6 |
| ZetaNullModelResult | Container for null model permutation test results. | SMRUCC.genomics.Analysis.Metagenome 1.0.9762.7562 |
6 |
SMRUCC.genomics.Analysis.PanGenome
| Type | Summary | Package | Members |
|---|---|---|---|
| CollinearBlock | 共线性区块定义 | SMRUCC.genomics.Analysis.PanGenome 1.0.9753.40023 |
17 |
| CollinearBlock | 共线性区块定义 | SMRUCC.genomics.Analysis.PanGenome 1.0.9762.7562 |
17 |
| CollinearRange | 共线性区块在两个基因组之上所覆盖的坐标范围 | SMRUCC.genomics.Analysis.PanGenome 1.0.9753.40023 |
4 |
| CollinearRange | 共线性区块在两个基因组之上所覆盖的坐标范围 | SMRUCC.genomics.Analysis.PanGenome 1.0.9762.7562 |
4 |
| GeneCategoryType | 扩展的基因家族分类定义 (基于存在度百分比) | SMRUCC.genomics.Analysis.PanGenome 1.0.9753.40023 |
7 |
| GeneCategoryType | 扩展的基因家族分类定义 (基于存在度百分比) | SMRUCC.genomics.Analysis.PanGenome 1.0.9762.7562 |
7 |
| GeneInfo | 基因详细信息,增加位置信息以支持共线性分析 | SMRUCC.genomics.Analysis.PanGenome 1.0.9753.40023 |
7 |
| GeneInfo | 基因详细信息,增加位置信息以支持共线性分析 | SMRUCC.genomics.Analysis.PanGenome 1.0.9762.7562 |
1 |
| GenomeAnalyzer | 泛基因组分析器 | SMRUCC.genomics.Analysis.PanGenome 1.0.9753.40023 |
51 |
| GenomeAnalyzer | 泛基因组分析器 | SMRUCC.genomics.Analysis.PanGenome 1.0.9762.7562 |
51 |
| HomologyPair | 定义最终输出的两两同源关系结构 | SMRUCC.genomics.Analysis.PanGenome 1.0.9753.40023 |
6 |
| HomologyPair | 定义最终输出的两两同源关系结构 | SMRUCC.genomics.Analysis.PanGenome 1.0.9762.7562 |
6 |
| OrthoGroupsHelper | SMRUCC.genomics.Analysis.PanGenome 1.0.9753.40023 |
2 | |
| OrthoGroupsHelper | SMRUCC.genomics.Analysis.PanGenome 1.0.9762.7562 |
2 | |
| PangenomeCurveData | 泛基因组曲线之上的一个数据点:表示在加入PangenomeCurveData.GenomeCount个基因组的时候, 泛基因组(全部基因家族)、核心基因家族以及软核心基因家族的规模 | SMRUCC.genomics.Analysis.PanGenome 1.0.9753.40023 |
5 |
| PangenomeCurveData | 泛基因组曲线之上的一个数据点:表示在加入PangenomeCurveData.GenomeCount个基因组的时候, 泛基因组(全部基因家族)、核心基因家族以及软核心基因家族的规模 | SMRUCC.genomics.Analysis.PanGenome 1.0.9762.7562 |
5 |
| PanGenomeReportGenerator | 泛基因组分析HTML报告的生成器。 | SMRUCC.genomics.Analysis.PanGenome 1.0.9753.40023 |
34 |
| PanGenomeReportGenerator | 泛基因组分析HTML报告的生成器。 | SMRUCC.genomics.Analysis.PanGenome 1.0.9762.7562 |
34 |
| PanGenomeResult | 分析结果存储结构(修改为支持多基因组) | SMRUCC.genomics.Analysis.PanGenome 1.0.9753.40023 |
49 |
| PanGenomeResult | 分析结果存储结构(修改为支持多基因组) | SMRUCC.genomics.Analysis.PanGenome 1.0.9762.7562 |
49 |
| PanGenomeStats | SMRUCC.genomics.Analysis.PanGenome 1.0.9753.40023 |
15 | |
| PanGenomeStats | SMRUCC.genomics.Analysis.PanGenome 1.0.9762.7562 |
15 | |
| PhylumProbabilityGenerator | Phylum probability matrix generator for operon predict | SMRUCC.genomics.Analysis.PanGenome 1.0.9753.40023 |
2 |
| PhylumProbabilityGenerator | Phylum probability matrix generator for operon predict | SMRUCC.genomics.Analysis.PanGenome 1.0.9762.7562 |
2 |
| StructuralVariation | 结构变异事件记录 | SMRUCC.genomics.Analysis.PanGenome 1.0.9753.40023 |
1 |
| StructuralVariation | 结构变异事件记录 | SMRUCC.genomics.Analysis.PanGenome 1.0.9762.7562 |
1 |
| SVData | SMRUCC.genomics.Analysis.PanGenome 1.0.9753.40023 |
4 | |
| SVData | SMRUCC.genomics.Analysis.PanGenome 1.0.9762.7562 |
4 | |
| SVDomainEntropy | 结构变异(SV)的矩阵化与基因家族层面的信息熵分析。 | SMRUCC.genomics.Analysis.PanGenome 1.0.9753.40023 |
16 |
| SVDomainEntropy | 结构变异(SV)的矩阵化与基因家族层面的信息熵分析。 | SMRUCC.genomics.Analysis.PanGenome 1.0.9762.7562 |
16 |
| SVType | 结构变异类型枚举 | SMRUCC.genomics.Analysis.PanGenome 1.0.9753.40023 |
11 |
| SVType | 结构变异类型枚举 | SMRUCC.genomics.Analysis.PanGenome 1.0.9762.7562 |
11 |
| UnionFind | 并查集辅助类,用于高效处理基因家族的聚类 | SMRUCC.genomics.Analysis.PanGenome 1.0.9753.40023 |
7 |
| UnionFind | 并查集辅助类,用于高效处理基因家族的聚类 | SMRUCC.genomics.Analysis.PanGenome 1.0.9762.7562 |
7 |
SMRUCC.genomics.Analysis.PanGenome.ReportJSON
| Type | Summary | Package | Members |
|---|---|---|---|
| CategoryItem | 通用的分类数据项(饼图、条形图以及结构变异类型的统计) | SMRUCC.genomics.Analysis.PanGenome 1.0.9753.40023 |
3 |
| CategoryItem | 通用的分类数据项(饼图、条形图以及结构变异类型的统计) | SMRUCC.genomics.Analysis.PanGenome 1.0.9762.7562 |
3 |
| CategoryPercentDataset | 基因家族分布比例的统计数据(每个基因组的四类家族占比的平均值 + 逐基因组明细) | SMRUCC.genomics.Analysis.PanGenome 1.0.9753.40023 |
7 |
| CategoryPercentDataset | 基因家族分布比例的统计数据(每个基因组的四类家族占比的平均值 + 逐基因组明细) | SMRUCC.genomics.Analysis.PanGenome 1.0.9762.7562 |
7 |
| CollinearityDataset | 共线性结果的可视化数据:基因组×基因组共线性矩阵 + Top 基因组对排行 | SMRUCC.genomics.Analysis.PanGenome 1.0.9753.40023 |
5 |
| CollinearityDataset | 共线性结果的可视化数据:基因组×基因组共线性矩阵 + Top 基因组对排行 | SMRUCC.genomics.Analysis.PanGenome 1.0.9762.7562 |
5 |
| CollinearPairItem | 共线性基因组对的展示数据项 | SMRUCC.genomics.Analysis.PanGenome 1.0.9753.40023 |
5 |
| CollinearPairItem | 共线性基因组对的展示数据项 | SMRUCC.genomics.Analysis.PanGenome 1.0.9762.7562 |
5 |
| GeneticDistanceDataset | 遗传距离矩阵的绘图数据 | SMRUCC.genomics.Analysis.PanGenome 1.0.9753.40023 |
3 |
| GeneticDistanceDataset | 遗传距离矩阵的绘图数据 | SMRUCC.genomics.Analysis.PanGenome 1.0.9762.7562 |
3 |
| GenomeEntropyDataset | 基因组级别的三维散点图数据(均衡度熵 / 特有基因占比 / 核心基因占比) | SMRUCC.genomics.Analysis.PanGenome 1.0.9753.40023 |
5 |
| GenomeEntropyDataset | 基因组级别的三维散点图数据(均衡度熵 / 特有基因占比 / 核心基因占比) | SMRUCC.genomics.Analysis.PanGenome 1.0.9762.7562 |
1 |
| GenomeEntropyPoint | 基因组级别的三维散点图数据点(一个基因组) | SMRUCC.genomics.Analysis.PanGenome 1.0.9753.40023 |
7 |
| GenomeEntropyPoint | 基因组级别的三维散点图数据点(一个基因组) | SMRUCC.genomics.Analysis.PanGenome 1.0.9762.7562 |
5 |
| GenomeStatRow | 泛基因组报告页面所使用的 JSON 数据模型。 | SMRUCC.genomics.Analysis.PanGenome 1.0.9753.40023 |
4 |
| GenomeStatRow | 泛基因组报告页面所使用的 JSON 数据模型。 | SMRUCC.genomics.Analysis.PanGenome 1.0.9762.7562 |
0 |
| PangenomeCurveDataset | 泛基因组曲线的绘图数据 | SMRUCC.genomics.Analysis.PanGenome 1.0.9753.40023 |
4 |
| PangenomeCurveDataset | 泛基因组曲线的绘图数据 | SMRUCC.genomics.Analysis.PanGenome 1.0.9762.7562 |
4 |
| PAVMatrixDataset | PAV 矩阵的绘图数据 | SMRUCC.genomics.Analysis.PanGenome 1.0.9753.40023 |
4 |
| PAVMatrixDataset | PAV 矩阵的绘图数据 | SMRUCC.genomics.Analysis.PanGenome 1.0.9762.7562 |
4 |
| PCAPoint | PAV矩阵PCA三维散点图中的单个样本点(一个基因组) | SMRUCC.genomics.Analysis.PanGenome 1.0.9753.40023 |
6 |
| PCAPoint | PAV矩阵PCA三维散点图中的单个样本点(一个基因组) | SMRUCC.genomics.Analysis.PanGenome 1.0.9762.7562 |
4 |
| PCAScatterDataset | PAV矩阵的PCA分析结果数据(用于三维散点图) | SMRUCC.genomics.Analysis.PanGenome 1.0.9753.40023 |
7 |
| PCAScatterDataset | PAV矩阵的PCA分析结果数据(用于三维散点图) | SMRUCC.genomics.Analysis.PanGenome 1.0.9762.7562 |
4 |
| PercentageItem | 数值为浮点数的分类数据项(饼图与条形图) | SMRUCC.genomics.Analysis.PanGenome 1.0.9753.40023 |
3 |
| PercentageItem | 数值为浮点数的分类数据项(饼图与条形图) | SMRUCC.genomics.Analysis.PanGenome 1.0.9762.7562 |
3 |
| SVDomainEntropyDataset | SV 结构变异的信息熵散点图与 KMeans 聚类结果 | SMRUCC.genomics.Analysis.PanGenome 1.0.9753.40023 |
8 |
| SVDomainEntropyDataset | SV 结构变异的信息熵散点图与 KMeans 聚类结果 | SMRUCC.genomics.Analysis.PanGenome 1.0.9762.7562 |
6 |
| SVDomainEntropyPoint | SV 信息熵散点图当中的一个基因家族样本点 | SMRUCC.genomics.Analysis.PanGenome 1.0.9753.40023 |
7 |
| SVDomainEntropyPoint | SV 信息熵散点图当中的一个基因家族样本点 | SMRUCC.genomics.Analysis.PanGenome 1.0.9762.7562 |
7 |
| SVEntropyCluster | SV 信息熵聚类的簇摘要 | SMRUCC.genomics.Analysis.PanGenome 1.0.9753.40023 |
5 |
| SVEntropyCluster | SV 信息熵聚类的簇摘要 | SMRUCC.genomics.Analysis.PanGenome 1.0.9762.7562 |
5 |
| SVMatrixDataset | 结构变异矩阵的热图绘图数据(行=基因家族,列=基因组) | SMRUCC.genomics.Analysis.PanGenome 1.0.9753.40023 |
5 |
| SVMatrixDataset | 结构变异矩阵的热图绘图数据(行=基因家族,列=基因组) | SMRUCC.genomics.Analysis.PanGenome 1.0.9762.7562 |
5 |
SMRUCC.genomics.Analysis.PanGenome.SVDomainEntropy
| Type | Summary | Package | Members |
|---|---|---|---|
| SVEntropyEntity | KMeans聚类的输入实体:以两个标准化之后的香农信息熵作为坐标 | SMRUCC.genomics.Analysis.PanGenome 1.0.9753.40023 |
4 |
| SVEntropyEntity | KMeans聚类的输入实体:以两个标准化之后的香农信息熵作为坐标 | SMRUCC.genomics.Analysis.PanGenome 1.0.9762.7562 |
4 |
| SVEvent | 矩阵之中的一个结构变异事件 | SMRUCC.genomics.Analysis.PanGenome 1.0.9753.40023 |
0 |
| SVEvent | 矩阵之中的一个结构变异事件 | SMRUCC.genomics.Analysis.PanGenome 1.0.9762.7562 |
0 |
| SVMatrixPair | SV 结构变异的 CopyNumber / Median 矩阵(行=基因家族,列=基因组) | SMRUCC.genomics.Analysis.PanGenome 1.0.9753.40023 |
4 |
| SVMatrixPair | SV 结构变异的 CopyNumber / Median 矩阵(行=基因家族,列=基因组) | SMRUCC.genomics.Analysis.PanGenome 1.0.9762.7562 |
4 |
SMRUCC.genomics.Analysis.PrimerDesigner
| Type | Summary | Package | Members |
|---|---|---|---|
| CandidateRegion | 多个引物共同覆盖的候选区域信息类 | SMRUCC.genomics.Analysis.PrimerDesigner 1.0.9753.40023 |
5 |
| CandidateRegion | 多个引物共同覆盖的候选区域信息类 | SMRUCC.genomics.Analysis.PrimerDesigner 1.0.9762.7562 |
5 |
| Designer | Wu, J. S., et al. (2004). "Primer design using genetic algorithm." Bioinformatics 20(11): 1710-1717. MOTIVATION: Before performing a polymerase chain reaction experiment, a pair… | SMRUCC.genomics.Analysis.PrimerDesigner 1.0.9753.40023 |
2 |
| Designer | Wu, J. S., et al. (2004). "Primer design using genetic algorithm." Bioinformatics 20(11): 1710-1717. MOTIVATION: Before performing a polymerase chain reaction experiment, a pair… | SMRUCC.genomics.Analysis.PrimerDesigner 1.0.9762.7562 |
2 |
| Primer | SMRUCC.genomics.Analysis.PrimerDesigner 1.0.9753.40023 |
5 | |
| Primer | SMRUCC.genomics.Analysis.PrimerDesigner 1.0.9762.7562 |
5 |
SMRUCC.genomics.Analysis.PrimerDesigner.Restriction_enzyme
| Type | Summary | Package | Members |
|---|---|---|---|
| Cut | Cut.CutSite1 | Cut.CutSite2 or Cut.CutSite1 对所识别的位点Recognition的剪切的模式 | SMRUCC.genomics.Analysis.PrimerDesigner 1.0.9753.40023 |
5 |
| Cut | Cut.CutSite1 | Cut.CutSite2 or Cut.CutSite1 对所识别的位点Recognition的剪切的模式 | SMRUCC.genomics.Analysis.PrimerDesigner 1.0.9762.7562 |
5 |
| Enzyme | A restriction enzyme or restriction endonuclease is a special type of biological macromolecule that functions as part of the "immune system" in bacteria. | SMRUCC.genomics.Analysis.PrimerDesigner 1.0.9753.40023 |
6 |
| Enzyme | A restriction enzyme or restriction endonuclease is a special type of biological macromolecule that functions as part of the "immune system" in bacteria. | SMRUCC.genomics.Analysis.PrimerDesigner 1.0.9762.7562 |
6 |
| Recognition | Recognition sequence The recognition sequence, sometimes also referred to as recognition site, of any DNA-binding protein motif that exhibits binding specificity, refers to t… | SMRUCC.genomics.Analysis.PrimerDesigner 1.0.9753.40023 |
2 |
| Recognition | Recognition sequence The recognition sequence, sometimes also referred to as recognition site, of any DNA-binding protein motif that exhibits binding specificity, refers to t… | SMRUCC.genomics.Analysis.PrimerDesigner 1.0.9762.7562 |
2 |
| Slicer | enzyme cut sequence simulation | SMRUCC.genomics.Analysis.PrimerDesigner 1.0.9753.40023 |
0 |
| Slicer | enzyme cut sequence simulation | SMRUCC.genomics.Analysis.PrimerDesigner 1.0.9762.7562 |
0 |
| TranslatePatterns | SMRUCC.genomics.Analysis.PrimerDesigner 1.0.9753.40023 |
1 | |
| TranslatePatterns | SMRUCC.genomics.Analysis.PrimerDesigner 1.0.9762.7562 |
1 | |
| WikiLoader | Parser for wikipadia page resource data | SMRUCC.genomics.Analysis.PrimerDesigner 1.0.9753.40023 |
1 |
| WikiLoader | Parser for wikipadia page resource data | SMRUCC.genomics.Analysis.PrimerDesigner 1.0.9762.7562 |
1 |
SMRUCC.genomics.Analysis.RetroPath
SMRUCC.genomics.Analysis.RetroPath.Chem
| Type | Summary | Package | Members |
|---|---|---|---|
| ApplicationResult | 一次规则应用的结果:变换后得到的碎片集合与原子映射。 | SMRUCC.genomics.Analysis.RetroPath 1.0.9753.40023 |
4 |
| ApplicationResult | 一次规则应用的结果:变换后得到的碎片集合与原子映射。 | SMRUCC.genomics.Analysis.RetroPath 1.0.9762.7562 |
4 |
| ApplyPlan | 一条规则在某个应用方向(匹配侧 → 目标侧)上的预计算拓扑。 | SMRUCC.genomics.Analysis.RetroPath 1.0.9753.40023 |
16 |
| ApplyPlan | 一条规则在某个应用方向(匹配侧 → 目标侧)上的预计算拓扑。 | SMRUCC.genomics.Analysis.RetroPath 1.0.9762.7562 |
16 |
| Bond | 化学键:分子图中的一条边,由两个原子索引与键级构成。 | SMRUCC.genomics.Analysis.RetroPath 1.0.9753.40023 |
4 |
| Bond | 化学键:分子图中的一条边,由两个原子索引与键级构成。 | SMRUCC.genomics.Analysis.RetroPath 1.0.9762.7562 |
4 |
| EnzymeTiers | 酶可得性层级(酶可得性评分的代理指标;数值越小代表越容易找到可用酶)。 | SMRUCC.genomics.Analysis.RetroPath 1.0.9753.40023 |
6 |
| EnzymeTiers | 酶可得性层级(酶可得性评分的代理指标;数值越小代表越容易找到可用酶)。 | SMRUCC.genomics.Analysis.RetroPath 1.0.9762.7562 |
6 |
| Molecule | 分子图模型:以原子数组 + 键列表描述的共价分子(可含多个连通分量)。 | SMRUCC.genomics.Analysis.RetroPath 1.0.9753.40023 |
29 |
| Molecule | 分子图模型:以原子数组 + 键列表描述的共价分子(可含多个连通分量)。 | SMRUCC.genomics.Analysis.RetroPath 1.0.9762.7562 |
29 |
| MoleculeSnapshot | 分子在一次匹配期间的只读不变量快照:元素 / 电荷 / 氢总数 / 重原子度 + 邻接表。 | SMRUCC.genomics.Analysis.RetroPath 1.0.9753.40023 |
12 |
| MoleculeSnapshot | 分子在一次匹配期间的只读不变量快照:元素 / 电荷 / 氢总数 / 重原子度 + 邻接表。 | SMRUCC.genomics.Analysis.RetroPath 1.0.9762.7562 |
12 |
| Pattern | 一个完整的子结构模式(规则的一侧):模式原子 + 模式内键 + 逐原子的 !O 标记。 | SMRUCC.genomics.Analysis.RetroPath 1.0.9753.40023 |
6 |
| Pattern | 一个完整的子结构模式(规则的一侧):模式原子 + 模式内键 + 逐原子的 !O 标记。 | SMRUCC.genomics.Analysis.RetroPath 1.0.9762.7562 |
6 |
| PatternAtom | 模式中的一个原子(SMARTS 子集的一个原子约束)。 | SMRUCC.genomics.Analysis.RetroPath 1.0.9753.40023 |
14 |
| PatternAtom | 模式中的一个原子(SMARTS 子集的一个原子约束)。 | SMRUCC.genomics.Analysis.RetroPath 1.0.9762.7562 |
14 |
| PatternMatcher | SMARTS 子集的模式解析与子图单射匹配。 | SMRUCC.genomics.Analysis.RetroPath 1.0.9753.40023 |
2 |
| PatternMatcher | SMARTS 子集的模式解析与子图单射匹配。 | SMRUCC.genomics.Analysis.RetroPath 1.0.9762.7562 |
2 |
| Rule | 一条广义反应规则:(反应物模式, 产物模式, ΔG, 酶层级)。 | SMRUCC.genomics.Analysis.RetroPath 1.0.9753.40023 |
21 |
| Rule | 一条广义反应规则:(反应物模式, 产物模式, ΔG, 酶层级)。 | SMRUCC.genomics.Analysis.RetroPath 1.0.9762.7562 |
21 |
| RuleEngine | 规则引擎:把广义反应规则双向应用于分子,完成"反应中心匹配 + 原子映射 + 拓扑变换"。 | SMRUCC.genomics.Analysis.RetroPath 1.0.9753.40023 |
4 |
| RuleEngine | 规则引擎:把广义反应规则双向应用于分子,完成"反应中心匹配 + 原子映射 + 拓扑变换"。 | SMRUCC.genomics.Analysis.RetroPath 1.0.9762.7562 |
4 |
| SmilesIO | SMILES 的输入/输出:一个"够用即可"的 SMILES 子集解析与确定性写出实现。 | SMRUCC.genomics.Analysis.RetroPath 1.0.9753.40023 |
3 |
| SmilesIO | SMILES 的输入/输出:一个"够用即可"的 SMILES 子集解析与确定性写出实现。 | SMRUCC.genomics.Analysis.RetroPath 1.0.9762.7562 |
3 |
| SmilesWriter | SMILES 写出器:封装一次确定性 DFS 写出所需的全部可变状态。 | SMRUCC.genomics.Analysis.RetroPath 1.0.9753.40023 |
9 |
| SmilesWriter | SMILES 写出器:封装一次确定性 DFS 写出所需的全部可变状态。 | SMRUCC.genomics.Analysis.RetroPath 1.0.9762.7562 |
9 |
SMRUCC.genomics.Analysis.RetroPath.Chem.PatternMatcher
| Type | Summary | Package | Members |
|---|---|---|---|
| MatcherState | 匹配器状态(封装递归回溯) | SMRUCC.genomics.Analysis.RetroPath 1.0.9753.40023 |
1 |
| MatcherState | 匹配器状态(封装递归回溯) | SMRUCC.genomics.Analysis.RetroPath 1.0.9762.7562 |
1 |
SMRUCC.genomics.Analysis.RetroPath.Model
| Type | Summary | Package | Members |
|---|---|---|---|
| ForwardStepDto | 正向通路中一步反应的 JSON DTO。 | SMRUCC.genomics.Analysis.RetroPath 1.0.9753.40023 |
7 |
| ForwardStepDto | 正向通路中一步反应的 JSON DTO。 | SMRUCC.genomics.Analysis.RetroPath 1.0.9762.7562 |
7 |
| PathDto | 一条候选通路的 JSON DTO:评分明细 + 正向生物合成步骤。 | SMRUCC.genomics.Analysis.RetroPath 1.0.9753.40023 |
8 |
| PathDto | 一条候选通路的 JSON DTO:评分明细 + 正向生物合成步骤。 | SMRUCC.genomics.Analysis.RetroPath 1.0.9762.7562 |
8 |
| PathReport | 一次通路搜索的完整结果报告(JSON 输出的根对象)。 | SMRUCC.genomics.Analysis.RetroPath 1.0.9753.40023 |
7 |
| PathReport | 一次通路搜索的完整结果报告(JSON 输出的根对象)。 | SMRUCC.genomics.Analysis.RetroPath 1.0.9762.7562 |
6 |
| RouteDto | 一条「A → B」候选通路的 JSON DTO:原有评分明细 + 经济性指标。 | SMRUCC.genomics.Analysis.RetroPath 1.0.9753.40023 |
15 |
| RouteDto | 一条「A → B」候选通路的 JSON DTO:原有评分明细 + 经济性指标。 | SMRUCC.genomics.Analysis.RetroPath 1.0.9762.7562 |
14 |
| RouteReport | 一次「A → B」定向通路搜索的完整结果报告(JSON 输出的根对象)。 | SMRUCC.genomics.Analysis.RetroPath 1.0.9753.40023 |
10 |
| RouteReport | 一次「A → B」定向通路搜索的完整结果报告(JSON 输出的根对象)。 | SMRUCC.genomics.Analysis.RetroPath 1.0.9762.7562 |
10 |
| RouteStatsDto | A → B 定向搜索的统计信息(在 SearchStatsDto 基础上增加定向搜索相关计数)。 | SMRUCC.genomics.Analysis.RetroPath 1.0.9753.40023 |
4 |
| RouteStatsDto | A → B 定向搜索的统计信息(在 SearchStatsDto 基础上增加定向搜索相关计数)。 | SMRUCC.genomics.Analysis.RetroPath 1.0.9762.7562 |
4 |
| RouteStepDto | 正向通路中一步反应的 JSON DTO(在 ForwardStepDto 基础上增加主链标注)。 | SMRUCC.genomics.Analysis.RetroPath 1.0.9753.40023 |
9 |
| RouteStepDto | 正向通路中一步反应的 JSON DTO(在 ForwardStepDto 基础上增加主链标注)。 | SMRUCC.genomics.Analysis.RetroPath 1.0.9762.7562 |
9 |
| RuleDto | 规则库的 JSON DTO(enumerate-rules 子命令的输出单元)。 | SMRUCC.genomics.Analysis.RetroPath 1.0.9753.40023 |
7 |
| RuleDto | 规则库的 JSON DTO(enumerate-rules 子命令的输出单元)。 | SMRUCC.genomics.Analysis.RetroPath 1.0.9762.7562 |
7 |
| SearchParameters | 搜索参数快照(随结果一同输出,便于复现)。 | SMRUCC.genomics.Analysis.RetroPath 1.0.9753.40023 |
6 |
| SearchParameters | 搜索参数快照(随结果一同输出,便于复现)。 | SMRUCC.genomics.Analysis.RetroPath 1.0.9762.7562 |
6 |
| SearchStatsDto | 搜索统计(JSON DTO)。 | SMRUCC.genomics.Analysis.RetroPath 1.0.9753.40023 |
7 |
| SearchStatsDto | 搜索统计(JSON DTO)。 | SMRUCC.genomics.Analysis.RetroPath 1.0.9762.7562 |
7 |
| SourceRoles | 起点化合物 A 在通路中允许扮演的角色。 | SMRUCC.genomics.Analysis.RetroPath 1.0.9753.40023 |
4 |
| SourceRoles | 起点化合物 A 在通路中允许扮演的角色。 | SMRUCC.genomics.Analysis.RetroPath 1.0.9762.7562 |
4 |
SMRUCC.genomics.Analysis.RetroPath.Netwalk
| Type | Summary | Package | Members |
|---|---|---|---|
| RouteCandidate | 一条满足起点约束的候选通路(中间结构,供排序与 DTO 组装使用) | SMRUCC.genomics.Analysis.RetroPath 1.0.9753.40023 |
3 |
| RouteCandidate | 一条满足起点约束的候选通路(中间结构,供排序与 DTO 组装使用) | SMRUCC.genomics.Analysis.RetroPath 1.0.9762.7562 |
3 |
SMRUCC.genomics.Analysis.RetroPath.Search
| Type | Summary | Package | Members |
|---|---|---|---|
| BeamSearch | 逆向路径搜索:以目标分子为根,逐层把广义规则逆向应用(亦尝试正向)展开搜索树, 直到所有前体落入汇集合。 | SMRUCC.genomics.Analysis.RetroPath 1.0.9753.40023 |
10 |
| BeamSearch | 逆向路径搜索:以目标分子为根,逐层把广义规则逆向应用(亦尝试正向)展开搜索树, 直到所有前体落入汇集合。 | SMRUCC.genomics.Analysis.RetroPath 1.0.9762.7562 |
10 |
| ForwardStep | 正向路径步骤(供 JSON 输出) | SMRUCC.genomics.Analysis.RetroPath 1.0.9753.40023 |
14 |
| ForwardStep | 正向路径步骤(供 JSON 输出) | SMRUCC.genomics.Analysis.RetroPath 1.0.9762.7562 |
14 |
| PathScores | 一条完整路径的多维评分结果。 | SMRUCC.genomics.Analysis.RetroPath 1.0.9753.40023 |
12 |
| PathScores | 一条完整路径的多维评分结果。 | SMRUCC.genomics.Analysis.RetroPath 1.0.9762.7562 |
12 |
| RetroStep | 一步逆合成:把某个化合物按某条规则分解成若干前体。 | SMRUCC.genomics.Analysis.RetroPath 1.0.9753.40023 |
20 |
| RetroStep | 一步逆合成:把某个化合物按某条规则分解成若干前体。 | SMRUCC.genomics.Analysis.RetroPath 1.0.9762.7562 |
20 |
| RuleFilter | 规则集的按方向元素需求表:用于在实际匹配前快速排除不可能命中的规则。 | SMRUCC.genomics.Analysis.RetroPath 1.0.9753.40023 |
7 |
| RuleFilter | 规则集的按方向元素需求表:用于在实际匹配前快速排除不可能命中的规则。 | SMRUCC.genomics.Analysis.RetroPath 1.0.9762.7562 |
7 |
| RuleLibrary | 反应规则库:内置广义规则 + 用户 TSV 扩展。 | SMRUCC.genomics.Analysis.RetroPath 1.0.9753.40023 |
3 |
| RuleLibrary | 反应规则库:内置广义规则 + 用户 TSV 扩展。 | SMRUCC.genomics.Analysis.RetroPath 1.0.9762.7562 |
3 |
| ScoreWeights | 路径评分权重:热力学、酶可得性、长度三项的加权系数。 | SMRUCC.genomics.Analysis.RetroPath 1.0.9753.40023 |
6 |
| ScoreWeights | 路径评分权重:热力学、酶可得性、长度三项的加权系数。 | SMRUCC.genomics.Analysis.RetroPath 1.0.9762.7562 |
6 |
| Scoring | 路径评分与正向组装:把逆合成步骤序列翻转为生物合成方向的步骤列表, 并按热力学 / 酶可得性 / 路径长度给出全局分。 | SMRUCC.genomics.Analysis.RetroPath 1.0.9753.40023 |
3 |
| Scoring | 路径评分与正向组装:把逆合成步骤序列翻转为生物合成方向的步骤列表, 并按热力学 / 酶可得性 / 路径长度给出全局分。 | SMRUCC.genomics.Analysis.RetroPath 1.0.9762.7562 |
3 |
| SearchOptions | 逆向路径搜索的运行参数。 | SMRUCC.genomics.Analysis.RetroPath 1.0.9753.40023 |
15 |
| SearchOptions | 逆向路径搜索的运行参数。 | SMRUCC.genomics.Analysis.RetroPath 1.0.9762.7562 |
15 |
| SearchState | 搜索状态:一个"尚未落入汇集合的化合物集合"(RetroPath2.0 的化合物空间语义)。 | SMRUCC.genomics.Analysis.RetroPath 1.0.9753.40023 |
8 |
| SearchState | 搜索状态:一个"尚未落入汇集合的化合物集合"(RetroPath2.0 的化合物空间语义)。 | SMRUCC.genomics.Analysis.RetroPath 1.0.9762.7562 |
8 |
| SearchStats | 一次搜索过程的运行统计(用于结果报告与性能诊断)。 | SMRUCC.genomics.Analysis.RetroPath 1.0.9753.40023 |
12 |
| SearchStats | 一次搜索过程的运行统计(用于结果报告与性能诊断)。 | SMRUCC.genomics.Analysis.RetroPath 1.0.9762.7562 |
12 |
SMRUCC.genomics.Analysis.RetroPath.Search.BeamSearch
| Type | Summary | Package | Members |
|---|---|---|---|
| Expansion | 一个展开产出,携带其在有序序列中的坐标,用于确定性归并 | SMRUCC.genomics.Analysis.RetroPath 1.0.9753.40023 |
0 |
| Expansion | 一个展开产出,携带其在有序序列中的坐标,用于确定性归并 | SMRUCC.genomics.Analysis.RetroPath 1.0.9762.7562 |
0 |
| LocalAcc | 并行分区的本地累加器(统计 + 结果缓冲,避免共享集合与锁竞争) | SMRUCC.genomics.Analysis.RetroPath 1.0.9753.40023 |
0 |
| LocalAcc | 并行分区的本地累加器(统计 + 结果缓冲,避免共享集合与锁竞争) | SMRUCC.genomics.Analysis.RetroPath 1.0.9762.7562 |
0 |
| PendingItem | 一个待展开的「状态中的某个化合物」 | SMRUCC.genomics.Analysis.RetroPath 1.0.9753.40023 |
0 |
| PendingItem | 一个待展开的「状态中的某个化合物」 | SMRUCC.genomics.Analysis.RetroPath 1.0.9762.7562 |
0 |
| WorkUnit | 一个展开工作单元 = (待分解物, 规则),含预过滤后仍需尝试的方向 | SMRUCC.genomics.Analysis.RetroPath 1.0.9753.40023 |
1 |
| WorkUnit | 一个展开工作单元 = (待分解物, 规则),含预过滤后仍需尝试的方向 | SMRUCC.genomics.Analysis.RetroPath 1.0.9762.7562 |
1 |
SMRUCC.genomics.Analysis.RNA_Seq.RTools.WGCNA
| Type | Summary | Package | Members |
|---|---|---|---|
| ClusterModuleResult | tsv file model of the WGCNA module result exports | SMRUCC.genomics.Analysis.RNA_Seq.RTools.WGCNA 1.0.9753.40023 |
4 |
| ClusterModuleResult | tsv file model of the WGCNA module result exports | SMRUCC.genomics.Analysis.RNA_Seq.RTools.WGCNA 1.0.9762.7562 |
1 |
| Rscript | SMRUCC.genomics.Analysis.RNA_Seq.RTools.WGCNA 1.0.9753.40023 |
4 | |
| Rscript | SMRUCC.genomics.Analysis.RNA_Seq.RTools.WGCNA 1.0.9762.7562 |
4 | |
| WGCNAModules | SMRUCC.genomics.Analysis.RNA_Seq.RTools.WGCNA 1.0.9753.40023 |
2 | |
| WGCNAModules | SMRUCC.genomics.Analysis.RNA_Seq.RTools.WGCNA 1.0.9762.7562 |
2 |
SMRUCC.genomics.Analysis.RNA_Seq.RTools.WGCNA.Network
| Type | Summary | Package | Members |
|---|---|---|---|
| CExprMods | CytoscapeNodes | SMRUCC.genomics.Analysis.RNA_Seq.RTools.WGCNA 1.0.9753.40023 |
4 |
| CExprMods | CytoscapeNodes | SMRUCC.genomics.Analysis.RNA_Seq.RTools.WGCNA 1.0.9762.7562 |
1 |
| Weight | CytoscapeEdges | SMRUCC.genomics.Analysis.RNA_Seq.RTools.WGCNA 1.0.9753.40023 |
1 |
| Weight | CytoscapeEdges | SMRUCC.genomics.Analysis.RNA_Seq.RTools.WGCNA 1.0.9762.7562 |
1 |
| WGCNAWeight | 包含有结果数据的加载模块以及脚本的执行调用模块 | SMRUCC.genomics.Analysis.RNA_Seq.RTools.WGCNA 1.0.9753.40023 |
4 |
| WGCNAWeight | 包含有结果数据的加载模块以及脚本的执行调用模块 | SMRUCC.genomics.Analysis.RNA_Seq.RTools.WGCNA 1.0.9762.7562 |
4 |
SMRUCC.genomics.Analysis.RNA_Seq.TSSAR
| Type | Summary | Package | Members |
|---|---|---|---|
| AlignmentIO | SAM / FastQ 通用读写辅助函数。 | SMRUCC.genomics.Analysis.RNA-Seq.TSSAR 1.0.9753.40023 |
3 |
| AlignmentIO | SAM / FastQ 通用读写辅助函数。 | SMRUCC.genomics.Analysis.RNA-Seq.TSSAR 1.0.9762.7562 |
3 |
| BedWriter | TSSAR 结果文件的输出(BED 格式)。 | SMRUCC.genomics.Analysis.RNA-Seq.TSSAR 1.0.9753.40023 |
3 |
| BedWriter | TSSAR 结果文件的输出(BED 格式)。 | SMRUCC.genomics.Analysis.RNA-Seq.TSSAR 1.0.9762.7562 |
3 |
| CoverageMap | 双库([+] / [-])双链的逐位置 read 起始覆盖度。 | SMRUCC.genomics.Analysis.RNA-Seq.TSSAR 1.0.9753.40023 |
10 |
| CoverageMap | 双库([+] / [-])双链的逐位置 read 起始覆盖度。 | SMRUCC.genomics.Analysis.RNA-Seq.TSSAR 1.0.9762.7562 |
10 |
| Reads | SMRUCC.genomics.Analysis.RNA-Seq.TSSAR 1.0.9753.40023 |
3 | |
| Reads | SMRUCC.genomics.Analysis.RNA-Seq.TSSAR 1.0.9762.7562 |
3 | |
| ReadsCoverage | 从 SAM 比对文件统计双库双链的逐位置 read 起始覆盖度。 | SMRUCC.genomics.Analysis.RNA-Seq.TSSAR 1.0.9753.40023 |
2 |
| ReadsCoverage | 从 SAM 比对文件统计双库双链的逐位置 read 起始覆盖度。 | SMRUCC.genomics.Analysis.RNA-Seq.TSSAR 1.0.9762.7562 |
2 |
| TSSAR | T*ranscription *S*tart *S*ites *A*nnotation *R*egime(TSSAR): 基于 dRNA-seq 数据的转录起始位点注释算法。 | SMRUCC.genomics.Analysis.RNA-Seq.TSSAR 1.0.9753.40023 |
2 |
| TSSAR | T*ranscription *S*tart *S*ites *A*nnotation *R*egime(TSSAR): 基于 dRNA-seq 数据的转录起始位点注释算法。 | SMRUCC.genomics.Analysis.RNA-Seq.TSSAR 1.0.9762.7562 |
2 |
| TssClassification | 基于基因注释(PTT)对 TSS 执行基因组上下文分类,并推断 5'UTR 长度。 | SMRUCC.genomics.Analysis.RNA-Seq.TSSAR 1.0.9753.40023 |
2 |
| TssClassification | 基于基因注释(PTT)对 TSS 执行基因组上下文分类,并推断 5'UTR 长度。 | SMRUCC.genomics.Analysis.RNA-Seq.TSSAR 1.0.9762.7562 |
2 |
| TssClustering | 对连续的 TSS 位置执行聚类合并,只保留每一个簇之中最显著的位点。 | SMRUCC.genomics.Analysis.RNA-Seq.TSSAR 1.0.9753.40023 |
2 |
| TssClustering | 对连续的 TSS 位置执行聚类合并,只保留每一个簇之中最显著的位点。 | SMRUCC.genomics.Analysis.RNA-Seq.TSSAR 1.0.9762.7562 |
2 |
SMRUCC.genomics.Analysis.RNA_Seq.TSSAR.Models
| Type | Summary | Package | Members |
|---|---|---|---|
| CoverageProfile | 逐位置 read 起始覆盖度记录。 | SMRUCC.genomics.Analysis.RNA-Seq.TSSAR 1.0.9753.40023 |
3 |
| CoverageProfile | 逐位置 read 起始覆盖度记录。 | SMRUCC.genomics.Analysis.RNA-Seq.TSSAR 1.0.9762.7562 |
3 |
| DumpRegion | 由于零膨胀 Poisson 回归不能收敛(无法建模)而被排除出分析的基因组区间。 | SMRUCC.genomics.Analysis.RNA-Seq.TSSAR 1.0.9753.40023 |
4 |
| DumpRegion | 由于零膨胀 Poisson 回归不能收敛(无法建模)而被排除出分析的基因组区间。 | SMRUCC.genomics.Analysis.RNA-Seq.TSSAR 1.0.9762.7562 |
4 |
| ScoreModes | TSS 输出的评分(同时也是聚类时选择代表位点)的模式, 对应 TSSAR 的 --score 选项。 | SMRUCC.genomics.Analysis.RNA-Seq.TSSAR 1.0.9753.40023 |
4 |
| ScoreModes | TSS 输出的评分(同时也是聚类时选择代表位点)的模式, 对应 TSSAR 的 --score 选项。 | SMRUCC.genomics.Analysis.RNA-Seq.TSSAR 1.0.9762.7562 |
4 |
| TssarOptions | TSSAR 的运行参数。 | SMRUCC.genomics.Analysis.RNA-Seq.TSSAR 1.0.9753.40023 |
18 |
| TssarOptions | TSSAR 的运行参数。 | SMRUCC.genomics.Analysis.RNA-Seq.TSSAR 1.0.9762.7562 |
18 |
| TssarResult | TSSAR 的运行结果。 | SMRUCC.genomics.Analysis.RNA-Seq.TSSAR 1.0.9753.40023 |
10 |
| TssarResult | TSSAR 的运行结果。 | SMRUCC.genomics.Analysis.RNA-Seq.TSSAR 1.0.9762.7562 |
10 |
| TssSite | 一条被注释为转录起始位点(TSS)的结果记录。 | SMRUCC.genomics.Analysis.RNA-Seq.TSSAR 1.0.9753.40023 |
13 |
| TssSite | 一条被注释为转录起始位点(TSS)的结果记录。 | SMRUCC.genomics.Analysis.RNA-Seq.TSSAR 1.0.9762.7562 |
13 |
| TssTypes | TSS 相对于基因组注释(PTT/GFF)的上下文分类, 对应 TSSAR 论文后处理阶段的 Primary / Internal / Antisense(Ai/Ad) / Orphan 分类。 | SMRUCC.genomics.Analysis.RNA-Seq.TSSAR 1.0.9753.40023 |
10 |
| TssTypes | TSS 相对于基因组注释(PTT/GFF)的上下文分类, 对应 TSSAR 论文后处理阶段的 Primary / Internal / Antisense(Ai/Ad) / Orphan 分类。 | SMRUCC.genomics.Analysis.RNA-Seq.TSSAR 1.0.9762.7562 |
10 |
SMRUCC.genomics.Analysis.RNA_Seq.TSSAR.Statistics
| Type | Summary | Package | Members |
|---|---|---|---|
| MultipleTesting | 多重检验校正封装,对应 TSSAR 的 --mtc 选项。 | SMRUCC.genomics.Analysis.RNA-Seq.TSSAR 1.0.9753.40023 |
1 |
| MultipleTesting | 多重检验校正封装,对应 TSSAR 的 --mtc 选项。 | SMRUCC.genomics.Analysis.RNA-Seq.TSSAR 1.0.9762.7562 |
1 |
| SlidingWindow | 滑动窗口核心算法:局部零膨胀 Poisson 背景估计 + Skellam 显著性检验。 | SMRUCC.genomics.Analysis.RNA-Seq.TSSAR 1.0.9753.40023 |
5 |
| SlidingWindow | 滑动窗口核心算法:局部零膨胀 Poisson 背景估计 + Skellam 显著性检验。 | SMRUCC.genomics.Analysis.RNA-Seq.TSSAR 1.0.9762.7562 |
5 |
| StrandPValueResult | 单条链(正链或负链)的滑动窗口分析结果。 | SMRUCC.genomics.Analysis.RNA-Seq.TSSAR 1.0.9753.40023 |
4 |
| StrandPValueResult | 单条链(正链或负链)的滑动窗口分析结果。 | SMRUCC.genomics.Analysis.RNA-Seq.TSSAR 1.0.9762.7562 |
4 |
| ZipEstimate | 截距型零膨胀 Poisson(zero-inflated Poisson, ZIP)模型的最大似然估计结果。 | SMRUCC.genomics.Analysis.RNA-Seq.TSSAR 1.0.9753.40023 |
8 |
| ZipEstimate | 截距型零膨胀 Poisson(zero-inflated Poisson, ZIP)模型的最大似然估计结果。 | SMRUCC.genomics.Analysis.RNA-Seq.TSSAR 1.0.9762.7562 |
8 |
| ZipRegression | 截距型零膨胀 Poisson 模型的最大似然参数估计。 | SMRUCC.genomics.Analysis.RNA-Seq.TSSAR 1.0.9753.40023 |
3 |
| ZipRegression | 截距型零膨胀 Poisson 模型的最大似然参数估计。 | SMRUCC.genomics.Analysis.RNA-Seq.TSSAR 1.0.9762.7562 |
3 |
SMRUCC.genomics.Analysis.SequenceAlignment
| Type | Summary | Package | Members |
|---|---|---|---|
| CDHashTask | 序列的 min-hash 签名计算任务(并行) | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9753.40023 |
6 |
| CDHashTask | 序列的 min-hash 签名计算任务(并行) | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9762.7562 |
5 |
| CDHit | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9753.40023 |
4 | |
| CDHit | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9762.7562 |
4 | |
| CDHitLSH | CD-HIT 的并行 LSH 分桶索引 | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9753.40023 |
3 |
| CDHitLSH | CD-HIT 的并行 LSH 分桶索引 | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9762.7562 |
3 |
| CDHitLSHBuckets | LSH 分桶索引:可以按照 (序列下标, 波段) 来查询该序列所属的那个桶里面的全部序列 | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9753.40023 |
2 |
| CDHitLSHBuckets | LSH 分桶索引:可以按照 (序列下标, 波段) 来查询该序列所属的那个桶里面的全部序列 | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9762.7562 |
2 |
| EValue | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9753.40023 |
5 | |
| EValue | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9762.7562 |
5 | |
| SimilarHit | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9753.40023 |
6 | |
| SimilarHit | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9762.7562 |
2 |
SMRUCC.genomics.Analysis.SequenceAlignment.BestLocalAlignment
| Type | Summary | Package | Members |
|---|---|---|---|
| Blosum | Blosum-62 substitution matrix # A R N D C Q E G H I L K M F P S T W Y V A 4 -1 -2 -2 0 -1 -1 0 -2 -1 -1 -1 -1 -2 -1 1 0 -3 -2 0 R -1 5 0 -2 -3 1… | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9753.40023 |
7 |
| Blosum | Blosum-62 substitution matrix # A R N D C Q E G H I L K M F P S T W Y V A 4 -1 -2 -2 0 -1 -1 0 -2 -1 -1 -1 -1 -2 -1 1 0 -3 -2 0 R -1 5 0 -2 -3 1… | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9762.7562 |
7 |
| BlosumParser | Parser for the NCBI blosum matrix file | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9753.40023 |
2 |
| BlosumParser | Parser for the NCBI blosum matrix file | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9762.7562 |
2 |
| CoreDump | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9753.40023 |
3 | |
| CoreDump | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9762.7562 |
3 | |
| Coverage | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9753.40023 |
1 | |
| Coverage | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9762.7562 |
1 | |
| HSP | matched high score aligned region in two sequence pairewise alignment result | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9753.40023 |
2 |
| HSP | matched high score aligned region in two sequence pairewise alignment result | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9762.7562 |
2 |
| Output | Smith-Waterman 局部比对的完整输出结果。 | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9753.40023 |
7 |
| Output | Smith-Waterman 局部比对的完整输出结果。 | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9762.7562 |
7 |
| SmithWaterman | Smith-Waterman local alignment algorithm. | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9753.40023 |
5 |
| SmithWaterman | Smith-Waterman local alignment algorithm. | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9762.7562 |
5 |
SMRUCC.genomics.Analysis.SequenceAlignment.DIAMOND
| Type | Summary | Package | Members |
|---|---|---|---|
| BandHit | 一次带状 SW 比对的结果(HSP),坐标均为全局 0-based。 | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9753.40023 |
7 |
| BandHit | 一次带状 SW 比对的结果(HSP),坐标均为全局 0-based。 | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9762.7562 |
7 |
| BandSW | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9753.40023 |
5 | |
| BandSW | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9762.7562 |
5 | |
| DiamondBlastp | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9753.40023 |
8 | |
| DiamondBlastp | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9762.7562 |
8 | |
| DiamondHit | 单条 DIAMOND 比对命中(m8 风格)。 | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9753.40023 |
18 |
| DiamondHit | 单条 DIAMOND 比对命中(m8 风格)。 | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9762.7562 |
18 |
| DistributedScheduler | 分布式调度骨架。重写 DistributedScheduler.DispatchCore()) 以接入真实集群。 | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9753.40023 |
5 |
| DistributedScheduler | 分布式调度骨架。重写 DistributedScheduler.DispatchCore()) 以接入真实集群。 | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9762.7562 |
5 |
| HammingFilter | 标量 Hamming 距离过滤器(48aa 窗口)。 | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9753.40023 |
6 |
| HammingFilter | 标量 Hamming 距离过滤器(48aa 窗口)。 | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9762.7562 |
6 |
| HammingFilterSse | SSE2 向量化 Hamming 距离过滤器(48aa 窗口),实现 IHammingFilter 接口。 | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9753.40023 |
6 |
| HammingFilterSse | SSE2 向量化 Hamming 距离过滤器(48aa 窗口),实现 IHammingFilter 接口。 | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9762.7562 |
6 |
| HitScheduler | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9753.40023 |
6 | |
| HitScheduler | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9762.7562 |
6 | |
| IDiamondScheduler | 多查询调度边界。 queries: 查询序列数组。 subjectDb: 参考蛋白库(只读共享)。 perQuery: 对单条查询执行 DIAMOND 流水线并返回命中的函数(由 DiamondBlastp 提供)。 返回: 所有查询命中的聚合结果。 | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9753.40023 |
0 |
| IDiamondScheduler | 多查询调度边界。 queries: 查询序列数组。 subjectDb: 参考蛋白库(只读共享)。 perQuery: 对单条查询执行 DIAMOND 流水线并返回命中的函数(由 DiamondBlastp 提供)。 返回: 所有查询命中的聚合结果。 | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9762.7562 |
0 |
| IHammingFilter | 在种子命中周围窗口计算 Hamming 距离并判定是否通过的过滤器。 | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9753.40023 |
2 |
| IHammingFilter | 在种子命中周围窗口计算 Hamming 距离并判定是否通过的过滤器。 | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9762.7562 |
2 |
| LeftMostSeedFilter | 最左种子去冗余过滤器。跨形状累积已见过的种子命中,丢弃左侧已覆盖的冗余命中。 | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9753.40023 |
2 |
| LeftMostSeedFilter | 最左种子去冗余过滤器。跨形状累积已见过的种子命中,丢弃左侧已覆盖的冗余命中。 | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9762.7562 |
2 |
| PairAlign | 轻量单对单局部比对判定器,面向序列聚类分析(如 CD-HIT 风格的成对同源判定)。 | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9753.40023 |
6 |
| PairAlign | 轻量单对单局部比对判定器,面向序列聚类分析(如 CD-HIT 风格的成对同源判定)。 | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9762.7562 |
6 |
| ParallelScheduler | 单机 PLINQ 并行调度器(默认多查询调度策略)。 | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9753.40023 |
2 |
| ParallelScheduler | 单机 PLINQ 并行调度器(默认多查询调度策略)。 | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9762.7562 |
2 |
| QueryIndex | 查询索引(临时,单条查询序列)与参考索引的哈希连接。 | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9753.40023 |
4 |
| QueryIndex | 查询索引(临时,单条查询序列)与参考索引的哈希连接。 | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9762.7562 |
4 |
| ReducedAlphabet | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9753.40023 |
7 | |
| ReducedAlphabet | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9762.7562 |
7 | |
| ReferenceIndex | 参考库双索引:种子编码 -> 出现位置列表。 | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9753.40023 |
4 |
| ReferenceIndex | 参考库双索引:种子编码 -> 出现位置列表。 | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9762.7562 |
4 |
| ScheduledHit | 待调度候选(已通过全部前期过滤,带无空位延伸得分)。 | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9753.40023 |
5 |
| ScheduledHit | 待调度候选(已通过全部前期过滤,带无空位延伸得分)。 | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9762.7562 |
5 |
| SeedEncoder | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9753.40023 |
3 | |
| SeedEncoder | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9762.7562 |
3 | |
| SeedHitPosition | 序列中一个种子命中的位置记录(相对序列内坐标)。 | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9753.40023 |
4 |
| SeedHitPosition | 序列中一个种子命中的位置记录(相对序列内坐标)。 | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9762.7562 |
4 |
| SeedPair | 查询与参考配对后的一个种子命中(用于后续过滤链)。 | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9753.40023 |
3 |
| SeedPair | 查询与参考配对后的一个种子命中(用于后续过滤链)。 | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9762.7562 |
3 |
| SensitivityMode | DIAMOND 灵敏度模式。本质是在种子数量与过滤严格度之间滑动。 | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9753.40023 |
8 |
| SensitivityMode | DIAMOND 灵敏度模式。本质是在种子数量与过滤严格度之间滑动。 | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9762.7562 |
8 |
| SpacedSeed | 间隔种子形状(位掩码 + 权重)。 | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9753.40023 |
7 |
| SpacedSeed | 间隔种子形状(位掩码 + 权重)。 | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9762.7562 |
7 |
| SpacedSeeds | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9753.40023 |
4 | |
| SpacedSeeds | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9762.7562 |
4 | |
| SubjectHit | 参考序列中一个种子命中的位置。 | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9753.40023 |
4 |
| SubjectHit | 参考序列中一个种子命中的位置。 | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9762.7562 |
4 |
| UngappedExtension | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9753.40023 |
3 | |
| UngappedExtension | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9762.7562 |
3 | |
| UngappedExtensionAvx2 | AVX2 向量化无空位延伸(批量 1 查询 × ≤32 参考 并行)。 | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9753.40023 |
6 |
| UngappedExtensionAvx2 | AVX2 向量化无空位延伸(批量 1 查询 × ≤32 参考 并行)。 | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9762.7562 |
6 |
| UngappedHit | 无空位延伸的结果。 | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9753.40023 |
5 |
| UngappedHit | 无空位延伸的结果。 | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9762.7562 |
5 |
SMRUCC.genomics.Analysis.SequenceAlignment.GlobalAlignment
| Type | Summary | Package | Members |
|---|---|---|---|
| GapPenalty | Class to implement linear and affine gap penalties Bioinformatics 1, WS 15/16 Jonas Ditz and Benjamin Schroeder | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9753.40023 |
4 |
| GapPenalty | Class to implement linear and affine gap penalties Bioinformatics 1, WS 15/16 Jonas Ditz and Benjamin Schroeder | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9762.7562 |
4 |
| RunNeedlemanWunsch | Application of the Needleman-Wunsch Algorithm Bioinformatics 1, WS 15/16 Dr. | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9753.40023 |
2 |
| RunNeedlemanWunsch | Application of the Needleman-Wunsch Algorithm Bioinformatics 1, WS 15/16 Dr. | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9762.7562 |
2 |
SMRUCC.genomics.Analysis.SequenceAlignment.MSA
SMRUCC.genomics.Analysis.SequenceAlignment.MSA.Tabular
| Type | Summary | Package | Members |
|---|---|---|---|
| Stockholm | Tabular MSA file Stockholm format is a Multiple sequence alignment format used by Pfam and Rfam to disseminate protein and RNA sequence alignments. | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9753.40023 |
5 |
| Stockholm | Tabular MSA file Stockholm format is a Multiple sequence alignment format used by Pfam and Rfam to disseminate protein and RNA sequence alignments. | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9762.7562 |
5 |
SMRUCC.genomics.Analysis.SequenceAlignment.siRNAHit
| Type | Summary | Package | Members |
|---|---|---|---|
| BlastFilterMiRNATargets | 通过ncbi blastn进行靶基因搜索加速 | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9753.40023 |
4 |
| BlastFilterMiRNATargets | 通过ncbi blastn进行靶基因搜索加速 | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9762.7562 |
4 |
| BlastnMapTable | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9753.40023 |
19 | |
| BlastnMapTable | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9762.7562 |
19 | |
| DisabledAccessibility | 默认关闭的 UPE 评估器:始终返回 0(不影响期望计算)。 | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9753.40023 |
1 |
| DisabledAccessibility | 默认关闭的 UPE 评估器:始终返回 0(不影响期望计算)。 | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9762.7562 |
1 |
| IAccessibilityEvaluator | psRNATarget 靶标可及性(UPE)评估接口,默认关闭(返回 0)。 如需基于 RNAup 计算解开能,可实现该接口后注入 psRNATarget。 | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9753.40023 |
1 |
| IAccessibilityEvaluator | psRNATarget 靶标可及性(UPE)评估接口,默认关闭(返回 0)。 如需基于 RNAup 计算解开能,可实现该接口后注入 psRNATarget。 | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9762.7562 |
1 |
| Intersection | psRNATarget 与 TargetFinder 两算法结果的交集合并器。 高置信靶标定义为:同一 (miRNA, 靶标 mRNA, 靶位点) 同时被两种算法命中。 由于两算法报告的坐标可能存在小幅偏移,采用 ±Intersection.SiteTolerance nt 的容差进行对齐。 | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9753.40023 |
5 |
| Intersection | psRNATarget 与 TargetFinder 两算法结果的交集合并器。 高置信靶标定义为:同一 (miRNA, 靶标 mRNA, 靶位点) 同时被两种算法命中。 由于两算法报告的坐标可能存在小幅偏移,采用 ±Intersection.SiteTolerance nt 的容差进行对齐。 | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9762.7562 |
5 |
| psRNATarget | psRNATarget 小RNA靶标预测算法实现。 采用反向互补比对:miRNA 经 RNA 反向互补后作为正向 query 与 mRNA 做 Smith-Waterman 局部比对,再依据位置加权罚分体系计算期望值(Expectation)。 期望值越低代表互补质量越好。 支持 V1(2011)/ V2(2017,默认)两套 Schema。 | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9753.40023 |
14 |
| psRNATarget | psRNATarget 小RNA靶标预测算法实现。 采用反向互补比对:miRNA 经 RNA 反向互补后作为正向 query 与 mRNA 做 Smith-Waterman 局部比对,再依据位置加权罚分体系计算期望值(Expectation)。 期望值越低代表互补质量越好。 支持 V1(2011)/ V2(2017,默认)两套 Schema。 | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9762.7562 |
14 |
| RNASeqHelper | RNA 序列操作辅助工具:反向互补、碱基配对分类以及驱动 Smith-Waterman 比对所需的核酸专用 GenericSymbol 打分符号。 注:Bio.Assembly 的 NucleicAcid.Complement 仅处理 DNA(A/T/G/C),不识别 U, 因此这里单独实现 RNA(A/U/G/C)的反向互补。 | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9753.40023 |
9 |
| RNASeqHelper | RNA 序列操作辅助工具:反向互补、碱基配对分类以及驱动 Smith-Waterman 比对所需的核酸专用 GenericSymbol 打分符号。 注:Bio.Assembly 的 NucleicAcid.Complement 仅处理 DNA(A/T/G/C),不识别 U, 因此这里单独实现 RNA(A/U/G/C)的反向互补。 | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9762.7562 |
9 |
| siRNAHit | 小RNA(miRNA/siRNA)与靶标 mRNA 的互补匹配命中结果模型。 两个算法(psRNATarget / TargetFinder)共用此结构,便于后续求交集。 | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9753.40023 |
14 |
| siRNAHit | 小RNA(miRNA/siRNA)与靶标 mRNA 的互补匹配命中结果模型。 两个算法(psRNATarget / TargetFinder)共用此结构,便于后续求交集。 | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9762.7562 |
14 |
| TargetFinder | TargetFinder 小RNA靶标预测算法实现。 核心:将 miRNA 反向互补为正向 query,与候选 mRNA 做 Smith-Waterman 局部 比对,再从比对串中按 miRNA 5'→3' 逐位施加位置权重罚分,最后按四条规则过滤。 参考 siRNA.md 给出的 ssearch35 参数:-r +15/-10。 | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9753.40023 |
14 |
| TargetFinder | TargetFinder 小RNA靶标预测算法实现。 核心:将 miRNA 反向互补为正向 query,与候选 mRNA 做 Smith-Waterman 局部 比对,再从比对串中按 miRNA 5'→3' 逐位施加位置权重罚分,最后按四条规则过滤。 参考 siRNA.md 给出的 ssearch35 参数:-r +15/-10。 | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9762.7562 |
14 |
SMRUCC.genomics.Analysis.SequenceAlignment.siRNAHit.BlastFilterMiRNATargets
| Type | Summary | Package | Members |
|---|---|---|---|
| AlignmentScore | 打分结果容器 | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9753.40023 |
5 |
| AlignmentScore | 打分结果容器 | SMRUCC.genomics.Analysis.SequenceAlignment 1.0.9762.7562 |
5 |
SMRUCC.genomics.Analysis.SequenceAlignment.siRNAHit.psRNATarget
SMRUCC.genomics.Analysis.SequenceAlignment.siRNAHit.RNASeqHelper
SMRUCC.genomics.Analysis.SequenceTools.DNA_Comparative
| Type | Summary | Package | Members |
|---|---|---|---|
| GCOutlier | GC%异常点分析 | SMRUCC.genomics.Analysis.SequenceTools.DNA_Comparative 1.0.9753.40023 |
1 |
| GCOutlier | GC%异常点分析 | SMRUCC.genomics.Analysis.SequenceTools.DNA_Comparative 1.0.9762.7562 |
1 |
| IdentityResult | 核酸序列的一致性的计算结果 | SMRUCC.genomics.Analysis.SequenceTools.DNA_Comparative 1.0.9753.40023 |
5 |
| IdentityResult | 核酸序列的一致性的计算结果 | SMRUCC.genomics.Analysis.SequenceTools.DNA_Comparative 1.0.9762.7562 |
2 |
| PartitioningData | The genome partitional data.(基因组分区数据) | SMRUCC.genomics.Analysis.SequenceTools.DNA_Comparative 1.0.9753.40023 |
4 |
| PartitioningData | The genome partitional data.(基因组分区数据) | SMRUCC.genomics.Analysis.SequenceTools.DNA_Comparative 1.0.9762.7562 |
4 |
| SegmentRenderData | SMRUCC.genomics.Analysis.SequenceTools.DNA_Comparative 1.0.9753.40023 |
4 | |
| SegmentRenderData | SMRUCC.genomics.Analysis.SequenceTools.DNA_Comparative 1.0.9762.7562 |
4 | |
| SiteSigma | 基因组两两比较所得到的位点距离数据 | SMRUCC.genomics.Analysis.SequenceTools.DNA_Comparative 1.0.9753.40023 |
3 |
| SiteSigma | 基因组两两比较所得到的位点距离数据 | SMRUCC.genomics.Analysis.SequenceTools.DNA_Comparative 1.0.9762.7562 |
3 |
| ToolsAPI | SMRUCC.genomics.Analysis.SequenceTools.DNA_Comparative 1.0.9753.40023 |
3 | |
| ToolsAPI | SMRUCC.genomics.Analysis.SequenceTools.DNA_Comparative 1.0.9762.7562 |
3 |
SMRUCC.genomics.Analysis.SequenceTools.DNA_Comparative.DeltaSimilarity1998
| Type | Summary | Package | Members |
|---|---|---|---|
| DifferenceMeasurement | MEASURES OF DIFFERENCES WITHIN AND BETWEEN GENOMES.(比较两条核酸序列之间的差异性) | SMRUCC.genomics.Analysis.SequenceTools.DNA_Comparative 1.0.9753.40023 |
5 |
| DifferenceMeasurement | MEASURES OF DIFFERENCES WITHIN AND BETWEEN GENOMES.(比较两条核酸序列之间的差异性) | SMRUCC.genomics.Analysis.SequenceTools.DNA_Comparative 1.0.9762.7562 |
5 |
| GenomeSignatures | 在本模块之中,所有的计算过程都是基于NucleicAcid核酸对象的 | SMRUCC.genomics.Analysis.SequenceTools.DNA_Comparative 1.0.9753.40023 |
5 |
| GenomeSignatures | 在本模块之中,所有的计算过程都是基于NucleicAcid核酸对象的 | SMRUCC.genomics.Analysis.SequenceTools.DNA_Comparative 1.0.9762.7562 |
5 |
| NucleicAcid | 为了加快计算速度而生成的窗口计算缓存,请注意,在生成缓存的时候已经进行了并行化,所以在内部生成缓存的时候,不需要再进行并行化了 | SMRUCC.genomics.Analysis.SequenceTools.DNA_Comparative 1.0.9753.40023 |
7 |
| NucleicAcid | 为了加快计算速度而生成的窗口计算缓存,请注意,在生成缓存的时候已经进行了并行化,所以在内部生成缓存的时候,不需要再进行并行化了 | SMRUCC.genomics.Analysis.SequenceTools.DNA_Comparative 1.0.9762.7562 |
7 |
| ReferenceRule | 生成参考所使用的外标尺核酸片段 | SMRUCC.genomics.Analysis.SequenceTools.DNA_Comparative 1.0.9753.40023 |
5 |
| ReferenceRule | 生成参考所使用的外标尺核酸片段 | SMRUCC.genomics.Analysis.SequenceTools.DNA_Comparative 1.0.9762.7562 |
5 |
| SimilarDiscriptions | For convenience, we describe levels of sigma-differences for some reference examples (all values mutliplied by 1000) | SMRUCC.genomics.Analysis.SequenceTools.DNA_Comparative 1.0.9753.40023 |
12 |
| SimilarDiscriptions | For convenience, we describe levels of sigma-differences for some reference examples (all values mutliplied by 1000) | SMRUCC.genomics.Analysis.SequenceTools.DNA_Comparative 1.0.9762.7562 |
12 |
SMRUCC.genomics.Analysis.SequenceTools.DNA_Comparative.DeltaSimilarity1998.CAI
| Type | Summary | Package | Members |
|---|---|---|---|
| CodonBiasVector | triple vector | SMRUCC.genomics.Analysis.SequenceTools.DNA_Comparative 1.0.9753.40023 |
9 |
| CodonBiasVector | triple vector | SMRUCC.genomics.Analysis.SequenceTools.DNA_Comparative 1.0.9762.7562 |
9 |
| CodonFrequency | SMRUCC.genomics.Analysis.SequenceTools.DNA_Comparative 1.0.9753.40023 |
5 | |
| CodonFrequency | SMRUCC.genomics.Analysis.SequenceTools.DNA_Comparative 1.0.9762.7562 |
5 | |
| RelativeCodonBiases | Measures of Relative Codon Biases CAI: codon adaptation index This specifies a reference set of genes, almost invariably, H, chosen from among “highly expressed genes.” De… | SMRUCC.genomics.Analysis.SequenceTools.DNA_Comparative 1.0.9753.40023 |
4 |
| RelativeCodonBiases | Measures of Relative Codon Biases CAI: codon adaptation index This specifies a reference set of genes, almost invariably, H, chosen from among “highly expressed genes.” De… | SMRUCC.genomics.Analysis.SequenceTools.DNA_Comparative 1.0.9762.7562 |
4 |
SMRUCC.genomics.Analysis.SequenceTools.DNA_Comparative.DeltaSimilarity1998.CAI.XML
| Type | Summary | Package | Members |
|---|---|---|---|
| CodonAdaptationIndex | codon adaptation index profile table | SMRUCC.genomics.Analysis.SequenceTools.DNA_Comparative 1.0.9753.40023 |
4 |
| CodonAdaptationIndex | codon adaptation index profile table | SMRUCC.genomics.Analysis.SequenceTools.DNA_Comparative 1.0.9762.7562 |
4 |
| CodonBias | SMRUCC.genomics.Analysis.SequenceTools.DNA_Comparative 1.0.9753.40023 |
1 | |
| CodonBias | SMRUCC.genomics.Analysis.SequenceTools.DNA_Comparative 1.0.9762.7562 |
1 | |
| CodonFrequencyCAI | SMRUCC.genomics.Analysis.SequenceTools.DNA_Comparative 1.0.9753.40023 |
5 | |
| CodonFrequencyCAI | SMRUCC.genomics.Analysis.SequenceTools.DNA_Comparative 1.0.9762.7562 |
5 |
SMRUCC.genomics.Analysis.SequenceTools.HMMER
| Type | Summary | Package | Members |
|---|---|---|---|
| AlignmentPosition | 比对位置信息 | SMRUCC.genomics.Analysis.SequenceTools.HMMER 1.0.9753.40023 |
3 |
| AlignmentPosition | 比对位置信息 | SMRUCC.genomics.Analysis.SequenceTools.HMMER 1.0.9762.7562 |
3 |
| AnnotationResult | 注释结果类 | SMRUCC.genomics.Analysis.SequenceTools.HMMER 1.0.9753.40023 |
11 |
| AnnotationResult | 注释结果类 | SMRUCC.genomics.Analysis.SequenceTools.HMMER 1.0.9762.7562 |
11 |
| BitScoreResult | 比特得分结果 | SMRUCC.genomics.Analysis.SequenceTools.HMMER 1.0.9753.40023 |
2 |
| BitScoreResult | 比特得分结果 | SMRUCC.genomics.Analysis.SequenceTools.HMMER 1.0.9762.7562 |
2 |
| HMMER3Parser | HMMER3模型文件解析器 用于读取.hmm格式的HMMER3模型文件 | SMRUCC.genomics.Analysis.SequenceTools.HMMER 1.0.9753.40023 |
10 |
| HMMER3Parser | HMMER3模型文件解析器 用于读取.hmm格式的HMMER3模型文件 | SMRUCC.genomics.Analysis.SequenceTools.HMMER 1.0.9762.7562 |
10 |
| KOFamScan | SMRUCC.genomics.Analysis.SequenceTools.HMMER 1.0.9753.40023 |
9 | |
| KOFamScan | SMRUCC.genomics.Analysis.SequenceTools.HMMER 1.0.9762.7562 |
9 | |
| PfamAnnotation | Pfam蛋白质家族注释 对应HMMER hmmsearch --domtblout 输出的一行 | SMRUCC.genomics.Analysis.SequenceTools.HMMER 1.0.9753.40023 |
17 |
| PfamAnnotation | Pfam蛋白质家族注释 对应HMMER hmmsearch --domtblout 输出的一行 | SMRUCC.genomics.Analysis.SequenceTools.HMMER 1.0.9762.7562 |
17 |
| ProfileHMM | Profile HMM模型类 表示HMMER3格式的隐马尔可夫模型 | SMRUCC.genomics.Analysis.SequenceTools.HMMER 1.0.9753.40023 |
26 |
| ProfileHMM | Profile HMM模型类 表示HMMER3格式的隐马尔可夫模型 | SMRUCC.genomics.Analysis.SequenceTools.HMMER 1.0.9762.7562 |
26 |
| ProteinAnnotator | 蛋白质序列分类注释器 使用Profile HMM对蛋白质序列进行功能注释 | SMRUCC.genomics.Analysis.SequenceTools.HMMER 1.0.9753.40023 |
13 |
| ProteinAnnotator | 蛋白质序列分类注释器 使用Profile HMM对蛋白质序列进行功能注释 | SMRUCC.genomics.Analysis.SequenceTools.HMMER 1.0.9762.7562 |
13 |
| TracePointer | 回溯指针 | SMRUCC.genomics.Analysis.SequenceTools.HMMER 1.0.9753.40023 |
3 |
| TracePointer | 回溯指针 | SMRUCC.genomics.Analysis.SequenceTools.HMMER 1.0.9762.7562 |
3 |
| TraceState | 状态类型 | SMRUCC.genomics.Analysis.SequenceTools.HMMER 1.0.9753.40023 |
4 |
| TraceState | 状态类型 | SMRUCC.genomics.Analysis.SequenceTools.HMMER 1.0.9762.7562 |
4 |
| TransitionType | 转移类型 | SMRUCC.genomics.Analysis.SequenceTools.HMMER 1.0.9753.40023 |
7 |
| TransitionType | 转移类型 | SMRUCC.genomics.Analysis.SequenceTools.HMMER 1.0.9762.7562 |
7 |
SMRUCC.genomics.Analysis.SequenceTools.HMMER.InterPro
SMRUCC.genomics.Analysis.SequenceTools.HMMER.InterPro.Xml
| Type | Summary | Package | Members |
|---|---|---|---|
| interprodb | ftp://ftp.ebi.ac.uk/pub/databases/interpro/current_release/ | SMRUCC.genomics.Analysis.SequenceTools.HMMER 1.0.9753.40023 |
4 |
| interprodb | ftp://ftp.ebi.ac.uk/pub/databases/interpro/current_release/ | SMRUCC.genomics.Analysis.SequenceTools.HMMER 1.0.9762.7562 |
4 |
SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns
| Type | Summary | Package | Members |
|---|---|---|---|
| BackgroundModel | Background nucleotide frequency model used for log-odds scoring and null-distribution construction. | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifScanner 1.0.9753.40023 |
8 |
| BackgroundModel | Background nucleotide frequency model used for log-odds scoring and null-distribution construction. | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifScanner 1.0.9762.7562 |
8 |
| ClustalVisual | Visualization for the result of Clustal multiple sequence alignment. | SMRUCC.genomics.Analysis.SequenceTools.SequenceLogo 1.0.9753.40023 |
3 |
| ClustalVisual | Visualization for the result of Clustal multiple sequence alignment. | SMRUCC.genomics.Analysis.SequenceTools.SequenceLogo 1.0.9762.7562 |
3 |
| Extensions | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifScanner 1.0.9753.40023 |
1 | |
| Extensions | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifScanner 1.0.9762.7562 |
1 | |
| GeneReport | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifScanner 1.0.9753.40023 |
8 | |
| GeneReport | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifScanner 1.0.9762.7562 |
8 | |
| KMers | k-mers | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.Abstract 1.0.9753.40023 |
6 |
| KMers | k-mers | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.Abstract 1.0.9762.7562 |
6 |
| LociExtensions | 将序列特征的搜索结果转换为SimpleSegment对象类型 | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns 1.0.9753.40023 |
3 |
| LociExtensions | 将序列特征的搜索结果转换为SimpleSegment对象类型 | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns 1.0.9762.7562 |
3 |
| LociFilter | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns 1.0.9753.40023 |
3 | |
| LociFilter | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns 1.0.9762.7562 |
3 | |
| MotifLog | Simple site information of the TF motif site. | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns 1.0.9753.40023 |
3 |
| MotifLog | Simple site information of the TF motif site. | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns 1.0.9762.7562 |
3 |
| MotifMatch | motif model sequence site matches result | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifScanner 1.0.9753.40023 |
12 |
| MotifMatch | motif model sequence site matches result | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifScanner 1.0.9762.7562 |
12 |
| MotifScanner | Scans biological sequences with motif PWMs to identify candidate TFBS loci. | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifScanner 1.0.9753.40023 |
16 |
| MotifScanner | Scans biological sequences with motif PWMs to identify candidate TFBS loci. | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifScanner 1.0.9762.7562 |
16 |
| PatternScanner | 对位点进行类似于正则表达式的模式匹配 | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifScanner 1.0.9753.40023 |
1 |
| PatternScanner | 对位点进行类似于正则表达式的模式匹配 | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifScanner 1.0.9762.7562 |
1 |
| Probability | The PWM model | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.Abstract 1.0.9753.40023 |
6 |
| Probability | The PWM model | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.Abstract 1.0.9762.7562 |
6 |
| ProbabilityScanner | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifScanner 1.0.9753.40023 |
3 | |
| ProbabilityScanner | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifScanner 1.0.9762.7562 |
3 | |
| PWMDatabase | PWM database with internal virtual file system | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifScanner 1.0.9753.40023 |
3 |
| PWMDatabase | PWM database with internal virtual file system | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifScanner 1.0.9762.7562 |
3 |
| Residue | residue site | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.Abstract 1.0.9753.40023 |
1 |
| Residue | residue site | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.Abstract 1.0.9762.7562 |
1 |
| ScoreDistribution | Discretized probability distribution of the log-odds score under the null (background) model. | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifScanner 1.0.9753.40023 |
8 |
| ScoreDistribution | Discretized probability distribution of the log-odds score under the null (background) model. | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifScanner 1.0.9762.7562 |
8 |
| SequenceMotif | motif model | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifScanner 1.0.9753.40023 |
3 |
| SequenceMotif | motif model | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifScanner 1.0.9762.7562 |
3 |
| SmithWaterman | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifScanner 1.0.9753.40023 |
1 | |
| SmithWaterman | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifScanner 1.0.9762.7562 |
1 | |
| SSRSearch | 微卫星DNA:重复单位序列最短,只有2~6bp,串联成簇,长度50~100bp,又称为短串联重复序列(Short Tandem Repeat STR)。 广泛分布于基因组中。 其中富含A-T碱基对,是在研究DNA多态性标记过程中发现的。1981年Miesfeld等首次发现微卫星DNA, 其重复单位长度一般为1~6个核苷酸,双核苷酸重复单位常为(CA)n和… | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns 1.0.9753.40023 |
4 |
| SSRSearch | 微卫星DNA:重复单位序列最短,只有2~6bp,串联成簇,长度50~100bp,又称为短串联重复序列(Short Tandem Repeat STR)。 广泛分布于基因组中。 其中富含A-T碱基对,是在研究DNA多态性标记过程中发现的。1981年Miesfeld等首次发现微卫星DNA, 其重复单位长度一般为1~6个核苷酸,双核苷酸重复单位常为(CA)n和… | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns 1.0.9762.7562 |
4 |
SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.DNAOrigami
| Type | Summary | Package | Members |
|---|---|---|---|
| Project | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns 1.0.9753.40023 |
3 | |
| Project | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns 1.0.9762.7562 |
3 | |
| ScaffoldOrthogonality | evaluate scaffold orthogonality This script analyses orthogonality of two DNA-Origami scaffold strands. | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns 1.0.9753.40023 |
1 |
| ScaffoldOrthogonality | evaluate scaffold orthogonality This script analyses orthogonality of two DNA-Origami scaffold strands. | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns 1.0.9762.7562 |
1 |
SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.LociFilter
SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.Motif
| Type | Summary | Package | Members |
|---|---|---|---|
| ConsensusScanner | Find motif from the consensus sequence region | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifFinder 1.0.9753.40023 |
0 |
| ConsensusScanner | Find motif from the consensus sequence region | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifFinder 1.0.9762.7562 |
0 |
| FullScan | Create seeds via pairwise alignment between all sequence input | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifFinder 1.0.9753.40023 |
0 |
| FullScan | Create seeds via pairwise alignment between all sequence input | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifFinder 1.0.9762.7562 |
0 |
| GibbsSampler | Gibbs Sampler 是一种基于马尔可夫链蒙特卡洛(MCMC)思想的随机抽样算法,被广泛用于从一组序列中发现未知的保守 motif。其基本流程为: 假设每条输入序列中均包含一个长度为 W 的 motif 实例,算法首先在每条序列中随机选取一个长度为 W 的窗口作为 motif 位点的初始状态; 在随后每一轮迭代中,随机抽出一条序列并暂时移除,用其余… | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifFinder 1.0.9753.40023 |
23 |
| GibbsSampler | Gibbs Sampler 是一种基于马尔可夫链蒙特卡洛(MCMC)思想的随机抽样算法,被广泛用于从一组序列中发现未知的保守 motif。其基本流程为: 假设每条输入序列中均包含一个长度为 W 的 motif 实例,算法首先在每条序列中随机选取一个长度为 W 的窗口作为 motif 位点的初始状态; 在随后每一轮迭代中,随机抽出一条序列并暂时移除,用其余… | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifFinder 1.0.9762.7562 |
23 |
| GraphSeed | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifFinder 1.0.9753.40023 |
8 | |
| GraphSeed | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifFinder 1.0.9762.7562 |
8 | |
| GraphSeedTool | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifFinder 1.0.9753.40023 |
1 | |
| GraphSeedTool | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifFinder 1.0.9762.7562 |
1 | |
| IScanner | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.Abstract 1.0.9753.40023 |
3 | |
| IScanner | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.Abstract 1.0.9762.7562 |
3 | |
| MEMEMotifRepository | save meme motif model data inside a local directory with multiple meme text file | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifFinder 1.0.9753.40023 |
0 |
| MEMEMotifRepository | save meme motif model data inside a local directory with multiple meme text file | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifFinder 1.0.9762.7562 |
0 |
| MotifPattern | Regular expression model for the motifs | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns 1.0.9753.40023 |
6 |
| MotifPattern | Regular expression model for the motifs | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns 1.0.9762.7562 |
5 |
| MotifSeeds | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifFinder 1.0.9753.40023 |
1 | |
| MotifSeeds | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifFinder 1.0.9762.7562 |
1 | |
| MotifTree | Create motif via the clustering of the blastn alignment result | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifFinder 1.0.9753.40023 |
6 |
| MotifTree | Create motif via the clustering of the blastn alignment result | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifFinder 1.0.9762.7562 |
6 |
| MSAMotif | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifFinder 1.0.9753.40023 |
3 | |
| MSAMotif | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifFinder 1.0.9762.7562 |
3 | |
| PopulatorParameter | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifFinder 1.0.9753.40023 |
13 | |
| PopulatorParameter | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifFinder 1.0.9762.7562 |
12 | |
| Protocol | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifFinder 1.0.9753.40023 |
3 | |
| Protocol | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifFinder 1.0.9762.7562 |
3 | |
| PWM | Build probability matrix from clustal multiple sequence alignment. | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns 1.0.9753.40023 |
2 |
| PWM | Build probability matrix from clustal multiple sequence alignment. | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns 1.0.9762.7562 |
2 |
| PWMDatabase | Save motif dataset inside a HDS package file | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifFinder 1.0.9753.40023 |
0 |
| PWMDatabase | Save motif dataset inside a HDS package file | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifFinder 1.0.9762.7562 |
0 |
| ResidueSite | A column in the motif | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns 1.0.9753.40023 |
10 |
| ResidueSite | A column in the motif | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns 1.0.9762.7562 |
6 |
| RunSample | 单次「多重启吉布斯采样」的执行器:从多个随机初始状态独立运行采样, 并保留其中信息含量最高的那一份位点与 motif 序列。 | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifFinder 1.0.9753.40023 |
5 |
| RunSample | 单次「多重启吉布斯采样」的执行器:从多个随机初始状态独立运行采样, 并保留其中信息含量最高的那一份位点与 motif 序列。 | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifFinder 1.0.9762.7562 |
5 |
| Scanner | A motif site scanner with a specific nt sequence | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.Abstract 1.0.9753.40023 |
2 |
| Scanner | A motif site scanner with a specific nt sequence | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.Abstract 1.0.9762.7562 |
2 |
| SeedCluster | Clustering seeds using binary tree | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifFinder 1.0.9753.40023 |
1 |
| SeedCluster | Clustering seeds using binary tree | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifFinder 1.0.9762.7562 |
1 |
| TreeScan | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifFinder 1.0.9753.40023 |
1 | |
| TreeScan | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifFinder 1.0.9762.7562 |
1 | |
| Utils | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifFinder 1.0.9753.40023 |
4 | |
| Utils | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifFinder 1.0.9762.7562 |
4 | |
| Writer | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifFinder 1.0.9753.40023 |
6 | |
| Writer | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifFinder 1.0.9762.7562 |
6 |
SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.Motif.EmMotif.Core
| Type | Summary | Package | Members |
|---|---|---|---|
| Alphabet | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifFinder 1.0.9753.40023 |
4 | |
| Alphabet | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifFinder 1.0.9762.7562 |
4 | |
| ChiSquare | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifFinder 1.0.9753.40023 |
4 | |
| ChiSquare | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifFinder 1.0.9762.7562 |
4 | |
| EmModel | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifFinder 1.0.9753.40023 |
17 | |
| EmModel | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifFinder 1.0.9762.7562 |
17 | |
| EmMotifResult | 单个 motif 的完整 EM 结果 | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifFinder 1.0.9753.40023 |
14 |
| EmMotifResult | 单个 motif 的完整 EM 结果 | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifFinder 1.0.9762.7562 |
14 |
| EmSearch | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifFinder 1.0.9753.40023 |
8 | |
| EmSearch | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifFinder 1.0.9762.7562 |
8 | |
| SitePosterior | E 步输出:一个候选位点(位置 j、链、后验 Z、logR) | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifFinder 1.0.9753.40023 |
4 |
| SitePosterior | E 步输出:一个候选位点(位置 j、链、后验 Z、logR) | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifFinder 1.0.9762.7562 |
4 |
SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.Motif.Matrix
| Type | Summary | Package | Members |
|---|---|---|---|
| MotifMatrix | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifFinder 1.0.9753.40023 |
5 | |
| MotifMatrix | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifFinder 1.0.9762.7562 |
5 | |
| SequenceMatrix | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifFinder 1.0.9753.40023 |
5 | |
| SequenceMatrix | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifFinder 1.0.9762.7562 |
5 | |
| WeightMatrix | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifFinder 1.0.9753.40023 |
2 | |
| WeightMatrix | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.MotifFinder 1.0.9762.7562 |
2 |
SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.Motif.Patterns
| Type | Summary | Package | Members |
|---|---|---|---|
| PatternExpression | 使用正则表达式来表示序列的模式 | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.Abstract 1.0.9753.40023 |
4 |
| PatternExpression | 使用正则表达式来表示序列的模式 | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.Abstract 1.0.9762.7562 |
1 |
| PatternParser | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.Abstract 1.0.9753.40023 |
4 | |
| PatternParser | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.Abstract 1.0.9762.7562 |
3 | |
| Residue | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.Abstract 1.0.9753.40023 |
8 | |
| Residue | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.Abstract 1.0.9762.7562 |
4 | |
| Tokens | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.Abstract 1.0.9753.40023 |
10 | |
| Tokens | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.Abstract 1.0.9762.7562 |
10 |
SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.Pattern
| Type | Summary | Package | Members |
|---|---|---|---|
| PatternSearch | 使用用户指定的正则表达式搜索指定的序列数据 | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns 1.0.9753.40023 |
1 |
| PatternSearch | 使用用户指定的正则表达式搜索指定的序列数据 | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns 1.0.9762.7562 |
1 |
| SegLoci | 程序所搜索到的一个序列片段 | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns 1.0.9753.40023 |
3 |
| SegLoci | 程序所搜索到的一个序列片段 | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns 1.0.9762.7562 |
3 |
SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.SequenceLogo
| Type | Summary | Package | Members |
|---|---|---|---|
| Alphabet | Alphabet model in the drawing motif model, nt for 4 and aa for 20 | SMRUCC.genomics.Analysis.SequenceTools.SequenceLogo 1.0.9753.40023 |
5 |
| Alphabet | Alphabet model in the drawing motif model, nt for 4 and aa for 20 | SMRUCC.genomics.Analysis.SequenceTools.SequenceLogo 1.0.9762.7562 |
5 |
| ColorSchema | Define two prefix color schema for the sequence logo: TypeExtensions.NT and TypeExtensions.AA. | SMRUCC.genomics.Analysis.SequenceTools.SequenceLogo 1.0.9753.40023 |
4 |
| ColorSchema | Define two prefix color schema for the sequence logo: TypeExtensions.NT and TypeExtensions.AA. | SMRUCC.genomics.Analysis.SequenceTools.SequenceLogo 1.0.9762.7562 |
3 |
| DrawingDevice | In bioinformatics, a sequence logo is a graphical representation of the sequence conservation of nucleotides (in a strand Of DNA/RNA) Or amino acids (In protein sequences). | SMRUCC.genomics.Analysis.SequenceTools.SequenceLogo 1.0.9753.40023 |
5 |
| DrawingDevice | In bioinformatics, a sequence logo is a graphical representation of the sequence conservation of nucleotides (in a strand Of DNA/RNA) Or amino acids (In protein sequences). | SMRUCC.genomics.Analysis.SequenceTools.SequenceLogo 1.0.9762.7562 |
5 |
| DrawingModel | Drawing model for the sequence logo visualization. | SMRUCC.genomics.Analysis.SequenceTools.SequenceLogo 1.0.9753.40023 |
8 |
| DrawingModel | Drawing model for the sequence logo visualization. | SMRUCC.genomics.Analysis.SequenceTools.SequenceLogo 1.0.9762.7562 |
5 |
| Residue | A drawing site in the sequence logo drawing. | SMRUCC.genomics.Analysis.SequenceTools.SequenceLogo 1.0.9753.40023 |
6 |
| Residue | A drawing site in the sequence logo drawing. | SMRUCC.genomics.Analysis.SequenceTools.SequenceLogo 1.0.9762.7562 |
5 |
SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.Topologically
| Type | Summary | Package | Members |
|---|---|---|---|
| Analysis | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns 1.0.9753.40023 |
2 | |
| Analysis | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns 1.0.9762.7562 |
2 | |
| Imperfect | 在互补链部分的回文,由于Mirror其实就是简单重复序列,所以在这里不再编写了 | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns 1.0.9753.40023 |
2 |
| Imperfect | 在互补链部分的回文,由于Mirror其实就是简单重复序列,所以在这里不再编写了 | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns 1.0.9762.7562 |
2 |
| ImperfectPalindrome | 只有一部分的序列是匹配上的回文序列 | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns 1.0.9753.40023 |
9 |
| ImperfectPalindrome | 只有一部分的序列是匹配上的回文序列 | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns 1.0.9762.7562 |
9 |
| MirrorPalindrome | 种子片段在正向链找得到自己的反向片段,即为镜像回文片段 | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns 1.0.9753.40023 |
3 |
| MirrorPalindrome | 种子片段在正向链找得到自己的反向片段,即为镜像回文片段 | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns 1.0.9762.7562 |
3 |
| Palindrome | === Palindromic hexamers === For a given sequence, any palindrome of 6 nt (e.g., AAATTT) Is given a value of 1, while all bases Not included inpalindromic hexamers are given a v… | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns 1.0.9753.40023 |
7 |
| Palindrome | === Palindromic hexamers === For a given sequence, any palindrome of 6 nt (e.g., AAATTT) Is given a value of 1, while all bases Not included inpalindromic hexamers are given a v… | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns 1.0.9762.7562 |
7 |
| PalindromeLoci | Mirror 或者 Palindrome 位点的搜索结果的csv文件存储模型 | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns 1.0.9753.40023 |
7 |
| PalindromeLoci | Mirror 或者 Palindrome 位点的搜索结果的csv文件存储模型 | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns 1.0.9762.7562 |
7 |
| PalindromeSearch | 片段在反向链找得到自己的反向片段 | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns 1.0.9753.40023 |
2 |
| PalindromeSearch | 片段在反向链找得到自己的反向片段 | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns 1.0.9762.7562 |
2 |
| Repeats | The sequence segment of the nucleotide repeats.(重复的核酸片段) | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns 1.0.9753.40023 |
4 |
| Repeats | The sequence segment of the nucleotide repeats.(重复的核酸片段) | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns 1.0.9762.7562 |
4 |
| RepeatsSearchAPI | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns 1.0.9753.40023 |
4 | |
| RepeatsSearchAPI | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns 1.0.9762.7562 |
4 | |
| RepeatsSearcher | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns 1.0.9753.40023 |
2 | |
| RepeatsSearcher | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns 1.0.9762.7562 |
2 | |
| RepeatsView | 正向重复位点的序列模型 | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns 1.0.9753.40023 |
3 |
| RepeatsView | 正向重复位点的序列模型 | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns 1.0.9762.7562 |
3 |
| ReversedRepeatSeacher | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns 1.0.9753.40023 |
2 | |
| ReversedRepeatSeacher | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns 1.0.9762.7562 |
2 | |
| ReverseRepeats | The reversed repeats.(反向重复序列) | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns 1.0.9753.40023 |
2 |
| ReverseRepeats | The reversed repeats.(反向重复序列) | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns 1.0.9762.7562 |
2 |
| ReverseRepeatsView | 反向重复序列的模型,继承于RepeatsView模型 | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns 1.0.9753.40023 |
2 |
| ReverseRepeatsView | 反向重复序列的模型,继承于RepeatsView模型 | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns 1.0.9762.7562 |
2 |
| SearchWorker | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns 1.0.9753.40023 |
2 | |
| SearchWorker | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns 1.0.9762.7562 |
2 |
SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.Topologically.Seeding
| Type | Summary | Package | Members |
|---|---|---|---|
| Seed | 一个种子序列 | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns 1.0.9753.40023 |
5 |
| Seed | 一个种子序列 | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns 1.0.9762.7562 |
5 |
| SeedBox | 生成序列上面的Feature位点计算的种子 | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns 1.0.9753.40023 |
3 |
| SeedBox | 生成序列上面的Feature位点计算的种子 | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns 1.0.9762.7562 |
3 |
| Seeds | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns 1.0.9753.40023 |
5 | |
| Seeds | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns 1.0.9762.7562 |
5 |
SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns.Topologically.SimilarityMatches
| Type | Summary | Package | Members |
|---|---|---|---|
| FuzzyMirrors | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns 1.0.9753.40023 |
1 | |
| FuzzyMirrors | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns 1.0.9762.7562 |
1 | |
| LociMatchedResult | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns 1.0.9753.40023 |
4 | |
| LociMatchedResult | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns 1.0.9762.7562 |
4 | |
| MirrorPalindrome | 模糊相等的 | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns 1.0.9753.40023 |
2 |
| MirrorPalindrome | 模糊相等的 | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns 1.0.9762.7562 |
2 |
| Repeats | 模糊匹配重复的序列片段 | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns 1.0.9753.40023 |
4 |
| Repeats | 模糊匹配重复的序列片段 | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns 1.0.9762.7562 |
4 |
| ReversedLociMatchedResult | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns 1.0.9753.40023 |
2 | |
| ReversedLociMatchedResult | SMRUCC.genomics.Analysis.SequenceTools.SequencePatterns 1.0.9762.7562 |
2 |
SMRUCC.genomics.Annotation
SMRUCC.genomics.Annotation.Assembly.NCBI.GenBank.TabularFormat.GFF
| Type | Summary | Package | Members |
|---|---|---|---|
| Extensions | SMRUCC.genomics.Annotation 1.0.9753.40023 |
2 | |
| Extensions | SMRUCC.genomics.Annotation 1.0.9762.7562 |
1 | |
| Feature | A feature is here an interval (i.e., a range of positions) on a chromosome or a union of such intervals. | SMRUCC.genomics.Annotation 1.0.9753.40023 |
12 |
| Feature | A feature is here an interval (i.e., a range of positions) on a chromosome or a union of such intervals. | SMRUCC.genomics.Annotation 1.0.9762.7562 |
12 |
| FeatureKeys | SMRUCC.genomics.Annotation 1.0.9753.40023 |
10 | |
| FeatureKeys | SMRUCC.genomics.Annotation 1.0.9762.7562 |
10 | |
| FeatureParser | SMRUCC.genomics.Annotation 1.0.9753.40023 |
5 | |
| FeatureParser | SMRUCC.genomics.Annotation 1.0.9762.7562 |
5 | |
| GFFTable | GFF (General Feature Format) specifications document | SMRUCC.genomics.Annotation 1.0.9753.40023 |
15 |
| GFFTable | GFF (General Feature Format) specifications document | SMRUCC.genomics.Annotation 1.0.9762.7562 |
14 |
| SeqRegion | sequence-region (##sequence-region <seqname> <start> <end>) To indicate that this file only contains entries for the specified subregion of a sequence. | SMRUCC.genomics.Annotation 1.0.9753.40023 |
4 |
| SeqRegion | sequence-region (##sequence-region <seqname> <start> <end>) To indicate that this file only contains entries for the specified subregion of a sequence. | SMRUCC.genomics.Annotation 1.0.9762.7562 |
4 |
SMRUCC.genomics.Annotation.Assembly.NCBI.GenBank.TabularFormat.GFF.Document
| Type | Summary | Package | Members |
|---|---|---|---|
| FileFormat | SMRUCC.genomics.Annotation 1.0.9753.40023 |
1 | |
| FileFormat | SMRUCC.genomics.Annotation 1.0.9762.7562 |
1 |
SMRUCC.genomics.Annotation.Prodigal
| Type | Summary | Package | Members |
|---|---|---|---|
| CandidateORF | 候选ORF(开放阅读框) | SMRUCC.genomics.Annotation.Prodigal 1.0.9753.40023 |
25 |
| CandidateORF | 候选ORF(开放阅读框) | SMRUCC.genomics.Annotation.Prodigal 1.0.9762.7562 |
25 |
| CodingModel | 编码区打分模型 使用六聚体(6-mer)频率的编码区/非编码区对数似然比来评估 一段序列的编码潜力。这是Prodigal cscore的核心。 | SMRUCC.genomics.Annotation.Prodigal 1.0.9753.40023 |
5 |
| CodingModel | 编码区打分模型 使用六聚体(6-mer)频率的编码区/非编码区对数似然比来评估 一段序列的编码潜力。这是Prodigal cscore的核心。 | SMRUCC.genomics.Annotation.Prodigal 1.0.9762.7562 |
5 |
| DpNode | DP节点(用于动态规划选基因) | SMRUCC.genomics.Annotation.Prodigal 1.0.9753.40023 |
4 |
| DpNode | DP节点(用于动态规划选基因) | SMRUCC.genomics.Annotation.Prodigal 1.0.9762.7562 |
4 |
| DynamicProgramming | 动态规划基因选择算法 在满足基因不重叠(同链)等约束下,选择全局得分最高的基因组合。 本质上是加权区间调度问题(Weighted Interval Scheduling)的变体。 算法: 1. | SMRUCC.genomics.Annotation.Prodigal 1.0.9753.40023 |
4 |
| DynamicProgramming | 动态规划基因选择算法 在满足基因不重叠(同链)等约束下,选择全局得分最高的基因组合。 本质上是加权区间调度问题(Weighted Interval Scheduling)的变体。 算法: 1. | SMRUCC.genomics.Annotation.Prodigal 1.0.9762.7562 |
4 |
| GeneScore | gene prediction score table | SMRUCC.genomics.Annotation.Prodigal 1.0.9753.40023 |
0 |
| GeneScore | gene prediction score table | SMRUCC.genomics.Annotation.Prodigal 1.0.9762.7562 |
0 |
| ModelSerializer | 训练模型序列化/反序列化工具 | SMRUCC.genomics.Annotation.Prodigal 1.0.9753.40023 |
2 |
| ModelSerializer | 训练模型序列化/反序列化工具 | SMRUCC.genomics.Annotation.Prodigal 1.0.9762.7562 |
2 |
| OrfFinder | 在六框翻译中查找所有候选ORF 核心思路:对每个阅读框,先找所有终止密码子位置,再在每个终止-终止区间内 查找所有可能的起始密码子,生成多个候选ORF(同一终止密码子,不同起始密码子) | SMRUCC.genomics.Annotation.Prodigal 1.0.9753.40023 |
5 |
| OrfFinder | 在六框翻译中查找所有候选ORF 核心思路:对每个阅读框,先找所有终止密码子位置,再在每个终止-终止区间内 查找所有可能的起始密码子,生成多个候选ORF(同一终止密码子,不同起始密码子) | SMRUCC.genomics.Annotation.Prodigal 1.0.9762.7562 |
5 |
| PredictedGene | 预测基因(从DP选出的最终结果) | SMRUCC.genomics.Annotation.Prodigal 1.0.9753.40023 |
2 |
| PredictedGene | 预测基因(从DP选出的最终结果) | SMRUCC.genomics.Annotation.Prodigal 1.0.9762.7562 |
2 |
| PredictionPipeline | 基因预测管线 整合ORF查找、打分、动态规划选择,输出最终预测结果 | SMRUCC.genomics.Annotation.Prodigal 1.0.9753.40023 |
3 |
| PredictionPipeline | 基因预测管线 整合ORF查找、打分、动态规划选择,输出最终预测结果 | SMRUCC.genomics.Annotation.Prodigal 1.0.9762.7562 |
3 |
| PredictionResult | 基因预测结果 | SMRUCC.genomics.Annotation.Prodigal 1.0.9753.40023 |
4 |
| PredictionResult | 基因预测结果 | SMRUCC.genomics.Annotation.Prodigal 1.0.9762.7562 |
4 |
| ProdigalWorker | SMRUCC.genomics.Annotation.Prodigal 1.0.9753.40023 |
3 | |
| ProdigalWorker | SMRUCC.genomics.Annotation.Prodigal 1.0.9762.7562 |
3 | |
| RbsModel | RBS检测模型 在起始密码子上游搜索Shine-Dalgarno序列(如AGGAGG、GGAGG等), 并基于位置权重矩阵(PWM)和间距评分来计算RBS得分(rscore) | SMRUCC.genomics.Annotation.Prodigal 1.0.9753.40023 |
8 |
| RbsModel | RBS检测模型 在起始密码子上游搜索Shine-Dalgarno序列(如AGGAGG、GGAGG等), 并基于位置权重矩阵(PWM)和间距评分来计算RBS得分(rscore) | SMRUCC.genomics.Annotation.Prodigal 1.0.9762.7562 |
8 |
| ResultWriter | 结果输出工具 | SMRUCC.genomics.Annotation.Prodigal 1.0.9753.40023 |
5 |
| ResultWriter | 结果输出工具 | SMRUCC.genomics.Annotation.Prodigal 1.0.9762.7562 |
5 |
| ScoringEngine | 综合打分引擎 将编码区得分、RBS得分、起始密码子类型得分、上游序列得分 组合为总得分:score = cscore + sscore 其中 sscore = rscore + tscore + uscore | SMRUCC.genomics.Annotation.Prodigal 1.0.9753.40023 |
2 |
| ScoringEngine | 综合打分引擎 将编码区得分、RBS得分、起始密码子类型得分、上游序列得分 组合为总得分:score = cscore + sscore 其中 sscore = rscore + tscore + uscore | SMRUCC.genomics.Annotation.Prodigal 1.0.9762.7562 |
2 |
| SequenceUtils | DNA序列操作工具类 | SMRUCC.genomics.Annotation.Prodigal 1.0.9753.40023 |
15 |
| SequenceUtils | DNA序列操作工具类 | SMRUCC.genomics.Annotation.Prodigal 1.0.9762.7562 |
15 |
| StartCodonModel | 起始密码子评分模型 统计不同起始密码子(ATG/GTG/TTG)的使用频率, 计算起始密码子类型得分(tscore) | SMRUCC.genomics.Annotation.Prodigal 1.0.9753.40023 |
2 |
| StartCodonModel | 起始密码子评分模型 统计不同起始密码子(ATG/GTG/TTG)的使用频率, 计算起始密码子类型得分(tscore) | SMRUCC.genomics.Annotation.Prodigal 1.0.9762.7562 |
2 |
| TrainingEngine | 无监督训练引擎 从输入序列本身学习统计特征,不需要外接训练集。 训练流程: 1. | SMRUCC.genomics.Annotation.Prodigal 1.0.9753.40023 |
5 |
| TrainingEngine | 无监督训练引擎 从输入序列本身学习统计特征,不需要外接训练集。 训练流程: 1. | SMRUCC.genomics.Annotation.Prodigal 1.0.9762.7562 |
5 |
| TrainingModel | 训练模型 - 包含编码区模型、RBS模型、起始密码子模型 | SMRUCC.genomics.Annotation.Prodigal 1.0.9753.40023 |
15 |
| TrainingModel | 训练模型 - 包含编码区模型、RBS模型、起始密码子模型 | SMRUCC.genomics.Annotation.Prodigal 1.0.9762.7562 |
15 |
| UpstreamModel | 上游序列评分(uscore) 评估起始密码子上游的序列特征,如A/T丰富度(典型原核启动子区域) | SMRUCC.genomics.Annotation.Prodigal 1.0.9753.40023 |
1 |
| UpstreamModel | 上游序列评分(uscore) 评估起始密码子上游的序列特征,如A/T丰富度(典型原核启动子区域) | SMRUCC.genomics.Annotation.Prodigal 1.0.9762.7562 |
1 |
SMRUCC.genomics.Annotation.Ptf
| Type | Summary | Package | Members |
|---|---|---|---|
| KOSelector | SMRUCC.genomics.Annotation 1.0.9753.40023 |
2 | |
| KOSelector | SMRUCC.genomics.Annotation 1.0.9762.7562 |
1 | |
| ProteinAnnotation | A uniy protein annotation model in GCModeller softwares | SMRUCC.genomics.Annotation 1.0.9753.40023 |
10 |
| ProteinAnnotation | A uniy protein annotation model in GCModeller softwares | SMRUCC.genomics.Annotation 1.0.9762.7562 |
4 |
| PtfFile | the GCModeller protein annotation tabular format file. | SMRUCC.genomics.Annotation 1.0.9753.40023 |
9 |
| PtfFile | the GCModeller protein annotation tabular format file. | SMRUCC.genomics.Annotation 1.0.9762.7562 |
0 |
SMRUCC.genomics.Annotation.Ptf.Document
SMRUCC.genomics.Assembly.Bac_sRNA.org
| Type | Summary | Package | Members |
|---|---|---|---|
| Interaction | Interaction.sRNAid --> Interaction.TargetName | SMRUCC.genomics.Core 10.5.9753.40023 |
7 |
| Interaction | Interaction.sRNAid --> Interaction.TargetName | SMRUCC.genomics.Core 10.5.9762.7562 |
7 |
| Sequence | SMRUCC.genomics.Core 10.5.9753.40023 |
8 | |
| Sequence | SMRUCC.genomics.Core 10.5.9762.7562 |
5 |
SMRUCC.genomics.Assembly.DOMINE.Tables
| Type | Summary | Package | Members |
|---|---|---|---|
| Go | SMRUCC.genomics.Core 10.5.9753.40023 |
4 | |
| Go | SMRUCC.genomics.Core 10.5.9762.7562 |
4 | |
| Interaction | SMRUCC.genomics.Core 10.5.9753.40023 |
22 | |
| Interaction | SMRUCC.genomics.Core 10.5.9762.7562 |
22 | |
| Pfam | SMRUCC.genomics.Core 10.5.9753.40023 |
5 | |
| Pfam | SMRUCC.genomics.Core 10.5.9762.7562 |
5 | |
| PGMap | SMRUCC.genomics.Core 10.5.9753.40023 |
3 | |
| PGMap | SMRUCC.genomics.Core 10.5.9762.7562 |
3 |
SMRUCC.genomics.Assembly.DOOR
| Type | Summary | Package | Members |
|---|---|---|---|
| DOOR | DOOR: Database of prOkaryotic OpeRons. | SMRUCC.genomics.Core 10.5.9753.40023 |
14 |
| DOOR | DOOR: Database of prOkaryotic OpeRons. | SMRUCC.genomics.Core 10.5.9762.7562 |
9 |
| DOOR_API | We present a database DOOR (Database for prOkaryotic OpeRons) containing computationally predicted operons of all the sequenced prokaryotic genomes. | SMRUCC.genomics.Core 10.5.9753.40023 |
7 |
| DOOR_API | We present a database DOOR (Database for prOkaryotic OpeRons) containing computationally predicted operons of all the sequenced prokaryotic genomes. | SMRUCC.genomics.Core 10.5.9762.7562 |
6 |
| DOOR_IO | Parser and writer | SMRUCC.genomics.Core 10.5.9753.40023 |
4 |
| DOOR_IO | Parser and writer | SMRUCC.genomics.Core 10.5.9762.7562 |
3 |
| Operon | 操纵子中的基因在构造函数之中已经进行过按照转录方向排序操作了的 | SMRUCC.genomics.Core 10.5.9753.40023 |
20 |
| Operon | 操纵子中的基因在构造函数之中已经进行过按照转录方向排序操作了的 | SMRUCC.genomics.Core 10.5.9762.7562 |
14 |
| OperonGene | Door操纵子之中的一个基因对象的数据 | SMRUCC.genomics.Core 10.5.9753.40023 |
10 |
| OperonGene | Door操纵子之中的一个基因对象的数据 | SMRUCC.genomics.Core 10.5.9762.7562 |
3 |
| OperonView | {OperonID, GeneId()}() | SMRUCC.genomics.Core 10.5.9753.40023 |
14 |
| OperonView | {OperonID, GeneId()}() | SMRUCC.genomics.Core 10.5.9762.7562 |
3 |
SMRUCC.genomics.Assembly.DOOR.CsvModel
SMRUCC.genomics.Assembly.ELIXIR.EBI.ChEBI
| Type | Summary | Package | Members |
|---|---|---|---|
| AccessionTypes | Chebi accession types, table key name in RegistryNumbers | SMRUCC.genomics.Core 10.5.9753.40023 |
74 |
| AccessionTypes | Chebi accession types, table key name in RegistryNumbers | SMRUCC.genomics.Core 10.5.9762.7562 |
74 |
| DATA | Chebi ChEBIEntity model extensions | SMRUCC.genomics.Core 10.5.9753.40023 |
10 |
| DATA | Chebi ChEBIEntity model extensions | SMRUCC.genomics.Core 10.5.9762.7562 |
8 |
| EntitySearch | SMRUCC.genomics.Core 10.5.9753.40023 |
4 | |
| EntitySearch | SMRUCC.genomics.Core 10.5.9762.7562 |
4 | |
| EntitySummary | 物质注释信息摘要表格 | SMRUCC.genomics.Core 10.5.9753.40023 |
17 |
| EntitySummary | 物质注释信息摘要表格 | SMRUCC.genomics.Core 10.5.9762.7562 |
15 |
| Extensions | SMRUCC.genomics.Core 10.5.9753.40023 |
5 | |
| Extensions | SMRUCC.genomics.Core 10.5.9762.7562 |
5 | |
| NameOf | 使用这个模块进行chebi的编号的匹配, (由于有同分异构体之类的存在,所以即使化学式或者分子质量相同,也会匹配出几种不同的化合物, 所以NameOf.MatchByFormula())以及NameOf.MatchByMass()) 这两个方法应该是优先级别最低的) | SMRUCC.genomics.Core 10.5.9753.40023 |
15 |
| NameOf | 使用这个模块进行chebi的编号的匹配, (由于有同分异构体之类的存在,所以即使化学式或者分子质量相同,也会匹配出几种不同的化合物, 所以NameOf.MatchByFormula())以及NameOf.MatchByMass()) 这两个方法应该是优先级别最低的) | SMRUCC.genomics.Core 10.5.9762.7562 |
15 |
SMRUCC.genomics.Assembly.ELIXIR.EBI.ChEBI.Database.IO.StreamProviders.Tsv
| Type | Summary | Package | Members |
|---|---|---|---|
| Compound | SMRUCC.genomics.Core 10.5.9753.40023 |
13 | |
| Compound | SMRUCC.genomics.Core 10.5.9762.7562 |
1 | |
| TsvExtensions | Extension for ChEBI tsv tables entity. | SMRUCC.genomics.Core 10.5.9753.40023 |
3 |
| TsvExtensions | Extension for ChEBI tsv tables entity. | SMRUCC.genomics.Core 10.5.9762.7562 |
3 |
| TSVTables | 可以使用这个对象从ChEBI的ftp文件夹下载结果之中加载相应的表数据 | SMRUCC.genomics.Core 10.5.9753.40023 |
8 |
| TSVTables | 可以使用这个对象从ChEBI的ftp文件夹下载结果之中加载相应的表数据 | SMRUCC.genomics.Core 10.5.9762.7562 |
8 |
SMRUCC.genomics.Assembly.ELIXIR.EBI.ChEBI.Database.IO.StreamProviders.Tsv.Tables
| Type | Summary | Package | Members |
|---|---|---|---|
| Accession | Database xref dblinks.(ChEBI的ftp服务器之上的database_accession.tsv文件数据的解析器) | SMRUCC.genomics.Core 10.5.9753.40023 |
3 |
| Accession | Database xref dblinks.(ChEBI的ftp服务器之上的database_accession.tsv文件数据的解析器) | SMRUCC.genomics.Core 10.5.9762.7562 |
3 |
| ChemicalData | chemical_data.tsv | SMRUCC.genomics.Core 10.5.9753.40023 |
5 |
| ChemicalData | chemical_data.tsv | SMRUCC.genomics.Core 10.5.9762.7562 |
5 |
| Entity | SMRUCC.genomics.Core 10.5.9753.40023 |
5 | |
| Entity | SMRUCC.genomics.Core 10.5.9762.7562 |
5 | |
| InChI | chebiId_inchi.tsv | SMRUCC.genomics.Core 10.5.9753.40023 |
2 |
| InChI | chebiId_inchi.tsv | SMRUCC.genomics.Core 10.5.9762.7562 |
2 |
SMRUCC.genomics.Assembly.ELIXIR.EBI.ChEBI.Database.IO.StreamProviders.Tsv.TSVTables
SMRUCC.genomics.Assembly.ELIXIR.EBI.ChEBI.WebServices
| Type | Summary | Package | Members |
|---|---|---|---|
| WebServices | The main aim of ChEBI Web Services is to provide programmatic access to the ChEBI database in order to aid our users in integrating ChEBI into their applications. | SMRUCC.genomics.Core 10.5.9753.40023 |
4 |
| WebServices | The main aim of ChEBI Web Services is to provide programmatic access to the ChEBI database in order to aid our users in integrating ChEBI into their applications. | SMRUCC.genomics.Core 10.5.9762.7562 |
4 |
SMRUCC.genomics.Assembly.ELIXIR.EBI.ChEBI.XML
| Type | Summary | Package | Members |
|---|---|---|---|
| ChEBIEntity | The complete entity including synonyms, database links and chemical structures. | SMRUCC.genomics.Core 10.5.9753.40023 |
23 |
| ChEBIEntity | The complete entity including synonyms, database links and chemical structures. | SMRUCC.genomics.Core 10.5.9762.7562 |
2 |
| Extensions | SMRUCC.genomics.Core 10.5.9753.40023 |
1 | |
| Extensions | SMRUCC.genomics.Core 10.5.9762.7562 |
1 | |
| Formulae | 分子式 | SMRUCC.genomics.Core 10.5.9753.40023 |
3 |
| Formulae | 分子式 | SMRUCC.genomics.Core 10.5.9762.7562 |
3 |
SMRUCC.genomics.Assembly.Expasy.AnnotationsTool
| Type | Summary | Package | Members |
|---|---|---|---|
| API | SMRUCC.genomics.Core 10.5.9753.40023 |
7 | |
| API | SMRUCC.genomics.Core 10.5.9762.7562 |
4 | |
| EnzymeClass | 这个是最终的酶分类结果的呈现形式 | SMRUCC.genomics.Core 10.5.9753.40023 |
7 |
| EnzymeClass | 这个是最终的酶分类结果的呈现形式 | SMRUCC.genomics.Core 10.5.9762.7562 |
3 |
| T_EnzymeClass_BLAST_OUT | The raw annotation data which was export from the blast output text.(蛋白酶的酶编号分类(这个数据结构是用来表示blast比对结果的)) | SMRUCC.genomics.Core 10.5.9753.40023 |
3 |
| T_EnzymeClass_BLAST_OUT | The raw annotation data which was export from the blast output text.(蛋白酶的酶编号分类(这个数据结构是用来表示blast比对结果的)) | SMRUCC.genomics.Core 10.5.9762.7562 |
1 |
SMRUCC.genomics.Assembly.Expasy.AnnotationsTool.API
| Type | Summary | Package | Members |
|---|---|---|---|
| _____ENZYME_CLASS_HANDLER_ | Handler for process the duplicated enzyme classification data. | SMRUCC.genomics.Core 10.5.9753.40023 |
3 |
| _____ENZYME_CLASS_HANDLER_ | Handler for process the duplicated enzyme classification data. | SMRUCC.genomics.Core 10.5.9762.7562 |
0 |
SMRUCC.genomics.Assembly.Expasy.Database
| Type | Summary | Package | Members |
|---|---|---|---|
| Enzyme | 使用Uniprot编号为主的酶分类数据记录 | SMRUCC.genomics.Core 10.5.9753.40023 |
9 |
| Enzyme | 使用Uniprot编号为主的酶分类数据记录 | SMRUCC.genomics.Core 10.5.9762.7562 |
8 |
| NomenclatureDB | ENZYME nomenclature database.(Expasy数据库之中的enzyme.dat注释文件) | SMRUCC.genomics.Core 10.5.9753.40023 |
8 |
| NomenclatureDB | ENZYME nomenclature database.(Expasy数据库之中的enzyme.dat注释文件) | SMRUCC.genomics.Core 10.5.9762.7562 |
3 |
SMRUCC.genomics.Assembly.iGEM
SMRUCC.genomics.Assembly.KEGG
| Type | Summary | Package | Members |
|---|---|---|---|
| Extensions | SMRUCC.genomics.Core 10.5.9753.40023 |
15 | |
| Extensions | SMRUCC.genomics.Core 10.5.9762.7562 |
12 | |
| ReactionClassifier | the reaction class data helper, make index of the ReactionClass data | SMRUCC.genomics.Core 10.5.9753.40023 |
9 |
| ReactionClassifier | the reaction class data helper, make index of the ReactionClass data | SMRUCC.genomics.Core 10.5.9762.7562 |
5 |
| ReactionRepository | KEGG的参考代谢反应模型库,封装了对Reaction的对象查询操作 | SMRUCC.genomics.Core 10.5.9753.40023 |
17 |
| ReactionRepository | KEGG的参考代谢反应模型库,封装了对Reaction的对象查询操作 | SMRUCC.genomics.Core 10.5.9762.7562 |
10 |
SMRUCC.genomics.Assembly.KEGG.Archives
| Type | Summary | Package | Members |
|---|---|---|---|
| SequenceDump | SMRUCC.genomics.Core 10.5.9753.40023 |
8 | |
| SequenceDump | SMRUCC.genomics.Core 10.5.9762.7562 |
1 |
SMRUCC.genomics.Assembly.KEGG.Archives.Tabular
| Type | Summary | Package | Members |
|---|---|---|---|
| Module | SMRUCC.genomics.Core 10.5.9753.40023 |
13 | |
| Module | SMRUCC.genomics.Core 10.5.9762.7562 |
4 | |
| Pathway | CSV data model for storage the kegg pathway brief information.(用于向Csv文件保存数据的简单格式的代谢途径数据存储对象) | SMRUCC.genomics.Core 10.5.9753.40023 |
11 |
| Pathway | CSV data model for storage the kegg pathway brief information.(用于向Csv文件保存数据的简单格式的代谢途径数据存储对象) | SMRUCC.genomics.Core 10.5.9762.7562 |
5 |
SMRUCC.genomics.Assembly.KEGG.Archives.Xml
| Type | Summary | Package | Members |
|---|---|---|---|
| CompilerAPI | SMRUCC.genomics.Core 10.5.9753.40023 |
2 | |
| CompilerAPI | SMRUCC.genomics.Core 10.5.9762.7562 |
1 | |
| MapAPI | SMRUCC.genomics.Core 10.5.9753.40023 |
3 | |
| MapAPI | SMRUCC.genomics.Core 10.5.9762.7562 |
3 | |
| XmlModel | The compile data of the target bacteria species genome database in the KEGG.(KEGG数据库之中的关于目标研究的微生物菌株的KEGG数据库之中的所有的信息的编译的集合) | SMRUCC.genomics.Core 10.5.9753.40023 |
9 |
| XmlModel | The compile data of the target bacteria species genome database in the KEGG.(KEGG数据库之中的关于目标研究的微生物菌株的KEGG数据库之中的所有的信息的编译的集合) | SMRUCC.genomics.Core 10.5.9762.7562 |
4 |
SMRUCC.genomics.Assembly.KEGG.Archives.Xml.Nodes
| Type | Summary | Package | Members |
|---|---|---|---|
| EC_Mapping | SMRUCC.genomics.Core 10.5.9753.40023 |
6 | |
| EC_Mapping | SMRUCC.genomics.Core 10.5.9762.7562 |
3 | |
| PwyBriteFunc | SMRUCC.genomics.Core 10.5.9753.40023 |
4 | |
| PwyBriteFunc | SMRUCC.genomics.Core 10.5.9762.7562 |
2 |
SMRUCC.genomics.Assembly.KEGG.DBGET
| Type | Summary | Package | Members |
|---|---|---|---|
| KEGGObjects | KEGG数据库之中的对象的类型的列表 | SMRUCC.genomics.Core 10.5.9753.40023 |
20 |
| KEGGObjects | KEGG数据库之中的对象的类型的列表 | SMRUCC.genomics.Core 10.5.9762.7562 |
20 |
| KOrthology | KEGG Orthology | SMRUCC.genomics.Core 10.5.9753.40023 |
9 |
| KOrthology | KEGG Orthology | SMRUCC.genomics.Core 10.5.9762.7562 |
9 |
SMRUCC.genomics.Assembly.KEGG.DBGET.bGetObject
| Type | Summary | Package | Members |
|---|---|---|---|
| bGetObject | dbget-bin/www_bget | SMRUCC.genomics.Core 10.5.9753.40023 |
4 |
| bGetObject | dbget-bin/www_bget | SMRUCC.genomics.Core 10.5.9762.7562 |
4 |
| Compound | A data model for the KEGG compound. | SMRUCC.genomics.Core 10.5.9753.40023 |
21 |
| Compound | A data model for the KEGG compound. | SMRUCC.genomics.Core 10.5.9762.7562 |
6 |
| Disease | SMRUCC.genomics.Core 10.5.9753.40023 |
13 | |
| Disease | SMRUCC.genomics.Core 10.5.9762.7562 |
1 | |
| Glycan | SMRUCC.genomics.Core 10.5.9753.40023 |
6 | |
| Glycan | SMRUCC.genomics.Core 10.5.9762.7562 |
1 | |
| Hsa_gene | The data model of the genes in the human genome.(人类基因组之中的基因模型) | SMRUCC.genomics.Core 10.5.9753.40023 |
17 |
| Hsa_gene | The data model of the genes in the human genome.(人类基因组之中的基因模型) | SMRUCC.genomics.Core 10.5.9762.7562 |
3 |
| Module | KEGG MODULE is a collection of manually defined functional units, called KEGG modules and identified by the M numbers, used for annotation and biological interpretation of sequen… | SMRUCC.genomics.Core 10.5.9753.40023 |
10 |
| Module | KEGG MODULE is a collection of manually defined functional units, called KEGG modules and identified by the M numbers, used for annotation and biological interpretation of sequen… | SMRUCC.genomics.Core 10.5.9762.7562 |
1 |
| OrthologyTerms | SMRUCC.genomics.Core 10.5.9753.40023 |
5 | |
| OrthologyTerms | SMRUCC.genomics.Core 10.5.9762.7562 |
2 | |
| Pathway | The kegg pathway annotation data. | SMRUCC.genomics.Core 10.5.9753.40023 |
20 |
| Pathway | The kegg pathway annotation data. | SMRUCC.genomics.Core 10.5.9762.7562 |
6 |
| PathwayMap | Pathway.LoadFromResource(). | SMRUCC.genomics.Core 10.5.9753.40023 |
17 |
| PathwayMap | Pathway.LoadFromResource(). | SMRUCC.genomics.Core 10.5.9762.7562 |
7 |
| Reaction | KEGG reaction annotation data. | SMRUCC.genomics.Core 10.5.9753.40023 |
20 |
| Reaction | KEGG reaction annotation data. | SMRUCC.genomics.Core 10.5.9762.7562 |
10 |
| ReactionClass | represents a collection of the kegg Reaction data model which are have similar compound structure transformation result. | SMRUCC.genomics.Core 10.5.9753.40023 |
10 |
| ReactionClass | represents a collection of the kegg Reaction data model which are have similar compound structure transformation result. | SMRUCC.genomics.Core 10.5.9762.7562 |
2 |
| ReactionCompoundTransform | 反应左端代谢物在经过了代谢反应之后结果上的转换变化的结果(反应的右端) | SMRUCC.genomics.Core 10.5.9753.40023 |
3 |
| ReactionCompoundTransform | 反应左端代谢物在经过了代谢反应之后结果上的转换变化的结果(反应的右端) | SMRUCC.genomics.Core 10.5.9762.7562 |
3 |
| Reference | 参考文献 | SMRUCC.genomics.Core 10.5.9753.40023 |
8 |
| Reference | 参考文献 | SMRUCC.genomics.Core 10.5.9762.7562 |
8 |
SMRUCC.genomics.Assembly.KEGG.DBGET.bGetObject.Organism
| Type | Summary | Package | Members |
|---|---|---|---|
| EntryAPI | SMRUCC.genomics.Core 10.5.9753.40023 |
10 | |
| EntryAPI | SMRUCC.genomics.Core 10.5.9762.7562 |
10 | |
| KEGGOrganism | KEGG Organisms: Complete Genomes (http://www.genome.jp/kegg/catalog/org_list.html) | SMRUCC.genomics.Core 10.5.9753.40023 |
4 |
| KEGGOrganism | KEGG Organisms: Complete Genomes (http://www.genome.jp/kegg/catalog/org_list.html) | SMRUCC.genomics.Core 10.5.9762.7562 |
1 |
| Organism | SMRUCC.genomics.Core 10.5.9753.40023 |
11 | |
| Organism | SMRUCC.genomics.Core 10.5.9762.7562 |
4 | |
| OrganismInfo | http://www.kegg.jp/kegg-bin/show_organism?org={code} | SMRUCC.genomics.Core 10.5.9753.40023 |
15 |
| OrganismInfo | http://www.kegg.jp/kegg-bin/show_organism?org={code} | SMRUCC.genomics.Core 10.5.9762.7562 |
7 |
| Prokaryote | 原核生物 | SMRUCC.genomics.Core 10.5.9753.40023 |
2 |
| Prokaryote | 原核生物 | SMRUCC.genomics.Core 10.5.9762.7562 |
2 |
| ShowOrganism | http web handler for the kegg organism info page | SMRUCC.genomics.Core 10.5.9753.40023 |
0 |
| ShowOrganism | http web handler for the kegg organism info page | SMRUCC.genomics.Core 10.5.9762.7562 |
0 |
SMRUCC.genomics.Assembly.KEGG.DBGET.bGetObject.SSDB
| Type | Summary | Package | Members |
|---|---|---|---|
| Enzyme | SMRUCC.genomics.Core 10.5.9753.40023 |
11 | |
| Enzyme | SMRUCC.genomics.Core 10.5.9762.7562 |
9 | |
| Ortholog | .csv > http://www.kegg.jp/ssdb-bin/ssdb_best?org_gene=sp:locus_tag | SMRUCC.genomics.Core 10.5.9753.40023 |
15 |
| Ortholog | .csv > http://www.kegg.jp/ssdb-bin/ssdb_best?org_gene=sp:locus_tag | SMRUCC.genomics.Core 10.5.9762.7562 |
15 |
| OrthologREST | 蛋白质直系同源比对blastp结果, *.xml | SMRUCC.genomics.Core 10.5.9753.40023 |
9 |
| OrthologREST | 蛋白质直系同源比对blastp结果, *.xml | SMRUCC.genomics.Core 10.5.9762.7562 |
9 |
| Orthology | KEGG KO分类 | SMRUCC.genomics.Core 10.5.9753.40023 |
10 |
| Orthology | KEGG KO分类 | SMRUCC.genomics.Core 10.5.9762.7562 |
1 |
SMRUCC.genomics.Assembly.KEGG.DBGET.BriteHEntry
| Type | Summary | Package | Members |
|---|---|---|---|
| BriteHText | BRITE Functional Hierarchies | SMRUCC.genomics.Core 10.5.9753.40023 |
20 |
| BriteHText | BRITE Functional Hierarchies | SMRUCC.genomics.Core 10.5.9762.7562 |
11 |
| BriteHTextParser | SMRUCC.genomics.Core 10.5.9753.40023 |
2 | |
| BriteHTextParser | SMRUCC.genomics.Core 10.5.9762.7562 |
2 | |
| BriteTerm | A general brite term | SMRUCC.genomics.Core 10.5.9753.40023 |
8 |
| BriteTerm | A general brite term | SMRUCC.genomics.Core 10.5.9762.7562 |
6 |
| CompoundBrite | Compounds with Biological Roles.(在这里面包含有KEGG compounds的下载API) | SMRUCC.genomics.Core 10.5.9753.40023 |
33 |
| CompoundBrite | Compounds with Biological Roles.(在这里面包含有KEGG compounds的下载API) | SMRUCC.genomics.Core 10.5.9762.7562 |
32 |
| EnzymaticReaction | Extract data from the htext entry model | SMRUCC.genomics.Core 10.5.9753.40023 |
8 |
| EnzymaticReaction | Extract data from the htext entry model | SMRUCC.genomics.Core 10.5.9762.7562 |
5 |
| EnzymeEntry | 在这里的entry是KO编号,而非Reaction编号 | SMRUCC.genomics.Core 10.5.9753.40023 |
6 |
| EnzymeEntry | 在这里的entry是KO编号,而非Reaction编号 | SMRUCC.genomics.Core 10.5.9762.7562 |
6 |
| htext | KEGG BRITE is a collection of manually created hierarchical text (htext) files capturing functional hierarchies of various biological objects, especially those represented as K… | SMRUCC.genomics.Core 10.5.9753.40023 |
13 |
| htext | KEGG BRITE is a collection of manually created hierarchical text (htext) files capturing functional hierarchies of various biological objects, especially those represented as K… | SMRUCC.genomics.Core 10.5.9762.7562 |
7 |
| KOCatalog | SMRUCC.genomics.Core 10.5.9753.40023 |
3 | |
| KOCatalog | SMRUCC.genomics.Core 10.5.9762.7562 |
1 | |
| ModsBrite | 加载代谢途径或者KEGG Modules的Brite文档的模块 | SMRUCC.genomics.Core 10.5.9753.40023 |
3 |
| ModsBrite | 加载代谢途径或者KEGG Modules的Brite文档的模块 | SMRUCC.genomics.Core 10.5.9762.7562 |
3 |
| Module | KEGG里面的模块的入口点的定义数据 | SMRUCC.genomics.Core 10.5.9753.40023 |
11 |
| Module | KEGG里面的模块的入口点的定义数据 | SMRUCC.genomics.Core 10.5.9762.7562 |
7 |
| ModuleClassAPI | SMRUCC.genomics.Core 10.5.9753.40023 |
16 | |
| ModuleClassAPI | SMRUCC.genomics.Core 10.5.9762.7562 |
4 | |
| Organism | br08601 > http://www.kegg.jp/kegg-bin/download_htext?htext=br08601.keg&format=htext&filedir= | SMRUCC.genomics.Core 10.5.9753.40023 |
5 |
| Organism | br08601 > http://www.kegg.jp/kegg-bin/download_htext?htext=br08601.keg&format=htext&filedir= | SMRUCC.genomics.Core 10.5.9762.7562 |
2 |
| Pathway | The brief entry information for the pathway objects in the KEGG database. | SMRUCC.genomics.Core 10.5.9753.40023 |
13 |
| Pathway | The brief entry information for the pathway objects in the KEGG database. | SMRUCC.genomics.Core 10.5.9762.7562 |
7 |
| PathwayProfiles | SMRUCC.genomics.Core 10.5.9753.40023 |
3 | |
| PathwayProfiles | SMRUCC.genomics.Core 10.5.9762.7562 |
2 | |
| ReactionClass | SMRUCC.genomics.Core 10.5.9753.40023 |
6 | |
| ReactionClass | SMRUCC.genomics.Core 10.5.9762.7562 |
5 |
SMRUCC.genomics.Assembly.KEGG.DBGET.LinkDB
| Type | Summary | Package | Members |
|---|---|---|---|
| Relationships | SMRUCC.genomics.Core 10.5.9753.40023 |
9 | |
| Relationships | SMRUCC.genomics.Core 10.5.9762.7562 |
9 |
SMRUCC.genomics.Assembly.KEGG.DBGET.ReferenceMap
| Type | Summary | Package | Members |
|---|---|---|---|
| ReferenceMapData | KEGG数据库之中的参考途径 | SMRUCC.genomics.Core 10.5.9753.40023 |
12 |
| ReferenceMapData | KEGG数据库之中的参考途径 | SMRUCC.genomics.Core 10.5.9762.7562 |
1 |
| ReferenceReaction | SMRUCC.genomics.Core 10.5.9753.40023 |
1 | |
| ReferenceReaction | SMRUCC.genomics.Core 10.5.9762.7562 |
1 |
SMRUCC.genomics.Assembly.KEGG.Medical
| Type | Summary | Package | Members |
|---|---|---|---|
| ClassInheritance | SMRUCC.genomics.Core 10.5.9753.40023 |
8 | |
| ClassInheritance | SMRUCC.genomics.Core 10.5.9762.7562 |
4 | |
| Disease | SMRUCC.genomics.Core 10.5.9753.40023 |
14 | |
| Disease | SMRUCC.genomics.Core 10.5.9762.7562 |
1 | |
| Drug | 药物分子的注释信息 | SMRUCC.genomics.Core 10.5.9753.40023 |
18 |
| Drug | 药物分子的注释信息 | SMRUCC.genomics.Core 10.5.9762.7562 |
0 |
| DrugParser | 解析KEGG ftp服务器上面的药物数据模型 | SMRUCC.genomics.Core 10.5.9753.40023 |
5 |
| DrugParser | 解析KEGG ftp服务器上面的药物数据模型 | SMRUCC.genomics.Core 10.5.9762.7562 |
3 |
| Extensions | SMRUCC.genomics.Core 10.5.9753.40023 |
3 | |
| Extensions | SMRUCC.genomics.Core 10.5.9762.7562 |
2 |
SMRUCC.genomics.Assembly.KEGG.WebServices
| Type | Summary | Package | Members |
|---|---|---|---|
| FetchSequence | SMRUCC.genomics.Core 10.5.9753.40023 |
2 | |
| FetchSequence | SMRUCC.genomics.Core 10.5.9762.7562 |
1 | |
| ListEntry | Search entry | SMRUCC.genomics.Core 10.5.9753.40023 |
7 |
| ListEntry | Search entry | SMRUCC.genomics.Core 10.5.9762.7562 |
7 |
| LocalRender | KEGG pathway map local rendering engine | SMRUCC.genomics.Core 10.5.9753.40023 |
11 |
| LocalRender | KEGG pathway map local rendering engine | SMRUCC.genomics.Core 10.5.9762.7562 |
10 |
| MapHighlights | mix rendering | SMRUCC.genomics.Core 10.5.9753.40023 |
10 |
| MapHighlights | mix rendering | SMRUCC.genomics.Core 10.5.9762.7562 |
2 |
| MapIndex | a subclass of Map | SMRUCC.genomics.Core 10.5.9753.40023 |
7 |
| MapIndex | a subclass of Map | SMRUCC.genomics.Core 10.5.9762.7562 |
1 |
| MapRepository | The repository xml data of kegg Map | SMRUCC.genomics.Core 10.5.9753.40023 |
13 |
| MapRepository | The repository xml data of kegg Map | SMRUCC.genomics.Core 10.5.9762.7562 |
5 |
| PathwayMapping | 需要程序处于联网状态 | SMRUCC.genomics.Core 10.5.9753.40023 |
11 |
| PathwayMapping | 需要程序处于联网状态 | SMRUCC.genomics.Core 10.5.9762.7562 |
11 |
| QueryEntry | SMRUCC.genomics.Core 10.5.9753.40023 |
5 | |
| QueryEntry | SMRUCC.genomics.Core 10.5.9762.7562 |
5 | |
| QuerySource | Meta data for query KEGG database | SMRUCC.genomics.Core 10.5.9753.40023 |
6 |
| QuerySource | Meta data for query KEGG database | SMRUCC.genomics.Core 10.5.9762.7562 |
6 |
| URLEncoder | The kegg pathway map url encoder pattern: http://www.genome.jp/kegg-bin/show_pathway?{pathway_ID}/{geneID}%09{color}/{geneID}%09{color}/{geneID}%09{color} | SMRUCC.genomics.Core 10.5.9753.40023 |
6 |
| URLEncoder | The kegg pathway map url encoder pattern: http://www.genome.jp/kegg-bin/show_pathway?{pathway_ID}/{geneID}%09{color}/{geneID}%09{color}/{geneID}%09{color} | SMRUCC.genomics.Core 10.5.9762.7562 |
6 |
| WebRequest | KEGG web query request handler.(KEGG数据库web查询处理模块) KEGG是一个代谢图,收录基因和基因组的数据库,数据库可以分为 3 大部分,基因数据库,化学分子物质数据库,以及基于基因和化学分子物质相互关系而建立起来的代谢路径数据库, 在KEGG数据库中,有一个“专有名词”KO(KEGG Orthology),它是… | SMRUCC.genomics.Core 10.5.9753.40023 |
19 |
| WebRequest | KEGG web query request handler.(KEGG数据库web查询处理模块) KEGG是一个代谢图,收录基因和基因组的数据库,数据库可以分为 3 大部分,基因数据库,化学分子物质数据库,以及基于基因和化学分子物质相互关系而建立起来的代谢路径数据库, 在KEGG数据库中,有一个“专有名词”KO(KEGG Orthology),它是… | SMRUCC.genomics.Core 10.5.9762.7562 |
17 |
SMRUCC.genomics.Assembly.KEGG.WebServices.InternalWebFormParsers
| Type | Summary | Package | Members |
|---|---|---|---|
| WebForm | parser for the kegg form data text, example like request text content from the rest: https://rest.kegg.jp/get/hsa00592 (KEGG 网页表格的数据解析方法,在Value之中可能会有重复的Key数据出现) | SMRUCC.genomics.Core 10.5.9753.40023 |
16 |
| WebForm | parser for the kegg form data text, example like request text content from the rest: https://rest.kegg.jp/get/hsa00592 (KEGG 网页表格的数据解析方法,在Value之中可能会有重复的Key数据出现) | SMRUCC.genomics.Core 10.5.9762.7562 |
8 |
SMRUCC.genomics.Assembly.KEGG.WebServices.KGML
| Type | Summary | Package | Members |
|---|---|---|---|
| entry | Network nodes | SMRUCC.genomics.Core 10.5.9753.40023 |
7 |
| entry | Network nodes | SMRUCC.genomics.Core 10.5.9762.7562 |
6 |
| GeneMetaboliteNetwork | A network of gene -> compound that is extracted from the KGML metabolic reaction data. | SMRUCC.genomics.Core 10.5.9753.40023 |
9 |
| GeneMetaboliteNetwork | A network of gene -> compound that is extracted from the KGML metabolic reaction data. | SMRUCC.genomics.Core 10.5.9762.7562 |
9 |
| GeneNetworkExport | A network of gene1 -> compound -> gene2 | SMRUCC.genomics.Core 10.5.9753.40023 |
10 |
| GeneNetworkExport | A network of gene1 -> compound -> gene2 | SMRUCC.genomics.Core 10.5.9762.7562 |
10 |
| link | Network edges | SMRUCC.genomics.Core 10.5.9753.40023 |
2 |
| link | Network edges | SMRUCC.genomics.Core 10.5.9762.7562 |
2 |
| pathway | The kegg pathway map layout data in KGML file format. | SMRUCC.genomics.Core 10.5.9753.40023 |
12 |
| pathway | The kegg pathway map layout data in KGML file format. | SMRUCC.genomics.Core 10.5.9762.7562 |
6 |
| reaction | <reaction>元素表示通路中的一种生化反应,用于连接代谢物节点,形成代谢网络中的化学转化关系。在代谢通路中,<reaction>元素主要涉及底物(substrates) 和产物(products)两类代谢物节点。它描述了一个化学反应如何将一组底物转化为另一组产物,以及该反应是否可逆等信息。<reaction>元素在KGML中通常用于 表示化学网络(… | SMRUCC.genomics.Core 10.5.9753.40023 |
6 |
| reaction | <reaction>元素表示通路中的一种生化反应,用于连接代谢物节点,形成代谢网络中的化学转化关系。在代谢通路中,<reaction>元素主要涉及底物(substrates) 和产物(products)两类代谢物节点。它描述了一个化学反应如何将一组底物转化为另一组产物,以及该反应是否可逆等信息。<reaction>元素在KGML中通常用于 表示化学网络(… | SMRUCC.genomics.Core 10.5.9762.7562 |
4 |
| relation | <relation>元素表示通路中两个节点之间的关联关系,主要用于描述蛋白质(或基因产物)之间的相互作用,以及蛋白质与代谢物之间的调控关系。与<reaction>描述化学转化不同, <relation>更侧重于调控和相互作用,例如一个蛋白质激活或抑制另一个蛋白质,或一个蛋白质结合一个代谢物等。<relation>元素在KGML中通常用于表示蛋白质网络(pr… | SMRUCC.genomics.Core 10.5.9753.40023 |
3 |
| relation | <relation>元素表示通路中两个节点之间的关联关系,主要用于描述蛋白质(或基因产物)之间的相互作用,以及蛋白质与代谢物之间的调控关系。与<reaction>描述化学转化不同, <relation>更侧重于调控和相互作用,例如一个蛋白质激活或抑制另一个蛋白质,或一个蛋白质结合一个代谢物等。<relation>元素在KGML中通常用于表示蛋白质网络(pr… | SMRUCC.genomics.Core 10.5.9762.7562 |
3 |
SMRUCC.genomics.Assembly.KEGG.WebServices.WebRequest
| Type | Summary | Package | Members |
|---|---|---|---|
| GetFastaSequenceMethod | The unify interface for gets the data from KEGG database.(从KEGG数据库获取序列数据以及从本底的数据库之中获取序列数据的统一接口) | SMRUCC.genomics.Core 10.5.9753.40023 |
3 |
| GetFastaSequenceMethod | The unify interface for gets the data from KEGG database.(从KEGG数据库获取序列数据以及从本底的数据库之中获取序列数据的统一接口) | SMRUCC.genomics.Core 10.5.9762.7562 |
1 |
SMRUCC.genomics.Assembly.KEGG.WebServices.XML
| Type | Summary | Package | Members |
|---|---|---|---|
| Area | SMRUCC.genomics.Core 10.5.9753.40023 |
15 | |
| Area | SMRUCC.genomics.Core 10.5.9762.7562 |
12 | |
| Map | The kegg reference map | SMRUCC.genomics.Core 10.5.9753.40023 |
10 |
| Map | The kegg reference map | SMRUCC.genomics.Core 10.5.9762.7562 |
5 |
| MapData | SMRUCC.genomics.Core 10.5.9753.40023 |
4 | |
| MapData | SMRUCC.genomics.Core 10.5.9762.7562 |
4 |
SMRUCC.genomics.Assembly.MetaCyc
| Type | Summary | Package | Members |
|---|---|---|---|
| Extensions | SMRUCC.genomics.Core 10.5.9753.40023 |
3 | |
| Extensions | SMRUCC.genomics.Core 10.5.9762.7562 |
1 |
SMRUCC.genomics.Assembly.MetaCyc.File
| Type | Summary | Package | Members |
|---|---|---|---|
| AttributeValue | Attribute-Value: Each attribute-value file contains data for one class of objects, such as genes or proteins. | SMRUCC.genomics.Core 10.5.9753.40023 |
5 |
| AttributeValue | Attribute-Value: Each attribute-value file contains data for one class of objects, such as genes or proteins. | SMRUCC.genomics.Core 10.5.9762.7562 |
2 |
| Classes | The class types that appears in the MetaCyc database. | SMRUCC.genomics.Core 10.5.9753.40023 |
5 |
| Classes | The class types that appears in the MetaCyc database. | SMRUCC.genomics.Core 10.5.9762.7562 |
5 |
| FileReader | Database file reader of the metacyc database. | SMRUCC.genomics.Core 10.5.9753.40023 |
4 |
| FileReader | Database file reader of the metacyc database. | SMRUCC.genomics.Core 10.5.9762.7562 |
3 |
| ObjectModel | 每一个数据文件里面的每一个对象的模型 | SMRUCC.genomics.Core 10.5.9753.40023 |
3 |
| ObjectModel | 每一个数据文件里面的每一个对象的模型 | SMRUCC.genomics.Core 10.5.9762.7562 |
0 |
| Property | The summary database property text content in the attribute-value data file head line. | SMRUCC.genomics.Core 10.5.9753.40023 |
9 |
| Property | The summary database property text content in the attribute-value data file head line. | SMRUCC.genomics.Core 10.5.9762.7562 |
9 |
| TabularFile | Each tabular file contains data for one class of objects, such as reactions or pathways. | SMRUCC.genomics.Core 10.5.9753.40023 |
6 |
| TabularFile | Each tabular file contains data for one class of objects, such as reactions or pathways. | SMRUCC.genomics.Core 10.5.9762.7562 |
6 |
SMRUCC.genomics.Assembly.MetaCyc.File.DataFiles
| Type | Summary | Package | Members |
|---|---|---|---|
| Compounds | 该细胞系统中的所有的小分子化合物的集合,本集合取决于代谢网络的结构以及控制物质跨膜运输的蛋白质 | SMRUCC.genomics.Core 10.5.9753.40023 |
4 |
| Compounds | 该细胞系统中的所有的小分子化合物的集合,本集合取决于代谢网络的结构以及控制物质跨膜运输的蛋白质 | SMRUCC.genomics.Core 10.5.9762.7562 |
2 |
| DataFile | All of the data file object in the metacyc database will be inherits from this class object type. | SMRUCC.genomics.Core 10.5.9753.40023 |
28 |
| DataFile | All of the data file object in the metacyc database will be inherits from this class object type. | SMRUCC.genomics.Core 10.5.9762.7562 |
11 |
| DNABindSites | This class describes DNA regions that are binding sites for transcription factors. | SMRUCC.genomics.Core 10.5.9753.40023 |
2 |
| DNABindSites | This class describes DNA regions that are binding sites for transcription factors. | SMRUCC.genomics.Core 10.5.9762.7562 |
0 |
| Enzrxns | Frames in the class Enzymatic-Reactions describe attributes of an enzyme with respect to a particular reaction. | SMRUCC.genomics.Core 10.5.9753.40023 |
2 |
| Enzrxns | Frames in the class Enzymatic-Reactions describe attributes of an enzyme with respect to a particular reaction. | SMRUCC.genomics.Core 10.5.9762.7562 |
0 |
| Genes | Each frame in the class Genes describes a single gene, meaning a region of DNA that defines a coding region for one or more gene products. | SMRUCC.genomics.Core 10.5.9753.40023 |
4 |
| Genes | Each frame in the class Genes describes a single gene, meaning a region of DNA that defines a coding region for one or more gene products. | SMRUCC.genomics.Core 10.5.9762.7562 |
2 |
| Pathways | Frames in class Pathways encode metabolic and signaling pathways. | SMRUCC.genomics.Core 10.5.9753.40023 |
2 |
| Pathways | Frames in class Pathways encode metabolic and signaling pathways. | SMRUCC.genomics.Core 10.5.9762.7562 |
0 |
| Promoters | Frames in this class define transcription start sites. | SMRUCC.genomics.Core 10.5.9753.40023 |
3 |
| Promoters | Frames in this class define transcription start sites. | SMRUCC.genomics.Core 10.5.9762.7562 |
1 |
| ProteinFeatures | Protein features (for example, active sites), This file lists all the protein features (such as active sites) in the PGDB. | SMRUCC.genomics.Core 10.5.9753.40023 |
2 |
| ProteinFeatures | Protein features (for example, active sites), This file lists all the protein features (such as active sites) in the PGDB. | SMRUCC.genomics.Core 10.5.9762.7562 |
0 |
| Proteins | 本文件中列举出了所有的蛋白质复合物(CPLX)以及单体蛋白(MONOMER) | SMRUCC.genomics.Core 10.5.9753.40023 |
4 |
| Proteins | 本文件中列举出了所有的蛋白质复合物(CPLX)以及单体蛋白(MONOMER) | SMRUCC.genomics.Core 10.5.9762.7562 |
1 |
| ProtLigandCplxes | The file lists all the complexes of proteins with small-molecule ligands in the PGDB. | SMRUCC.genomics.Core 10.5.9753.40023 |
2 |
| ProtLigandCplxes | The file lists all the complexes of proteins with small-molecule ligands in the PGDB. | SMRUCC.genomics.Core 10.5.9762.7562 |
0 |
| Reactions | Frames within the Reactions class describe properties of a biochemical reaction independent of any enzyme or enzymes that catalyze that reaction. | SMRUCC.genomics.Core 10.5.9753.40023 |
4 |
| Reactions | Frames within the Reactions class describe properties of a biochemical reaction independent of any enzyme or enzymes that catalyze that reaction. | SMRUCC.genomics.Core 10.5.9762.7562 |
0 |
| Regulations | This class describes most forms of protein, RNA or activity regulation. | SMRUCC.genomics.Core 10.5.9753.40023 |
5 |
| Regulations | This class describes most forms of protein, RNA or activity regulation. | SMRUCC.genomics.Core 10.5.9762.7562 |
1 |
| Regulons | This file lists all transcription factors in the PGDB and the genes that they regulate by binding upstream of the transcription unit containing those genes. | SMRUCC.genomics.Core 10.5.9753.40023 |
2 |
| Regulons | This file lists all transcription factors in the PGDB and the genes that they regulate by binding upstream of the transcription unit containing those genes. | SMRUCC.genomics.Core 10.5.9762.7562 |
0 |
| TransUnits | Frames in this class encode transcription units, which are defined as a set of genes and associated control regions that produce a single transcript. | SMRUCC.genomics.Core 10.5.9753.40023 |
2 |
| TransUnits | Frames in this class encode transcription units, which are defined as a set of genes and associated control regions that produce a single transcript. | SMRUCC.genomics.Core 10.5.9762.7562 |
1 |
SMRUCC.genomics.Assembly.MetaCyc.File.DataFiles.DataTabular
SMRUCC.genomics.Assembly.MetaCyc.File.DataFiles.Reflection
| Type | Summary | Package | Members |
|---|---|---|---|
| FileStream | SMRUCC.genomics.Core 10.5.9753.40023 |
15 | |
| FileStream | SMRUCC.genomics.Core 10.5.9762.7562 |
8 | |
| MetaCycField | MetaCyc数据库中的一个对象的一个属性值 | SMRUCC.genomics.Core 10.5.9753.40023 |
3 |
| MetaCycField | MetaCyc数据库中的一个对象的一个属性值 | SMRUCC.genomics.Core 10.5.9762.7562 |
3 |
SMRUCC.genomics.Assembly.MetaCyc.File.DataFiles.Reflection.FileStream
| Type | Summary | Package | Members |
|---|---|---|---|
| ReadingThread | 数据库并发读取线程委托 | SMRUCC.genomics.Core 10.5.9753.40023 |
3 |
| ReadingThread | 数据库并发读取线程委托 | SMRUCC.genomics.Core 10.5.9762.7562 |
0 |
SMRUCC.genomics.Assembly.MetaCyc.File.DataFiles.Reflection.MetaCycField
SMRUCC.genomics.Assembly.MetaCyc.File.DataFiles.Slots
| Type | Summary | Package | Members |
|---|---|---|---|
| BindReaction | Binding reaction between proteins and DNA binding sites such as promoters | SMRUCC.genomics.Core 10.5.9753.40023 |
5 |
| BindReaction | Binding reaction between proteins and DNA binding sites such as promoters | SMRUCC.genomics.Core 10.5.9762.7562 |
0 |
| Citation | Any of the above components may be omitted, but it is meaningless to supply a timestamp, curator or probability if the evidence-code is omitted. | SMRUCC.genomics.Core 10.5.9753.40023 |
16 |
| Citation | Any of the above components may be omitted, but it is meaningless to supply a timestamp, curator or probability if the evidence-code is omitted. | SMRUCC.genomics.Core 10.5.9762.7562 |
16 |
| Compound | The Class Compounds describe small-molecular-weight chemical compounds — typically, compounds that are substrates of metabolic reactions or compounds that activate or inhibit met… | SMRUCC.genomics.Core 10.5.9753.40023 |
17 |
| Compound | The Class Compounds describe small-molecular-weight chemical compounds — typically, compounds that are substrates of metabolic reactions or compounds that activate or inhibit met… | SMRUCC.genomics.Core 10.5.9762.7562 |
1 |
| DNABindSite | The class describes DNA regions that are binding sites for transcription factors. | SMRUCC.genomics.Core 10.5.9753.40023 |
5 |
| DNABindSite | The class describes DNA regions that are binding sites for transcription factors. | SMRUCC.genomics.Core 10.5.9762.7562 |
3 |
| Enzrxn | SMRUCC.genomics.Core 10.5.9753.40023 |
13 | |
| Enzrxn | SMRUCC.genomics.Core 10.5.9762.7562 |
7 | |
| Gene | SMRUCC.genomics.Core 10.5.9753.40023 |
14 | |
| Gene | SMRUCC.genomics.Core 10.5.9762.7562 |
7 | |
| IComplexes | 复合物对象的接口 | SMRUCC.genomics.Core 10.5.9753.40023 |
1 |
| IComplexes | 复合物对象的接口 | SMRUCC.genomics.Core 10.5.9762.7562 |
1 |
| Object | The object type is the base type of the objects definition both in the namespace PGDB.DataFile and PGDB.Schemas | SMRUCC.genomics.Core 10.5.9753.40023 |
21 |
| Object | The object type is the base type of the objects definition both in the namespace PGDB.DataFile and PGDB.Schemas | SMRUCC.genomics.Core 10.5.9762.7562 |
11 |
| Pathway | SMRUCC.genomics.Core 10.5.9753.40023 |
19 | |
| Pathway | SMRUCC.genomics.Core 10.5.9762.7562 |
16 | |
| Promoter | Frames in this class define transcription start sites. | SMRUCC.genomics.Core 10.5.9753.40023 |
9 |
| Promoter | Frames in this class define transcription start sites. | SMRUCC.genomics.Core 10.5.9762.7562 |
8 |
| Protein | The class of all proteins is divided into two subclasses: protein complexes and polypeptides. | SMRUCC.genomics.Core 10.5.9753.40023 |
25 |
| Protein | The class of all proteins is divided into two subclasses: protein complexes and polypeptides. | SMRUCC.genomics.Core 10.5.9762.7562 |
17 |
| ProteinFeature | This class describes sites of interest (such as binding sites, modification sites, cleavage sites) on a polypeptide. | SMRUCC.genomics.Core 10.5.9753.40023 |
7 |
| ProteinFeature | This class describes sites of interest (such as binding sites, modification sites, cleavage sites) on a polypeptide. | SMRUCC.genomics.Core 10.5.9762.7562 |
6 |
| ProtLigandCplxe | Protein-Small-Molecule-Complexes | SMRUCC.genomics.Core 10.5.9753.40023 |
10 |
| ProtLigandCplxe | Protein-Small-Molecule-Complexes | SMRUCC.genomics.Core 10.5.9762.7562 |
4 |
| Reaction | Reactions are organized into two parallel ontologies. | SMRUCC.genomics.Core 10.5.9753.40023 |
17 |
| Reaction | Reactions are organized into two parallel ontologies. | SMRUCC.genomics.Core 10.5.9762.7562 |
10 |
| Regulation | This class describes most forms of protein, RNA or activity regulation. | SMRUCC.genomics.Core 10.5.9753.40023 |
10 |
| Regulation | This class describes most forms of protein, RNA or activity regulation. | SMRUCC.genomics.Core 10.5.9762.7562 |
7 |
| TransUnit | Frames in this class encode transcription units, which are defined as a set of genes and associated control regions that produce a single transcript. | SMRUCC.genomics.Core 10.5.9753.40023 |
4 |
| TransUnit | Frames in this class encode transcription units, which are defined as a set of genes and associated control regions that produce a single transcript. | SMRUCC.genomics.Core 10.5.9762.7562 |
3 |
SMRUCC.genomics.Assembly.MetaCyc.File.DataFiles.Slots.Protein
| Type | Summary | Package | Members |
|---|---|---|---|
| IEnzyme | A general data structure of the enzyme entity that can catalyze a reaction.(能够催化酶促反应的酶分子的通用数据类型) | SMRUCC.genomics.Core 10.5.9753.40023 |
4 |
| IEnzyme | A general data structure of the enzyme entity that can catalyze a reaction.(能够催化酶促反应的酶分子的通用数据类型) | SMRUCC.genomics.Core 10.5.9762.7562 |
4 |
SMRUCC.genomics.Assembly.MetaCyc.File.DataFiles.Slots.Regulation
| Type | Summary | Package | Members |
|---|---|---|---|
| IRegulator | An object type that it has the ability to regulates the gene expression process. | SMRUCC.genomics.Core 10.5.9753.40023 |
5 |
| IRegulator | An object type that it has the ability to regulates the gene expression process. | SMRUCC.genomics.Core 10.5.9762.7562 |
5 |
SMRUCC.genomics.Assembly.MetaCyc.File.FileSystem
| Type | Summary | Package | Members |
|---|---|---|---|
| DatabaseLoadder | 当对MetaCyc数据库进行延时加载的时候,则需要使用到本对象进行数据的读取操作 | SMRUCC.genomics.Core 10.5.9753.40023 |
22 |
| DatabaseLoadder | 当对MetaCyc数据库进行延时加载的时候,则需要使用到本对象进行数据的读取操作 | SMRUCC.genomics.Core 10.5.9762.7562 |
18 |
| PGDB | The MetaCyc database file reader object. | SMRUCC.genomics.Core 10.5.9753.40023 |
25 |
| PGDB | The MetaCyc database file reader object. | SMRUCC.genomics.Core 10.5.9762.7562 |
12 |
SMRUCC.genomics.Assembly.MetaCyc.File.TabularDataFiles
| Type | Summary | Package | Members |
|---|---|---|---|
| Enzymes | (enzymes.col) For each enzymatic reaction in the PGDB, the file lists the reaction equation, up to 4 pathways that contain the reaction, up to 4 cofactors for the enzyme, up to… | SMRUCC.genomics.Core 10.5.9753.40023 |
3 |
| Enzymes | (enzymes.col) For each enzymatic reaction in the PGDB, the file lists the reaction equation, up to 4 pathways that contain the reaction, up to 4 cofactors for the enzyme, up to… | SMRUCC.genomics.Core 10.5.9762.7562 |
3 |
| Pathway | 代谢途径对象 | SMRUCC.genomics.Core 10.5.9753.40023 |
5 |
| Pathway | 代谢途径对象 | SMRUCC.genomics.Core 10.5.9762.7562 |
3 |
| Pathways | (pathways.col) For each pathway in the PGDB, the file lists the genes that encode the enzymes in that pathway. | SMRUCC.genomics.Core 10.5.9753.40023 |
3 |
| Pathways | (pathways.col) For each pathway in the PGDB, the file lists the genes that encode the enzymes in that pathway. | SMRUCC.genomics.Core 10.5.9762.7562 |
3 |
SMRUCC.genomics.Assembly.MetaCyc.Schema
| Type | Summary | Package | Members |
|---|---|---|---|
| DBLinkManager | MetaCyc database format dblink manager | SMRUCC.genomics.Core 10.5.9753.40023 |
6 |
| DBLinkManager | MetaCyc database format dblink manager | SMRUCC.genomics.Core 10.5.9762.7562 |
0 |
| EffectorMap | Regprecise Effector与MetaCyc Compounds Mapping | SMRUCC.genomics.Core 10.5.9753.40023 |
9 |
| EffectorMap | Regprecise Effector与MetaCyc Compounds Mapping | SMRUCC.genomics.Core 10.5.9762.7562 |
0 |
| EquationEquals | SMRUCC.genomics.Core 10.5.9753.40023 |
3 | |
| EquationEquals | SMRUCC.genomics.Core 10.5.9762.7562 |
2 | |
| PropertyAttributes | SMRUCC.genomics.Core 10.5.9753.40023 |
7 | |
| PropertyAttributes | SMRUCC.genomics.Core 10.5.9762.7562 |
7 | |
| ProteinQuery | SMRUCC.genomics.Core 10.5.9753.40023 |
1 | |
| ProteinQuery | SMRUCC.genomics.Core 10.5.9762.7562 |
1 |
SMRUCC.genomics.Assembly.MetaCyc.Schema.DBLinkManager
SMRUCC.genomics.Assembly.MetaCyc.Schema.Metabolism
| Type | Summary | Package | Members |
|---|---|---|---|
| PathwayLink | SMRUCC.genomics.Core 10.5.9753.40023 |
4 | |
| PathwayLink | SMRUCC.genomics.Core 10.5.9762.7562 |
4 | |
| PathwayMappingTool | 使用一个汇总的MetaCyc数据库,根据目标物种的基因组以及蛋白质信息进行MetaCyc数据库的重建工作 | SMRUCC.genomics.Core 10.5.9753.40023 |
4 |
| PathwayMappingTool | 使用一个汇总的MetaCyc数据库,根据目标物种的基因组以及蛋白质信息进行MetaCyc数据库的重建工作 | SMRUCC.genomics.Core 10.5.9762.7562 |
3 |
| ReactionDirections | This slot specifies the directionality of a reaction. | SMRUCC.genomics.Core 10.5.9753.40023 |
14 |
| ReactionDirections | This slot specifies the directionality of a reaction. | SMRUCC.genomics.Core 10.5.9762.7562 |
14 |
SMRUCC.genomics.Assembly.MetaCyc.Schema.PathwayBrief
| Type | Summary | Package | Members |
|---|---|---|---|
| AssignGene | 将基因与相应的反应过程映射起来 | SMRUCC.genomics.Core 10.5.9753.40023 |
5 |
| AssignGene | 将基因与相应的反应过程映射起来 | SMRUCC.genomics.Core 10.5.9762.7562 |
4 |
| Pathway | SMRUCC.genomics.Core 10.5.9753.40023 |
7 | |
| Pathway | SMRUCC.genomics.Core 10.5.9762.7562 |
2 | |
| PwyFilters | 整理出代谢途径和相应的基因,对于基因个数少于5的代谢途径,其被合并至其他较大的SuperPathway之中去 | SMRUCC.genomics.Core 10.5.9753.40023 |
2 |
| PwyFilters | 整理出代谢途径和相应的基因,对于基因个数少于5的代谢途径,其被合并至其他较大的SuperPathway之中去 | SMRUCC.genomics.Core 10.5.9762.7562 |
1 |
SMRUCC.genomics.Assembly.MetaCyc.Schema.Reflection
| Type | Summary | Package | Members |
|---|---|---|---|
| ExternalKey | 表示所标识的域为表与表之间的外键 | SMRUCC.genomics.Core 10.5.9753.40023 |
4 |
| ExternalKey | 表示所标识的域为表与表之间的外键 | SMRUCC.genomics.Core 10.5.9762.7562 |
4 |
| Path | ObjA ----> ObjB | SMRUCC.genomics.Core 10.5.9753.40023 |
4 |
| Path | ObjA ----> ObjB | SMRUCC.genomics.Core 10.5.9762.7562 |
4 |
| PathRoute | 寻找MetaCyc数据库之中的任意两个对象之间的连接关系 | SMRUCC.genomics.Core 10.5.9753.40023 |
3 |
| PathRoute | 寻找MetaCyc数据库之中的任意两个对象之间的连接关系 | SMRUCC.genomics.Core 10.5.9762.7562 |
3 |
SMRUCC.genomics.Assembly.MetaCyc.Schema.Reflection.ExternalKey
| Type | Summary | Package | Members |
|---|---|---|---|
| Directions | SMRUCC.genomics.Core 10.5.9753.40023 |
6 | |
| Directions | SMRUCC.genomics.Core 10.5.9762.7562 |
6 |
SMRUCC.genomics.Assembly.MetaCyc.Schema.TransportReaction
| Type | Summary | Package | Members |
|---|---|---|---|
| CompoundSpecies | SMRUCC.genomics.Core 10.5.9753.40023 |
6 | |
| CompoundSpecies | SMRUCC.genomics.Core 10.5.9762.7562 |
1 |
SMRUCC.genomics.Assembly.MiST2
| Type | Summary | Package | Members |
|---|---|---|---|
| Domain | The Microbial Signal Transduction database contains the signal transduction proteins for bacterial and archaeal genomes (2,457 complete and 5,181 draft). | SMRUCC.genomics.Core 10.5.9753.40023 |
9 |
| Domain | The Microbial Signal Transduction database contains the signal transduction proteins for bacterial and archaeal genomes (2,457 complete and 5,181 draft). | SMRUCC.genomics.Core 10.5.9762.7562 |
9 |
| MiST2 | MiST2对某一个基因组的注释所产生的数据库文件 | SMRUCC.genomics.Core 10.5.9753.40023 |
17 |
| MiST2 | MiST2对某一个基因组的注释所产生的数据库文件 | SMRUCC.genomics.Core 10.5.9762.7562 |
1 |
| Replicon | 基因组之中的一个复制子 | SMRUCC.genomics.Core 10.5.9753.40023 |
10 |
| Replicon | 基因组之中的一个复制子 | SMRUCC.genomics.Core 10.5.9762.7562 |
6 |
| Transducin | Signal Transduction Protein | SMRUCC.genomics.Core 10.5.9753.40023 |
7 |
| Transducin | Signal Transduction Protein | SMRUCC.genomics.Core 10.5.9762.7562 |
2 |
| TwoComponent | SMRUCC.genomics.Core 10.5.9753.40023 |
9 | |
| TwoComponent | SMRUCC.genomics.Core 10.5.9762.7562 |
6 | |
| WebServices | SMRUCC.genomics.Core 10.5.9753.40023 |
3 | |
| WebServices | SMRUCC.genomics.Core 10.5.9762.7562 |
2 |
SMRUCC.genomics.Assembly.NCBI.CDD
| Type | Summary | Package | Members |
|---|---|---|---|
| Database | SMRUCC.genomics.Core 10.5.9753.40023 |
16 | |
| Database | SMRUCC.genomics.Core 10.5.9762.7562 |
9 | |
| DbFile | CDD database builder.(CDD数据库构建工具) | SMRUCC.genomics.Core 10.5.9753.40023 |
17 |
| DbFile | CDD database builder.(CDD数据库构建工具) | SMRUCC.genomics.Core 10.5.9762.7562 |
5 |
| DomainInfo | The query interface of the local CDD database.(CDD数据库的查询接口) | SMRUCC.genomics.Core 10.5.9753.40023 |
13 |
| DomainInfo | The query interface of the local CDD database.(CDD数据库的查询接口) | SMRUCC.genomics.Core 10.5.9762.7562 |
1 |
| Pn | SMRUCC.genomics.Core 10.5.9753.40023 |
8 | |
| Pn | SMRUCC.genomics.Core 10.5.9762.7562 |
8 | |
| SmpFile | The file data structrue description of each domain smp description data before the CDD database compilation operation. | SMRUCC.genomics.Core 10.5.9753.40023 |
11 |
| SmpFile | The file data structrue description of each domain smp description data before the CDD database compilation operation. | SMRUCC.genomics.Core 10.5.9762.7562 |
3 |
SMRUCC.genomics.Assembly.NCBI.CDD.Blastp
| Type | Summary | Package | Members |
|---|---|---|---|
| Domain | The protein domain object that parse from the output log. | SMRUCC.genomics.Core 10.5.9753.40023 |
10 |
| Domain | The protein domain object that parse from the output log. | SMRUCC.genomics.Core 10.5.9762.7562 |
10 |
| DomnArch | The blast+ program alignment output log file analysis module. | SMRUCC.genomics.Core 10.5.9753.40023 |
7 |
| DomnArch | The blast+ program alignment output log file analysis module. | SMRUCC.genomics.Core 10.5.9762.7562 |
7 |
SMRUCC.genomics.Assembly.NCBI.CDD.Database
| Type | Summary | Package | Members |
|---|---|---|---|
| FastaLoader | 本对象会将读取的数据缓存与内存之中,以加速下一次查询的速度 | SMRUCC.genomics.Core 10.5.9753.40023 |
0 |
| FastaLoader | 本对象会将读取的数据缓存与内存之中,以加速下一次查询的速度 | SMRUCC.genomics.Core 10.5.9762.7562 |
0 |
SMRUCC.genomics.Assembly.NCBI.COG
| Type | Summary | Package | Members |
|---|---|---|---|
| COGCategories | SMRUCC.genomics.Core 10.5.9753.40023 |
10 | |
| COGCategories | SMRUCC.genomics.Core 10.5.9762.7562 |
10 | |
| COGFunction | COG function description data. | SMRUCC.genomics.Core 10.5.9753.40023 |
3 |
| COGFunction | COG function description data. | SMRUCC.genomics.Core 10.5.9762.7562 |
2 |
| Function | SMRUCC.genomics.Core 10.5.9753.40023 |
14 | |
| Function | SMRUCC.genomics.Core 10.5.9762.7562 |
8 |
SMRUCC.genomics.Assembly.NCBI.COG.COGs
| Type | Summary | Package | Members |
|---|---|---|---|
| COGFunc | fun2003-2014.tab Contains list of functional classes. | SMRUCC.genomics.Core 10.5.9753.40023 |
4 |
| COGFunc | fun2003-2014.tab Contains list of functional classes. | SMRUCC.genomics.Core 10.5.9762.7562 |
4 |
| COGName | cognames2003-2014.tab Contains list of COG annotations. | SMRUCC.genomics.Core 10.5.9753.40023 |
4 |
| COGName | cognames2003-2014.tab Contains list of COG annotations. | SMRUCC.genomics.Core 10.5.9762.7562 |
4 |
| COGProt | prot2003-2014.tab Contains RefSeq accession codes for all proteins with assigned COG domains. | SMRUCC.genomics.Core 10.5.9753.40023 |
4 |
| COGProt | prot2003-2014.tab Contains RefSeq accession codes for all proteins with assigned COG domains. | SMRUCC.genomics.Core 10.5.9762.7562 |
4 |
| COGs | 0. General remarks ############################################################ This Is a December 2014 release of 2003-2014 COGs constructed by Eugene Koonin 's group at the… | SMRUCC.genomics.Core 10.5.9753.40023 |
2 |
| COGs | 0. General remarks ############################################################ This Is a December 2014 release of 2003-2014 COGs constructed by Eugene Koonin 's group at the… | SMRUCC.genomics.Core 10.5.9762.7562 |
2 |
| COGTable | cog2003-2014.csv CSV table row for COG, Contains list of orthology domains. | SMRUCC.genomics.Core 10.5.9753.40023 |
11 |
| COGTable | cog2003-2014.csv CSV table row for COG, Contains list of orthology domains. | SMRUCC.genomics.Core 10.5.9762.7562 |
10 |
| Genomes | genomes2003-2014.tab Contains list of genomes (711). | SMRUCC.genomics.Core 10.5.9753.40023 |
5 |
| Genomes | genomes2003-2014.tab Contains list of genomes (711). | SMRUCC.genomics.Core 10.5.9762.7562 |
5 |
| ProtFasta | prot2003-2014.fa.gz Sequences of all proteins with assigned COG domains in FASTA format (gzipped) The first word of the defline always starts with "gi|<protein-id>". | SMRUCC.genomics.Core 10.5.9753.40023 |
5 |
| ProtFasta | prot2003-2014.fa.gz Sequences of all proteins with assigned COG domains in FASTA format (gzipped) The first word of the defline always starts with "gi|<protein-id>". | SMRUCC.genomics.Core 10.5.9762.7562 |
1 |
SMRUCC.genomics.Assembly.NCBI.Entrez
| Type | Summary | Package | Members |
|---|---|---|---|
| EntrezEntry | 查询某一个蛋白质或者基因对象所返回的结果数据下载入口点 | SMRUCC.genomics.Core 10.5.9753.40023 |
6 |
| EntrezEntry | 查询某一个蛋白质或者基因对象所返回的结果数据下载入口点 | SMRUCC.genomics.Core 10.5.9762.7562 |
0 |
| Genbank | The NCBI genbank data api handler | SMRUCC.genomics.Core 10.5.9753.40023 |
2 |
| Genbank | The NCBI genbank data api handler | SMRUCC.genomics.Core 10.5.9762.7562 |
2 |
| QueryHandler | http://www.ncbi.nlm.nih.gov/nuccore/?term= | SMRUCC.genomics.Core 10.5.9753.40023 |
4 |
| QueryHandler | http://www.ncbi.nlm.nih.gov/nuccore/?term= | SMRUCC.genomics.Core 10.5.9762.7562 |
3 |
| TaxonomyWebAPI | Automatically Getting The Ncbi Taxonomy Id From The Genbank Identifier The question is whether, given a (long) list of Genbank identifiers, is possible to get the ncbi taxonom… | SMRUCC.genomics.Core 10.5.9753.40023 |
3 |
| TaxonomyWebAPI | Automatically Getting The Ncbi Taxonomy Id From The Genbank Identifier The question is whether, given a (long) list of Genbank identifiers, is possible to get the ncbi taxonom… | SMRUCC.genomics.Core 10.5.9762.7562 |
3 |
SMRUCC.genomics.Assembly.NCBI.Entrez.ComponentModels
| Type | Summary | Package | Members |
|---|---|---|---|
| I_QueryEntry | 用于表示获取查询结果的一个入口点 | SMRUCC.genomics.Core 10.5.9753.40023 |
3 |
| I_QueryEntry | 用于表示获取查询结果的一个入口点 | SMRUCC.genomics.Core 10.5.9762.7562 |
0 |
SMRUCC.genomics.Assembly.NCBI.GenBank
| Type | Summary | Package | Members |
|---|---|---|---|
| Extensions | SMRUCC.genomics.Core 10.5.9753.40023 |
11 | |
| Extensions | SMRUCC.genomics.Core 10.5.9762.7562 |
8 | |
| gbExportService | Genbank export methods collection. | SMRUCC.genomics.Core 10.5.9753.40023 |
18 |
| gbExportService | Genbank export methods collection. | SMRUCC.genomics.Core 10.5.9762.7562 |
11 |
| GBFFFeatureDumps | SMRUCC.genomics.Core 10.5.9753.40023 |
4 | |
| GBFFFeatureDumps | SMRUCC.genomics.Core 10.5.9762.7562 |
3 |
SMRUCC.genomics.Assembly.NCBI.GenBank.CsvExports
| Type | Summary | Package | Members |
|---|---|---|---|
| gbEntryBrief | Genbank数据库的简要信息Csv表格 | SMRUCC.genomics.Core 10.5.9753.40023 |
44 |
| gbEntryBrief | Genbank数据库的简要信息Csv表格 | SMRUCC.genomics.Core 10.5.9762.7562 |
3 |
| GenbankExportInfo | SMRUCC.genomics.Core 10.5.9753.40023 |
11 | |
| GenbankExportInfo | SMRUCC.genomics.Core 10.5.9762.7562 |
2 | |
| Plasmid | tabular information about a plasmid replicate | SMRUCC.genomics.Core 10.5.9753.40023 |
7 |
| Plasmid | tabular information about a plasmid replicate | SMRUCC.genomics.Core 10.5.9762.7562 |
0 |
SMRUCC.genomics.Assembly.NCBI.GenBank.GBFF
| Type | Summary | Package | Members |
|---|---|---|---|
| AssemblyLevelClassifier | Helper module for determines that the target genbank record is a complete assembled chromosome genome data or not. | SMRUCC.genomics.Core 10.5.9753.40023 |
11 |
| AssemblyLevelClassifier | Helper module for determines that the target genbank record is a complete assembled chromosome genome data or not. | SMRUCC.genomics.Core 10.5.9762.7562 |
11 |
| AssemblyLevelEvidence | 组装水平判定结果的证据描述,用于日志输出与人工核查 | SMRUCC.genomics.Core 10.5.9753.40023 |
5 |
| AssemblyLevelEvidence | 组装水平判定结果的证据描述,用于日志输出与人工核查 | SMRUCC.genomics.Core 10.5.9762.7562 |
5 |
| File | NCBI GenBank database file. | SMRUCC.genomics.Core 10.5.9753.40023 |
26 |
| File | NCBI GenBank database file. | SMRUCC.genomics.Core 10.5.9762.7562 |
17 |
| GbkParser | SMRUCC.genomics.Core 10.5.9753.40023 |
2 | |
| GbkParser | SMRUCC.genomics.Core 10.5.9762.7562 |
2 | |
| GbkWriter | 将数据写入现有的genbank文件或者创建新的genbank文件 | SMRUCC.genomics.Core 10.5.9753.40023 |
6 |
| GbkWriter | 将数据写入现有的genbank文件或者创建新的genbank文件 | SMRUCC.genomics.Core 10.5.9762.7562 |
5 |
| GenomeAssemblyLevel | The genome assembly level of the target genbank record.(目标genbank记录所对应的基因组组装水平) | SMRUCC.genomics.Core 10.5.9753.40023 |
10 |
| GenomeAssemblyLevel | The genome assembly level of the target genbank record.(目标genbank记录所对应的基因组组装水平) | SMRUCC.genomics.Core 10.5.9762.7562 |
10 |
| GenomeMolType | The molecule type of the target genbank record.(目标genbank记录所描述的分子的类型) | SMRUCC.genomics.Core 10.5.9753.40023 |
18 |
| GenomeMolType | The molecule type of the target genbank record.(目标genbank记录所描述的分子的类型) | SMRUCC.genomics.Core 10.5.9762.7562 |
18 |
| IgbComponent | Genbank数据库文件的构件 | SMRUCC.genomics.Core 10.5.9753.40023 |
1 |
| IgbComponent | Genbank数据库文件的构件 | SMRUCC.genomics.Core 10.5.9762.7562 |
1 |
| MolTypeClassifier | A helper module for determines the molecule type of the target genbank record. | SMRUCC.genomics.Core 10.5.9753.40023 |
14 |
| MolTypeClassifier | A helper module for determines the molecule type of the target genbank record. | SMRUCC.genomics.Core 10.5.9762.7562 |
14 |
| MolTypeEvidence | 分子类型判定结果的证据描述,用于日志输出与人工核查 | SMRUCC.genomics.Core 10.5.9753.40023 |
5 |
| MolTypeEvidence | 分子类型判定结果的证据描述,用于日志输出与人工核查 | SMRUCC.genomics.Core 10.5.9762.7562 |
5 |
SMRUCC.genomics.Assembly.NCBI.GenBank.GBFF.Keywords
| Type | Summary | Package | Members |
|---|---|---|---|
| COMMENT | SMRUCC.genomics.Core 10.5.9753.40023 |
6 | |
| COMMENT | SMRUCC.genomics.Core 10.5.9762.7562 |
6 | |
| DBLINK | 数据库之间的相互链接的列表 | SMRUCC.genomics.Core 10.5.9753.40023 |
5 |
| DBLINK | 数据库之间的相互链接的列表 | SMRUCC.genomics.Core 10.5.9762.7562 |
2 |
| LOCUS | SMRUCC.genomics.Core 10.5.9753.40023 |
7 | |
| LOCUS | SMRUCC.genomics.Core 10.5.9762.7562 |
7 | |
| ORIGIN | This GenBank keyword section stores the sequence data for this database. | SMRUCC.genomics.Core 10.5.9753.40023 |
14 |
| ORIGIN | This GenBank keyword section stores the sequence data for this database. | SMRUCC.genomics.Core 10.5.9762.7562 |
9 |
| REFERENCE | 引用文献的解析模块,一个引用文献模块之中包含有若干篇引用文献RefInfo | SMRUCC.genomics.Core 10.5.9753.40023 |
2 |
| REFERENCE | 引用文献的解析模块,一个引用文献模块之中包含有若干篇引用文献RefInfo | SMRUCC.genomics.Core 10.5.9762.7562 |
2 |
| RefInfo | REFERENCE里面的一篇引用文献 | SMRUCC.genomics.Core 10.5.9753.40023 |
9 |
| RefInfo | REFERENCE里面的一篇引用文献 | SMRUCC.genomics.Core 10.5.9762.7562 |
0 |
| SOURCE | 物种信息 | SMRUCC.genomics.Core 10.5.9753.40023 |
6 |
| SOURCE | 物种信息 | SMRUCC.genomics.Core 10.5.9762.7562 |
6 |
| VERSION | SMRUCC.genomics.Core 10.5.9753.40023 |
8 | |
| VERSION | SMRUCC.genomics.Core 10.5.9762.7562 |
1 |
SMRUCC.genomics.Assembly.NCBI.GenBank.GBFF.Keywords.FEATURES
| Type | Summary | Package | Members |
|---|---|---|---|
| CDS | 为CDS字段记录所特化的对象 | SMRUCC.genomics.Core 10.5.9753.40023 |
7 |
| CDS | 为CDS字段记录所特化的对象 | SMRUCC.genomics.Core 10.5.9762.7562 |
1 |
| Feature | A sequence feature site on the genome DNA sequence. | SMRUCC.genomics.Core 10.5.9753.40023 |
28 |
| Feature | A sequence feature site on the genome DNA sequence. | SMRUCC.genomics.Core 10.5.9762.7562 |
10 |
| FeatureQualifiers | Qualifiers provide additional information about features. | SMRUCC.genomics.Core 10.5.9753.40023 |
67 |
| FeatureQualifiers | Qualifiers provide additional information about features. | SMRUCC.genomics.Core 10.5.9762.7562 |
67 |
| FEATURES | SMRUCC.genomics.Core 10.5.9753.40023 |
12 | |
| FEATURES | SMRUCC.genomics.Core 10.5.9762.7562 |
7 | |
| Location | SMRUCC.genomics.Core 10.5.9753.40023 |
11 | |
| Location | SMRUCC.genomics.Core 10.5.9762.7562 |
5 | |
| ParserHelper | SMRUCC.genomics.Core 10.5.9753.40023 |
2 | |
| ParserHelper | SMRUCC.genomics.Core 10.5.9762.7562 |
2 | |
| RegionSegment | A site region on the sequence. | SMRUCC.genomics.Core 10.5.9753.40023 |
4 |
| RegionSegment | A site region on the sequence. | SMRUCC.genomics.Core 10.5.9762.7562 |
4 |
| SearchInvoker | 可以使用本模块内的方法搜索FEATURES模块之中的内容 | SMRUCC.genomics.Core 10.5.9753.40023 |
3 |
| SearchInvoker | 可以使用本模块内的方法搜索FEATURES模块之中的内容 | SMRUCC.genomics.Core 10.5.9762.7562 |
2 |
| tRNAAnticodon | SMRUCC.genomics.Core 10.5.9753.40023 |
5 | |
| tRNAAnticodon | SMRUCC.genomics.Core 10.5.9762.7562 |
0 |
SMRUCC.genomics.Assembly.NCBI.GenBank.TabularFormat
| Type | Summary | Package | Members |
|---|---|---|---|
| DbAPI | SMRUCC.genomics.Core 10.5.9753.40023 |
4 | |
| DbAPI | SMRUCC.genomics.Core 10.5.9762.7562 |
4 | |
| ProteinDescription | tabular data model for protein data information | SMRUCC.genomics.Core 10.5.9753.40023 |
15 |
| ProteinDescription | tabular data model for protein data information | SMRUCC.genomics.Core 10.5.9762.7562 |
6 |
| PTT | The brief information of a genome.(基因组的摘要信息) | SMRUCC.genomics.Core 10.5.9753.40023 |
28 |
| PTT | The brief information of a genome.(基因组的摘要信息) | SMRUCC.genomics.Core 10.5.9762.7562 |
17 |
| PTTDbLoader | SMRUCC.genomics.Core 10.5.9753.40023 |
23 | |
| PTTDbLoader | SMRUCC.genomics.Core 10.5.9762.7562 |
11 | |
| PTTEntry | 数据库文件的列表 | SMRUCC.genomics.Core 10.5.9753.40023 |
14 |
| PTTEntry | 数据库文件的列表 | SMRUCC.genomics.Core 10.5.9762.7562 |
14 |
| PTTFileReader | SMRUCC.genomics.Core 10.5.9753.40023 |
1 | |
| PTTFileReader | SMRUCC.genomics.Core 10.5.9762.7562 |
1 | |
| Rpt | SMRUCC.genomics.Core 10.5.9753.40023 |
20 | |
| Rpt | SMRUCC.genomics.Core 10.5.9762.7562 |
2 |
SMRUCC.genomics.Assembly.NCBI.GenBank.TabularFormat.ComponentModels
SMRUCC.genomics.Assembly.NCBI.GenBank.TabularFormat.FastaObjects
| Type | Summary | Package | Members |
|---|---|---|---|
| GeneObject | .ffn 基因序列 | SMRUCC.genomics.Core 10.5.9753.40023 |
4 |
| GeneObject | .ffn 基因序列 | SMRUCC.genomics.Core 10.5.9762.7562 |
0 |
| GenomeSequence | .fna 基因组序列 | SMRUCC.genomics.Core 10.5.9753.40023 |
4 |
| GenomeSequence | .fna 基因组序列 | SMRUCC.genomics.Core 10.5.9762.7562 |
0 |
| Protein | .faa 蛋白质序列 | SMRUCC.genomics.Core 10.5.9753.40023 |
3 |
| Protein | .faa 蛋白质序列 | SMRUCC.genomics.Core 10.5.9762.7562 |
0 |
SMRUCC.genomics.Assembly.NCBI.SequenceDump
| Type | Summary | Package | Members |
|---|---|---|---|
| NTheader | The fasta header of the nt database. | SMRUCC.genomics.Core 10.5.9753.40023 |
8 |
| NTheader | The fasta header of the nt database. | SMRUCC.genomics.Core 10.5.9762.7562 |
8 |
| Nucleotide | NCBI genbank title format fasta parser | SMRUCC.genomics.Core 10.5.9753.40023 |
7 |
| Nucleotide | NCBI genbank title format fasta parser | SMRUCC.genomics.Core 10.5.9762.7562 |
1 |
| Protein | NCBI genbank title format fasta parser | SMRUCC.genomics.Core 10.5.9753.40023 |
3 |
| Protein | NCBI genbank title format fasta parser | SMRUCC.genomics.Core 10.5.9762.7562 |
0 |
SMRUCC.genomics.Assembly.NCBI.Taxonomy
| Type | Summary | Package | Members |
|---|---|---|---|
| Accession2Taxid | 将序列的AccessionID编号转换为Taxid编号 | SMRUCC.genomics.Core 10.5.9753.40023 |
11 |
| Accession2Taxid | 将序列的AccessionID编号转换为Taxid编号 | SMRUCC.genomics.Core 10.5.9762.7562 |
10 |
| AccessionTaxID | database for Accession2Taxid | SMRUCC.genomics.Core 10.5.9753.40023 |
3 |
| AccessionTaxID | database for Accession2Taxid | SMRUCC.genomics.Core 10.5.9762.7562 |
1 |
| DmpFileReader | SMRUCC.genomics.Core 10.5.9753.40023 |
1 | |
| DmpFileReader | SMRUCC.genomics.Core 10.5.9762.7562 |
1 | |
| names | Taxonomy names file (names.dmp): + tax_id -- the id of node associated with this name + name_txt -- name itself + unique name -- the unique Variant Of this name If name Not un… | SMRUCC.genomics.Core 10.5.9753.40023 |
7 |
| names | Taxonomy names file (names.dmp): + tax_id -- the id of node associated with this name + name_txt -- name itself + unique name -- the unique Variant Of this name If name Not un… | SMRUCC.genomics.Core 10.5.9762.7562 |
7 |
| NcbiTaxonomyTree | Builds the following dictionnary from NCBI taxonomy nodes.dmp and names.dmp files json { Taxid : namedtuple('Node', ['name', 'rank', 'parent', 'children'] } + https://… | SMRUCC.genomics.Core 10.5.9753.40023 |
27 |
| NcbiTaxonomyTree | Builds the following dictionnary from NCBI taxonomy nodes.dmp and names.dmp files json { Taxid : namedtuple('Node', ['name', 'rank', 'parent', 'children'] } + https://… | SMRUCC.genomics.Core 10.5.9762.7562 |
27 |
| Ranks | 将物种分类节点按照分类等级进行分组 | SMRUCC.genomics.Core 10.5.9753.40023 |
4 |
| Ranks | 将物种分类节点按照分类等级进行分组 | SMRUCC.genomics.Core 10.5.9762.7562 |
4 |
| TaxidMaps | SMRUCC.genomics.Core 10.5.9753.40023 |
5 | |
| TaxidMaps | SMRUCC.genomics.Core 10.5.9762.7562 |
5 | |
| TaxiValue | SMRUCC.genomics.Core 10.5.9753.40023 |
7 | |
| TaxiValue | SMRUCC.genomics.Core 10.5.9762.7562 |
7 | |
| Taxonomy | Build Taxonomy tree from NCBI genbank data. | SMRUCC.genomics.Core 10.5.9753.40023 |
4 |
| Taxonomy | Build Taxonomy tree from NCBI genbank data. | SMRUCC.genomics.Core 10.5.9762.7562 |
3 |
| TaxonomyExtensions | SMRUCC.genomics.Core 10.5.9753.40023 |
1 | |
| TaxonomyExtensions | SMRUCC.genomics.Core 10.5.9762.7562 |
1 | |
| TaxonomyNode | The tree node calculation model for NcbiTaxonomyTree, a labeled tree node for a specific ncbi taxid. | SMRUCC.genomics.Core 10.5.9753.40023 |
10 |
| TaxonomyNode | The tree node calculation model for NcbiTaxonomyTree, a labeled tree node for a specific ncbi taxid. | SMRUCC.genomics.Core 10.5.9762.7562 |
6 |
| TaxonomyWeb | The Taxonomy Database is a curated classification and nomenclature for all of the organisms in the public sequence databases. | SMRUCC.genomics.Core 10.5.9753.40023 |
2 |
| TaxonomyWeb | The Taxonomy Database is a curated classification and nomenclature for all of the organisms in the public sequence databases. | SMRUCC.genomics.Core 10.5.9762.7562 |
2 |
| TaxonValue | SMRUCC.genomics.Core 10.5.9753.40023 |
3 | |
| TaxonValue | SMRUCC.genomics.Core 10.5.9762.7562 |
2 |
SMRUCC.genomics.Assembly.NCBI.Taxonomy.TaxidMaps
SMRUCC.genomics.Assembly.Uniprot
| Type | Summary | Package | Members |
|---|---|---|---|
| FastaHeader | SMRUCC.genomics.Core 10.5.9753.40023 |
10 | |
| FastaHeader | SMRUCC.genomics.Core 10.5.9762.7562 |
7 | |
| IdMapping | idmapping_selected.tab We also provide this tab-delimited table which includes the following mappings delimited by tab 1. | SMRUCC.genomics.Core 10.5.9753.40023 |
25 |
| IdMapping | idmapping_selected.tab We also provide this tab-delimited table which includes the following mappings delimited by tab 1. | SMRUCC.genomics.Core 10.5.9762.7562 |
22 |
| UniprotFasta | A fasta object which is specific for the uniprot fasta title parsing.(专门用于解析Uniprot蛋白质序列记录的Fasta对象) The following is a description of FASTA headers for UniProtKB (including alte… | SMRUCC.genomics.Core 10.5.9753.40023 |
6 |
| UniprotFasta | A fasta object which is specific for the uniprot fasta title parsing.(专门用于解析Uniprot蛋白质序列记录的Fasta对象) The following is a description of FASTA headers for UniProtKB (including alte… | SMRUCC.genomics.Core 10.5.9762.7562 |
3 |
SMRUCC.genomics.Assembly.Uniprot.Web
| Type | Summary | Package | Members |
|---|---|---|---|
| Entry | tabular export of the protein list in tsv format | SMRUCC.genomics.Core 10.5.9753.40023 |
27 |
| Entry | tabular export of the protein list in tsv format | SMRUCC.genomics.Core 10.5.9762.7562 |
26 |
| Formats | SMRUCC.genomics.Core 10.5.9753.40023 |
20 | |
| Formats | SMRUCC.genomics.Core 10.5.9762.7562 |
20 | |
| ID_types | SMRUCC.genomics.Core 10.5.9753.40023 |
194 | |
| ID_types | SMRUCC.genomics.Core 10.5.9762.7562 |
194 | |
| Retrieve_IDmapping | SMRUCC.genomics.Core 10.5.9753.40023 |
7 | |
| Retrieve_IDmapping | SMRUCC.genomics.Core 10.5.9762.7562 |
7 | |
| WebServices | https://www.uniprot.org/help/api_queries https://www.uniprot.org/help/text-search https://www.uniprot.org/help/query-fields | SMRUCC.genomics.Core 10.5.9753.40023 |
3 |
| WebServices | https://www.uniprot.org/help/api_queries https://www.uniprot.org/help/text-search https://www.uniprot.org/help/query-fields | SMRUCC.genomics.Core 10.5.9762.7562 |
2 |
SMRUCC.genomics.Assembly.Uniprot.XML
| Type | Summary | Package | Members |
|---|---|---|---|
| citation | SMRUCC.genomics.Core 10.5.9753.40023 |
11 | |
| citation | SMRUCC.genomics.Core 10.5.9762.7562 |
9 | |
| comment | SMRUCC.genomics.Core 10.5.9753.40023 |
11 | |
| comment | SMRUCC.genomics.Core 10.5.9762.7562 |
3 | |
| dbReference | SMRUCC.genomics.Core 10.5.9753.40023 |
7 | |
| dbReference | SMRUCC.genomics.Core 10.5.9762.7562 |
2 | |
| entry | Describes a UniProtKB entry. | SMRUCC.genomics.Core 10.5.9753.40023 |
22 |
| entry | Describes a UniProtKB entry. | SMRUCC.genomics.Core 10.5.9762.7562 |
7 |
| Extensions | SMRUCC.genomics.Core 10.5.9753.40023 |
17 | |
| Extensions | SMRUCC.genomics.Core 10.5.9762.7562 |
8 | |
| feature | Describes different types of sequence annotations. | SMRUCC.genomics.Core 10.5.9753.40023 |
10 |
| feature | Describes different types of sequence annotations. | SMRUCC.genomics.Core 10.5.9762.7562 |
5 |
| featureTypes | Describes the type of a sequence annotation. | SMRUCC.genomics.Core 10.5.9753.40023 |
39 |
| featureTypes | Describes the type of a sequence annotation. | SMRUCC.genomics.Core 10.5.9762.7562 |
39 |
| gene | Describes a gene. Equivalent to the flat file GN-line. | SMRUCC.genomics.Core 10.5.9753.40023 |
6 |
| gene | Describes a gene. Equivalent to the flat file GN-line. | SMRUCC.genomics.Core 10.5.9762.7562 |
3 |
| GetIDs | SMRUCC.genomics.Core 10.5.9753.40023 |
5 | |
| GetIDs | SMRUCC.genomics.Core 10.5.9762.7562 |
1 | |
| location | Describes a sequence location as either a range with a begin and end or as a position. | SMRUCC.genomics.Core 10.5.9753.40023 |
6 |
| location | Describes a sequence location as either a range with a begin and end or as a position. | SMRUCC.genomics.Core 10.5.9762.7562 |
6 |
| molecule | Describes a molecule by name or unique identifier. | SMRUCC.genomics.Core 10.5.9753.40023 |
2 |
| molecule | Describes a molecule by name or unique identifier. | SMRUCC.genomics.Core 10.5.9762.7562 |
2 |
| position | 序列上面的某一个位点位置 | SMRUCC.genomics.Core 10.5.9753.40023 |
4 |
| position | 序列上面的某一个位点位置 | SMRUCC.genomics.Core 10.5.9762.7562 |
4 |
| protein | Describes the names for the protein and parts thereof. | SMRUCC.genomics.Core 10.5.9753.40023 |
5 |
| protein | Describes the names for the protein and parts thereof. | SMRUCC.genomics.Core 10.5.9762.7562 |
5 |
| reaction | SMRUCC.genomics.Core 10.5.9753.40023 |
6 | |
| reaction | SMRUCC.genomics.Core 10.5.9762.7562 |
3 | |
| recommendedName | SMRUCC.genomics.Core 10.5.9753.40023 |
3 | |
| recommendedName | SMRUCC.genomics.Core 10.5.9762.7562 |
1 | |
| sequence | the protein sequence data | SMRUCC.genomics.Core 10.5.9753.40023 |
7 |
| sequence | the protein sequence data | SMRUCC.genomics.Core 10.5.9762.7562 |
7 |
| UniProtXML | Describes a collection of UniProtKB entries, XML file can be download from the uniprot database id mappings result. | SMRUCC.genomics.Core 10.5.9753.40023 |
12 |
| UniProtXML | Describes a collection of UniProtKB entries, XML file can be download from the uniprot database id mappings result. | SMRUCC.genomics.Core 10.5.9762.7562 |
7 |
| value | 一条值数据记录 | SMRUCC.genomics.Core 10.5.9753.40023 |
7 |
| value | 一条值数据记录 | SMRUCC.genomics.Core 10.5.9762.7562 |
1 |
SMRUCC.genomics.Assembly.Uniprot.XML.GetIDs
SMRUCC.genomics.Assembly.Uniprot.XML.UniRef
SMRUCC.genomics.ComponentModel
| Type | Summary | Package | Members |
|---|---|---|---|
| IExpressionValue | interface for molecule feature expression value in one sample | SMRUCC.genomics.Core 10.5.9753.40023 |
1 |
| IExpressionValue | interface for molecule feature expression value in one sample | SMRUCC.genomics.Core 10.5.9762.7562 |
0 |
| MimeTypes | SMRUCC.genomics.Core 10.5.9753.40023 |
9 | |
| MimeTypes | SMRUCC.genomics.Core 10.5.9762.7562 |
9 | |
| TabularLazyLoader | NCBI PTT和MetaCyc数据库所公用的多文件的数据库加载器的基本类型 | SMRUCC.genomics.Core 10.5.9753.40023 |
1 |
| TabularLazyLoader | NCBI PTT和MetaCyc数据库所公用的多文件的数据库加载器的基本类型 | SMRUCC.genomics.Core 10.5.9762.7562 |
1 |
SMRUCC.genomics.ComponentModel.Annotation
| Type | Summary | Package | Members |
|---|---|---|---|
| CatalogList | a [term => id()] tuple data | SMRUCC.genomics.Core 10.5.9753.40023 |
10 |
| CatalogList | a [term => id()] tuple data | SMRUCC.genomics.Core 10.5.9762.7562 |
3 |
| CatalogProfile | a wrapper of Dictionary | SMRUCC.genomics.Core 10.5.9753.40023 |
11 |
| CatalogProfile | a wrapper of Dictionary | SMRUCC.genomics.Core 10.5.9762.7562 |
3 |
| CatalogProfiles | a numeric profile data | SMRUCC.genomics.Core 10.5.9753.40023 |
13 |
| CatalogProfiles | a numeric profile data | SMRUCC.genomics.Core 10.5.9762.7562 |
1 |
| CatalogProfiling | a level 1 class dataset | SMRUCC.genomics.Core 10.5.9753.40023 |
6 |
| CatalogProfiling | a level 1 class dataset | SMRUCC.genomics.Core 10.5.9762.7562 |
1 |
| ClassProfiles | ID class counter | SMRUCC.genomics.Core 10.5.9753.40023 |
3 |
| ClassProfiles | ID class counter | SMRUCC.genomics.Core 10.5.9762.7562 |
0 |
| ECNumber | Enzyme Commission Number | SMRUCC.genomics.Core 10.5.9753.40023 |
15 |
| ECNumber | Enzyme Commission Number | SMRUCC.genomics.Core 10.5.9762.7562 |
15 |
| EnzymeClasses | The enzyme types enumeration. | SMRUCC.genomics.Core 10.5.9753.40023 |
16 |
| EnzymeClasses | The enzyme types enumeration. | SMRUCC.genomics.Core 10.5.9762.7562 |
16 |
| EnzymeQuery | EC number query helper | SMRUCC.genomics.Core 10.5.9753.40023 |
4 |
| EnzymeQuery | EC number query helper | SMRUCC.genomics.Core 10.5.9762.7562 |
2 |
| GeneTable | The gene dump information from the NCBI genbank. | SMRUCC.genomics.Core 10.5.9753.40023 |
26 |
| GeneTable | The gene dump information from the NCBI genbank. | SMRUCC.genomics.Core 10.5.9762.7562 |
7 |
| IBlastHit | A simple alignment annotation result model | SMRUCC.genomics.Core 10.5.9753.40023 |
3 |
| IBlastHit | A simple alignment annotation result model | SMRUCC.genomics.Core 10.5.9762.7562 |
3 |
| ICOGCatalog | 这个基因的注释结果之中除了COG编号之外,还有这个编号所属的COG分类 | SMRUCC.genomics.Core 10.5.9753.40023 |
2 |
| ICOGCatalog | 这个基因的注释结果之中除了COG编号之外,还有这个编号所属的COG分类 | SMRUCC.genomics.Core 10.5.9762.7562 |
1 |
| IEnzymeObject | SMRUCC.genomics.Core 10.5.9753.40023 |
1 | |
| IEnzymeObject | SMRUCC.genomics.Core 10.5.9762.7562 |
1 | |
| IFeatureDigest | The feature annotation data of the genes. | SMRUCC.genomics.Core 10.5.9753.40023 |
1 |
| IFeatureDigest | The feature annotation data of the genes. | SMRUCC.genomics.Core 10.5.9762.7562 |
1 |
| IGeneBrief | The basically information of a gene object. | SMRUCC.genomics.Core 10.5.9753.40023 |
2 |
| IGeneBrief | The basically information of a gene object. | SMRUCC.genomics.Core 10.5.9762.7562 |
2 |
| IQueryHits | the annotation alignment result model with score value | SMRUCC.genomics.Core 10.5.9753.40023 |
1 |
| IQueryHits | the annotation alignment result model with score value | SMRUCC.genomics.Core 10.5.9762.7562 |
1 |
| PathwayBrief | An abstract biological pathway model | SMRUCC.genomics.Core 10.5.9753.40023 |
7 |
| PathwayBrief | An abstract biological pathway model | SMRUCC.genomics.Core 10.5.9762.7562 |
6 |
SMRUCC.genomics.ComponentModel.Chemical
| Type | Summary | Package | Members |
|---|---|---|---|
| FormulaData | The formula composition data model | SMRUCC.genomics.Core 10.5.9753.40023 |
9 |
| FormulaData | The formula composition data model | SMRUCC.genomics.Core 10.5.9762.7562 |
9 |
| PeriodicTable | 元素周期表 | SMRUCC.genomics.Core 10.5.9753.40023 |
4 |
| PeriodicTable | 元素周期表 | SMRUCC.genomics.Core 10.5.9762.7562 |
4 |
SMRUCC.genomics.ComponentModel.DBLinkBuilder
| Type | Summary | Package | Members |
|---|---|---|---|
| DBLink | Database xref data | SMRUCC.genomics.Core 10.5.9753.40023 |
10 |
| DBLink | Database xref data | SMRUCC.genomics.Core 10.5.9762.7562 |
4 |
| DBLinksManager | SMRUCC.genomics.Core 10.5.9753.40023 |
11 | |
| DBLinksManager | SMRUCC.genomics.Core 10.5.9762.7562 |
1 | |
| IDBLink | SMRUCC.genomics.Core 10.5.9753.40023 |
3 | |
| IDBLink | SMRUCC.genomics.Core 10.5.9762.7562 |
3 | |
| SecondaryIDSolver | This module ensure that all of the id is main id, not secondary id. | SMRUCC.genomics.Core 10.5.9753.40023 |
13 |
| SecondaryIDSolver | This module ensure that all of the id is main id, not secondary id. | SMRUCC.genomics.Core 10.5.9762.7562 |
8 |
| Synonym | data alias model, a mapping of the main accession id to a collection of the secondary accession id. | SMRUCC.genomics.Core 10.5.9753.40023 |
4 |
| Synonym | data alias model, a mapping of the main accession id to a collection of the secondary accession id. | SMRUCC.genomics.Core 10.5.9762.7562 |
3 |
SMRUCC.genomics.ComponentModel.EquaionModel
| Type | Summary | Package | Members |
|---|---|---|---|
| Equation | SMRUCC.genomics.Core 10.5.9753.40023 |
12 | |
| Equation | SMRUCC.genomics.Core 10.5.9762.7562 |
10 | |
| EquationBuilder | SMRUCC.genomics.Core 10.5.9753.40023 |
11 | |
| EquationBuilder | SMRUCC.genomics.Core 10.5.9762.7562 |
3 | |
| Equivalence | SMRUCC.genomics.Core 10.5.9753.40023 |
3 | |
| Equivalence | SMRUCC.genomics.Core 10.5.9762.7562 |
1 | |
| ICompoundSpecies | A metabolite compound abstract model which contains the unique reference id of the metabolite and the chemical factor to current equation | SMRUCC.genomics.Core 10.5.9753.40023 |
1 |
| ICompoundSpecies | A metabolite compound abstract model which contains the unique reference id of the metabolite and the chemical factor to current equation | SMRUCC.genomics.Core 10.5.9762.7562 |
1 |
| IEquation | SMRUCC.genomics.Core 10.5.9753.40023 |
3 | |
| IEquation | SMRUCC.genomics.Core 10.5.9762.7562 |
2 | |
| Reaction | A general reaction model | SMRUCC.genomics.Core 10.5.9753.40023 |
11 |
| Reaction | A general reaction model | SMRUCC.genomics.Core 10.5.9762.7562 |
3 |
| ReactionDirection | Represents the direction of a reaction | SMRUCC.genomics.Core 10.5.9753.40023 |
6 |
| ReactionDirection | Represents the direction of a reaction | SMRUCC.genomics.Core 10.5.9762.7562 |
6 |
SMRUCC.genomics.ComponentModel.EquaionModel.DefaultTypes
| Type | Summary | Package | Members |
|---|---|---|---|
| CompoundSpecieReference | the compound model reference. | SMRUCC.genomics.Core 10.5.9753.40023 |
6 |
| CompoundSpecieReference | the compound model reference. | SMRUCC.genomics.Core 10.5.9762.7562 |
1 |
| Equation | 默认类型的反应表达式的数据结构,可以使用EquationBuilder.CreateObject())来进行构建 | SMRUCC.genomics.Core 10.5.9753.40023 |
5 |
| Equation | 默认类型的反应表达式的数据结构,可以使用EquationBuilder.CreateObject())来进行构建 | SMRUCC.genomics.Core 10.5.9762.7562 |
1 |
SMRUCC.genomics.ComponentModel.Loci
| Type | Summary | Package | Members |
|---|---|---|---|
| Extensions | SMRUCC.genomics.Core 10.5.9753.40023 |
1 | |
| Extensions | SMRUCC.genomics.Core 10.5.9762.7562 |
1 | |
| IMotifScoredSite | This motif site have the scoring calculation value | SMRUCC.genomics.Core 10.5.9753.40023 |
1 |
| IMotifScoredSite | This motif site have the scoring calculation value | SMRUCC.genomics.Core 10.5.9762.7562 |
1 |
| IMotifSite | Motif site model on both DNA/RNA and protein sequence. | SMRUCC.genomics.Core 10.5.9753.40023 |
3 |
| IMotifSite | Motif site model on both DNA/RNA and protein sequence. | SMRUCC.genomics.Core 10.5.9762.7562 |
2 |
| Location | A location property on a sequence data. | SMRUCC.genomics.Core 10.5.9753.40023 |
19 |
| Location | A location property on a sequence data. | SMRUCC.genomics.Core 10.5.9762.7562 |
14 |
| Loci | 带标签的位置信息,只不过这个位点的位置信息是展开的 | SMRUCC.genomics.Core 10.5.9753.40023 |
4 |
| Loci | 带标签的位置信息,只不过这个位点的位置信息是展开的 | SMRUCC.genomics.Core 10.5.9762.7562 |
4 |
| LociAPI | The extension method for the location object operations. | SMRUCC.genomics.Core 10.5.9753.40023 |
7 |
| LociAPI | The extension method for the location object operations. | SMRUCC.genomics.Core 10.5.9762.7562 |
3 |
| LocusExtensions | Methods for some nucleotide utility. | SMRUCC.genomics.Core 10.5.9753.40023 |
10 |
| LocusExtensions | Methods for some nucleotide utility. | SMRUCC.genomics.Core 10.5.9762.7562 |
8 |
| MotifSite | 带标签的位点信息,只不过这个位点的位置信息是构建好的 | SMRUCC.genomics.Core 10.5.9753.40023 |
3 |
| MotifSite | 带标签的位点信息,只不过这个位点的位置信息是构建好的 | SMRUCC.genomics.Core 10.5.9762.7562 |
1 |
| NucleotideLocation | Loci segment location information on an nucleotide sequence, this object added an NucleotideLocation.Strand information on Location data. | SMRUCC.genomics.Core 10.5.9753.40023 |
27 |
| NucleotideLocation | Loci segment location information on an nucleotide sequence, this object added an NucleotideLocation.Strand information on Location data. | SMRUCC.genomics.Core 10.5.9762.7562 |
22 |
| NucleotideLocationParser | Custom parser for csv field | SMRUCC.genomics.Core 10.5.9753.40023 |
2 |
| NucleotideLocationParser | Custom parser for csv field | SMRUCC.genomics.Core 10.5.9762.7562 |
0 |
| Position | 百分比相对位置 | SMRUCC.genomics.Core 10.5.9753.40023 |
3 |
| Position | 百分比相对位置 | SMRUCC.genomics.Core 10.5.9762.7562 |
3 |
| SegmentRelationships | The location relationship description enumeration for the two loci sites on the nucleotide sequence. | SMRUCC.genomics.Core 10.5.9753.40023 |
14 |
| SegmentRelationships | The location relationship description enumeration for the two loci sites on the nucleotide sequence. | SMRUCC.genomics.Core 10.5.9762.7562 |
14 |
| Strands | The direction of this segment on the nucleotide sequence. | SMRUCC.genomics.Core 10.5.9753.40023 |
6 |
| Strands | The direction of this segment on the nucleotide sequence. | SMRUCC.genomics.Core 10.5.9762.7562 |
6 |
SMRUCC.genomics.ComponentModel.Loci.Abstract
| Type | Summary | Package | Members |
|---|---|---|---|
| IContig | Abstract model with location data. | SMRUCC.genomics.Core 10.5.9753.40023 |
1 |
| IContig | Abstract model with location data. | SMRUCC.genomics.Core 10.5.9762.7562 |
0 |
| ILocationComponent | This type of the object has the loci location value attribute. | SMRUCC.genomics.Core 10.5.9753.40023 |
1 |
| ILocationComponent | This type of the object has the loci location value attribute. | SMRUCC.genomics.Core 10.5.9762.7562 |
1 |
| ILocationSegment | SMRUCC.genomics.Core 10.5.9753.40023 |
2 | |
| ILocationSegment | SMRUCC.genomics.Core 10.5.9762.7562 |
2 | |
| ILoci | 只有左端起始位点的模型对象 | SMRUCC.genomics.Core 10.5.9753.40023 |
1 |
| ILoci | 只有左端起始位点的模型对象 | SMRUCC.genomics.Core 10.5.9762.7562 |
1 |
| ITagSite | This loci site have a tag | SMRUCC.genomics.Core 10.5.9753.40023 |
2 |
| ITagSite | This loci site have a tag | SMRUCC.genomics.Core 10.5.9762.7562 |
2 |
| TagSiteExtensions | SMRUCC.genomics.Core 10.5.9753.40023 |
2 | |
| TagSiteExtensions | SMRUCC.genomics.Core 10.5.9762.7562 |
1 |
SMRUCC.genomics.ContextModel
| Type | Summary | Package | Members |
|---|---|---|---|
| Context | Context model of a specific genomics feature site. | SMRUCC.genomics.Core 10.5.9753.40023 |
15 |
| Context | Context model of a specific genomics feature site. | SMRUCC.genomics.Core 10.5.9762.7562 |
14 |
| Density | Genomics context relative abundance | SMRUCC.genomics.Core 10.5.9753.40023 |
7 |
| Density | Genomics context relative abundance | SMRUCC.genomics.Core 10.5.9762.7562 |
3 |
| Extensions | SMRUCC.genomics.Core 10.5.9753.40023 |
2 | |
| Extensions | SMRUCC.genomics.Core 10.5.9762.7562 |
1 | |
| GenomeContext | 表示一个基因组上下文模型,用于在内存中高效地存储、索引和查询基因组特征(如基因)。 | SMRUCC.genomics.Core 10.5.9753.40023 |
32 |
| GenomeContext | 表示一个基因组上下文模型,用于在内存中高效地存储、索引和查询基因组特征(如基因)。 | SMRUCC.genomics.Core 10.5.9762.7562 |
31 |
| GenomeContextProvider | 基因组上下文计算工具,一般使用PTT或者GFF文件作为数据源. | SMRUCC.genomics.Core 10.5.9753.40023 |
7 |
| GenomeContextProvider | 基因组上下文计算工具,一般使用PTT或者GFF文件作为数据源. | SMRUCC.genomics.Core 10.5.9762.7562 |
7 |
| IGenomicsContextProvider | SMRUCC.genomics.Core 10.5.9753.40023 |
5 | |
| IGenomicsContextProvider | SMRUCC.genomics.Core 10.5.9762.7562 |
3 | |
| LocationDescriptions | SMRUCC.genomics.Core 10.5.9753.40023 |
10 | |
| LocationDescriptions | SMRUCC.genomics.Core 10.5.9762.7562 |
6 | |
| RelationDelegate | The working core of the genomics context provider. | SMRUCC.genomics.Core 10.5.9753.40023 |
5 |
| RelationDelegate | The working core of the genomics context provider. | SMRUCC.genomics.Core 10.5.9762.7562 |
2 |
| Relationship | 描述位点在基因组上面的位置,可以使用Relationship.ToString()函数获取得到位置描述 | SMRUCC.genomics.Core 10.5.9753.40023 |
5 |
| Relationship | 描述位点在基因组上面的位置,可以使用Relationship.ToString()函数获取得到位置描述 | SMRUCC.genomics.Core 10.5.9762.7562 |
3 |
| TFDensity | Calculates the relative density of the TF on each gene on the genome. | SMRUCC.genomics.Core 10.5.9753.40023 |
5 |
| TFDensity | Calculates the relative density of the TF on each gene on the genome. | SMRUCC.genomics.Core 10.5.9762.7562 |
3 |
SMRUCC.genomics.ContextModel.Promoter
| Type | Summary | Package | Members |
|---|---|---|---|
| Extensions | SMRUCC.genomics.Core 10.5.9753.40023 |
4 | |
| Extensions | SMRUCC.genomics.Core 10.5.9762.7562 |
3 | |
| PromoterRegionParser | 直接从基因的启动子区选取序列数据以及外加操纵子的第一个基因的启动子序列 | SMRUCC.genomics.Core 10.5.9753.40023 |
7 |
| PromoterRegionParser | 直接从基因的启动子区选取序列数据以及外加操纵子的第一个基因的启动子序列 | SMRUCC.genomics.Core 10.5.9762.7562 |
3 |
SMRUCC.genomics.Data
| Type | Summary | Package | Members |
|---|---|---|---|
| AnnotationCache | SMRUCC.genomics.Data.Repository 1.0.9753.40023 |
1 | |
| AnnotationCache | SMRUCC.genomics.Data.Repository 1.0.9762.7562 |
1 | |
| AssemblySummaryGenbank | in-memory database of the ncbi genbank assembly index data | SMRUCC.genomics.Data.Repository 1.0.9753.40023 |
0 |
| AssemblySummaryGenbank | in-memory database of the ncbi genbank assembly index data | SMRUCC.genomics.Data.Repository 1.0.9762.7562 |
0 |
| CompoundRepository | SMRUCC.genomics.Data.Repository 1.0.9753.40023 |
2 | |
| CompoundRepository | SMRUCC.genomics.Data.Repository 1.0.9762.7562 |
2 | |
| DownloaderWebAPI | SMRUCC.genomics.Data.Repository 1.0.9753.40023 |
1 | |
| DownloaderWebAPI | SMRUCC.genomics.Data.Repository 1.0.9762.7562 |
1 | |
| Extensions | SMRUCC.genomics.Data.Repository 1.0.9753.40023 |
2 | |
| Extensions | SMRUCC.genomics.Data.Repository 1.0.9762.7562 |
2 | |
| Genbank | NCBI genbank repository system.(请注意,这个对象里面的所有的Repository实体都是使用genbank编号来作为Key的) | SMRUCC.genomics.Data.Repository 1.0.9753.40023 |
5 |
| Genbank | NCBI genbank repository system.(请注意,这个对象里面的所有的Repository实体都是使用genbank编号来作为Key的) | SMRUCC.genomics.Data.Repository 1.0.9762.7562 |
4 |
| GenBankAssemblyIndex | assembly_summary_genbank.txt > See ftp://ftp.ncbi.nlm.nih.gov/genomes/README_assembly_summary.txt for a description of the columns in this file. | SMRUCC.genomics.Data.Repository 1.0.9753.40023 |
38 |
| GenBankAssemblyIndex | assembly_summary_genbank.txt > See ftp://ftp.ncbi.nlm.nih.gov/genomes/README_assembly_summary.txt for a description of the columns in this file. | SMRUCC.genomics.Data.Repository 1.0.9762.7562 |
38 |
| GenbankIndex | SMRUCC.genomics.Data.Repository 1.0.9753.40023 |
4 | |
| GenbankIndex | SMRUCC.genomics.Data.Repository 1.0.9762.7562 |
2 | |
| GeneInfo | SMRUCC.genomics.Data.Repository 1.0.9753.40023 |
6 | |
| GeneInfo | SMRUCC.genomics.Data.Repository 1.0.9762.7562 |
3 | |
| GEODataSet | helper module for download geo dataset | SMRUCC.genomics.Data.Repository 1.0.9753.40023 |
1 |
| GEODataSet | helper module for download geo dataset | SMRUCC.genomics.Data.Repository 1.0.9762.7562 |
1 |
| Installer | SMRUCC.genomics.Data.Repository 1.0.9753.40023 |
4 | |
| Installer | SMRUCC.genomics.Data.Repository 1.0.9762.7562 |
4 | |
| KEGGApi | SMRUCC.genomics.Data.Repository 1.0.9753.40023 |
5 | |
| KEGGApi | SMRUCC.genomics.Data.Repository 1.0.9762.7562 |
5 | |
| KEGGOrthology | SMRUCC.genomics.Data.Repository 1.0.9753.40023 |
4 | |
| KEGGOrthology | SMRUCC.genomics.Data.Repository 1.0.9762.7562 |
4 | |
| KO_gene | DROP TABLE IF EXISTS orthology_genes; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE orthology_genes (… | SMRUCC.genomics.Data.Repository 1.0.9753.40023 |
7 |
| KO_gene | DROP TABLE IF EXISTS orthology_genes; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE orthology_genes (… | SMRUCC.genomics.Data.Repository 1.0.9762.7562 |
7 |
| NamesFactory | SMRUCC.genomics.Data.Repository 1.0.9753.40023 |
2 | |
| NamesFactory | SMRUCC.genomics.Data.Repository 1.0.9762.7562 |
2 | |
| NamesIndex | 对对象名称建立索引 | SMRUCC.genomics.Data.Repository 1.0.9753.40023 |
1 |
| NamesIndex | 对对象名称建立索引 | SMRUCC.genomics.Data.Repository 1.0.9762.7562 |
1 |
| operation | SMRUCC.genomics.Data.Repository 1.0.9753.40023 |
8 | |
| operation | SMRUCC.genomics.Data.Repository 1.0.9762.7562 |
8 | |
| OrganismModel | The Pathway repository | SMRUCC.genomics.Data.Repository 1.0.9753.40023 |
6 |
| OrganismModel | The Pathway repository | SMRUCC.genomics.Data.Repository 1.0.9762.7562 |
5 |
| PtfReader | SMRUCC.genomics.Data.Repository 1.0.9753.40023 |
1 | |
| PtfReader | SMRUCC.genomics.Data.Repository 1.0.9762.7562 |
1 | |
| PtfWriter | SMRUCC.genomics.Data.Repository 1.0.9753.40023 |
1 | |
| PtfWriter | SMRUCC.genomics.Data.Repository 1.0.9762.7562 |
1 | |
| SabiorkRepository | SMRUCC.genomics.Data.Repository 1.0.9753.40023 |
1 | |
| SabiorkRepository | SMRUCC.genomics.Data.Repository 1.0.9762.7562 |
1 | |
| SSDB | SMRUCC.genomics.Data.Repository 1.0.9753.40023 |
1 | |
| SSDB | SMRUCC.genomics.Data.Repository 1.0.9762.7562 |
1 |
SMRUCC.genomics.Data.GeneOntology
| Type | Summary | Package | Members |
|---|---|---|---|
| Axioms | 任意距离的term之间的关系推断规则 | SMRUCC.genomics.Data.GO_OWL 1.0.9753.40023 |
3 |
| Axioms | 任意距离的term之间的关系推断规则 | SMRUCC.genomics.Data.GO_OWL 1.0.9762.7562 |
3 |
| Enrichment | Gene Ontology可分为分子功能(Molecular Function),生物过程(biological process)和细胞组成(cellular component)三个部分. | SMRUCC.genomics.Data.GO_OWL 1.0.9753.40023 |
0 |
| Enrichment | Gene Ontology可分为分子功能(Molecular Function),生物过程(biological process)和细胞组成(cellular component)三个部分. | SMRUCC.genomics.Data.GO_OWL 1.0.9762.7562 |
0 |
| GAF | GO Annotation File (GAF) Format 2.0 | SMRUCC.genomics.Data.GO_OWL 1.0.9753.40023 |
21 |
| GAF | GO Annotation File (GAF) Format 2.0 | SMRUCC.genomics.Data.GO_OWL 1.0.9762.7562 |
21 |
| GoStat | Statics of the GO function catalog | SMRUCC.genomics.Data.GO_OWL 1.0.9753.40023 |
6 |
| GoStat | Statics of the GO function catalog | SMRUCC.genomics.Data.GO_OWL 1.0.9762.7562 |
6 |
| Ontologies | The Gene Ontology project provides controlled vocabularies of defined terms representing gene product properties. | SMRUCC.genomics.Data.GO_OWL 1.0.9753.40023 |
6 |
| Ontologies | The Gene Ontology project provides controlled vocabularies of defined terms representing gene product properties. | SMRUCC.genomics.Data.GO_OWL 1.0.9762.7562 |
6 |
| OntologyRelations | The ontologies of GO are structured as a graph, with terms as nodes in the graph and the relations (also know as properties) between the terms as edges. | SMRUCC.genomics.Data.GO_OWL 1.0.9753.40023 |
16 |
| OntologyRelations | The ontologies of GO are structured as a graph, with terms as nodes in the graph and the relations (also know as properties) between the terms as edges. | SMRUCC.genomics.Data.GO_OWL 1.0.9762.7562 |
16 |
| PseAA | SMRUCC.genomics.Data.GO_OWL 1.0.9753.40023 |
1 | |
| PseAA | SMRUCC.genomics.Data.GO_OWL 1.0.9762.7562 |
1 |
SMRUCC.genomics.Data.GeneOntology.Annotation.NCBI
| Type | Summary | Package | Members |
|---|---|---|---|
| gene2go | Format: tax_id GeneID GO_ID Evidence Qualifier GO_term PubMed Category (tab is used as a separator, pound sign - start of a comment) | SMRUCC.genomics.Data.GeneOntology.Annotation 1.0.9753.40023 |
10 |
| gene2go | Format: tax_id GeneID GO_ID Evidence Qualifier GO_term PubMed Category (tab is used as a separator, pound sign - start of a comment) | SMRUCC.genomics.Data.GeneOntology.Annotation 1.0.9762.7562 |
10 |
SMRUCC.genomics.Data.GeneOntology.Annotation.xref2go
| Type | Summary | Package | Members |
|---|---|---|---|
| toGO | External annotation map to go term. | SMRUCC.genomics.Data.GeneOntology.Annotation 1.0.9753.40023 |
8 |
| toGO | External annotation map to go term. | SMRUCC.genomics.Data.GeneOntology.Annotation 1.0.9762.7562 |
8 |
| XrefId | SMRUCC.genomics.Data.GeneOntology.Annotation 1.0.9753.40023 |
1 | |
| XrefId | SMRUCC.genomics.Data.GeneOntology.Annotation 1.0.9762.7562 |
1 |
SMRUCC.genomics.Data.GeneOntology.DAG
| Type | Summary | Package | Members |
|---|---|---|---|
| Builder | SMRUCC.genomics.Data.GO_OWL 1.0.9753.40023 |
12 | |
| Builder | SMRUCC.genomics.Data.GO_OWL 1.0.9762.7562 |
10 | |
| Graph | GO DAG graph | SMRUCC.genomics.Data.GO_OWL 1.0.9753.40023 |
29 |
| Graph | GO DAG graph | SMRUCC.genomics.Data.GO_OWL 1.0.9762.7562 |
29 |
| is_a | The is a relation forms the basic structure of GO. | SMRUCC.genomics.Data.GO_OWL 1.0.9753.40023 |
6 |
| is_a | The is a relation forms the basic structure of GO. | SMRUCC.genomics.Data.GO_OWL 1.0.9762.7562 |
6 |
| Relationship | SMRUCC.genomics.Data.GO_OWL 1.0.9753.40023 |
8 | |
| Relationship | SMRUCC.genomics.Data.GO_OWL 1.0.9762.7562 |
2 | |
| TermNode | The DAG node of a specific GO Term | SMRUCC.genomics.Data.GO_OWL 1.0.9753.40023 |
9 |
| TermNode | The DAG node of a specific GO Term | SMRUCC.genomics.Data.GO_OWL 1.0.9762.7562 |
3 |
SMRUCC.genomics.Data.GeneOntology.DAG.Graph
| Type | Summary | Package | Members |
|---|---|---|---|
| InheritsChain | the lineage | SMRUCC.genomics.Data.GO_OWL 1.0.9753.40023 |
8 |
| InheritsChain | the lineage | SMRUCC.genomics.Data.GO_OWL 1.0.9762.7562 |
5 |
SMRUCC.genomics.Data.GeneOntology.OBO
| Type | Summary | Package | Members |
|---|---|---|---|
| base | SMRUCC.genomics.Data.GO_OWL 1.0.9753.40023 |
4 | |
| base | SMRUCC.genomics.Data.GO_OWL 1.0.9762.7562 |
2 | |
| Definition | text parser of Term.def | SMRUCC.genomics.Data.GO_OWL 1.0.9753.40023 |
5 |
| Definition | text parser of Term.def | SMRUCC.genomics.Data.GO_OWL 1.0.9762.7562 |
4 |
| Extensions | SMRUCC.genomics.Data.GO_OWL 1.0.9753.40023 |
1 | |
| Extensions | SMRUCC.genomics.Data.GO_OWL 1.0.9762.7562 |
1 | |
| GO_OBO | The file reader/writer for go.obo/go-basic.obo(Go注释功能定义文件) | SMRUCC.genomics.Data.GO_OWL 1.0.9753.40023 |
4 |
| GO_OBO | The file reader/writer for go.obo/go-basic.obo(Go注释功能定义文件) | SMRUCC.genomics.Data.GO_OWL 1.0.9762.7562 |
4 |
| OntologyRelations | A Ontology relationship collection. | SMRUCC.genomics.Data.GO_OWL 1.0.9753.40023 |
4 |
| OntologyRelations | A Ontology relationship collection. | SMRUCC.genomics.Data.GO_OWL 1.0.9762.7562 |
2 |
| Term | GO as a Graph The Structure of GO can be described In terms Of a graph, where Each GO term Is a node, And the relationships between the terms are edges between the nodes. | SMRUCC.genomics.Data.GO_OWL 1.0.9753.40023 |
21 |
| Term | GO as a Graph The Structure of GO can be described In terms Of a graph, where Each GO term Is a node, And the relationships between the terms are edges between the nodes. | SMRUCC.genomics.Data.GO_OWL 1.0.9762.7562 |
5 |
| Typedef | SMRUCC.genomics.Data.GO_OWL 1.0.9753.40023 |
25 | |
| Typedef | SMRUCC.genomics.Data.GO_OWL 1.0.9762.7562 |
9 |
SMRUCC.genomics.Data.KEGG.Metabolism
| Type | Summary | Package | Members |
|---|---|---|---|
| KEGGCompoundPack | the schema of Compound | SMRUCC.genomics.Data.Repository 1.0.9753.40023 |
4 |
| KEGGCompoundPack | the schema of Compound | SMRUCC.genomics.Data.Repository 1.0.9762.7562 |
4 |
| KEGGMapPack | SMRUCC.genomics.Data.Repository 1.0.9753.40023 |
2 | |
| KEGGMapPack | SMRUCC.genomics.Data.Repository 1.0.9762.7562 |
2 | |
| KEGGPathwayPack | SMRUCC.genomics.Data.Repository 1.0.9753.40023 |
1 | |
| KEGGPathwayPack | SMRUCC.genomics.Data.Repository 1.0.9762.7562 |
1 | |
| KEGGReactionPack | SMRUCC.genomics.Data.Repository 1.0.9753.40023 |
1 | |
| KEGGReactionPack | SMRUCC.genomics.Data.Repository 1.0.9762.7562 |
1 | |
| ReactionLink | SMRUCC.genomics.Data.Repository 1.0.9753.40023 |
3 | |
| ReactionLink | SMRUCC.genomics.Data.Repository 1.0.9762.7562 |
3 |
SMRUCC.genomics.Data.NCBI
| Type | Summary | Package | Members |
|---|---|---|---|
| RepositoryExtensions | SMRUCC.genomics.Data.Repository 1.0.9753.40023 |
1 | |
| RepositoryExtensions | SMRUCC.genomics.Data.Repository 1.0.9762.7562 |
1 |
SMRUCC.genomics.Data.RCSB.PDB
| Type | Summary | Package | Members |
|---|---|---|---|
| AminoAcid | 氨基酸残基 | SMRUCC.genomics.Data.RCSB.PDB 1.0.9753.40023 |
5 |
| AminoAcid | 氨基酸残基 | SMRUCC.genomics.Data.RCSB.PDB 1.0.9762.7562 |
5 |
| ComplexGenerator | Helper module for generate protein complex from the autodock vina docking result | SMRUCC.genomics.Data.RCSB.PDB 1.0.9753.40023 |
2 |
| ComplexGenerator | Helper module for generate protein complex from the autodock vina docking result | SMRUCC.genomics.Data.RCSB.PDB 1.0.9762.7562 |
2 |
| CovalentRadii | SMRUCC.genomics.Data.RCSB.PDB 1.0.9753.40023 |
13 | |
| CovalentRadii | SMRUCC.genomics.Data.RCSB.PDB 1.0.9762.7562 |
13 | |
| Parser | SMRUCC.genomics.Data.RCSB.PDB 1.0.9753.40023 |
1 | |
| Parser | SMRUCC.genomics.Data.RCSB.PDB 1.0.9762.7562 |
1 | |
| PDB | The RCSB PDB file format is a standardized text-based format used to represent 3D structural data of biological macromolecules, such as proteins, nucleic acids, and viruses. | SMRUCC.genomics.Data.RCSB.PDB 1.0.9753.40023 |
58 |
| PDB | The RCSB PDB file format is a standardized text-based format used to represent 3D structural data of biological macromolecules, such as proteins, nucleic acids, and viruses. | SMRUCC.genomics.Data.RCSB.PDB 1.0.9762.7562 |
7 |
| PdbExport | PDB File Format The Protein Data Bank (PDB) format provides a standard representation for macromolecular structure data derived from X-ray diffraction and NMR studies. | SMRUCC.genomics.Data.RCSB.PDB 1.0.9753.40023 |
1 |
| PdbExport | PDB File Format The Protein Data Bank (PDB) format provides a standard representation for macromolecular structure data derived from X-ray diffraction and NMR studies. | SMRUCC.genomics.Data.RCSB.PDB 1.0.9762.7562 |
1 |
| ProteinChain | SMRUCC.genomics.Data.RCSB.PDB 1.0.9753.40023 |
1 | |
| ProteinChain | SMRUCC.genomics.Data.RCSB.PDB 1.0.9762.7562 |
1 |
SMRUCC.genomics.Data.RCSB.PDB.Keywords
| Type | Summary | Package | Members |
|---|---|---|---|
| Atom | structure data model | SMRUCC.genomics.Data.RCSB.PDB 1.0.9753.40023 |
8 |
| Atom | structure data model | SMRUCC.genomics.Data.RCSB.PDB 1.0.9762.7562 |
3 |
| AtomUnit | the amino acid residue/atom model | SMRUCC.genomics.Data.RCSB.PDB 1.0.9753.40023 |
6 |
| AtomUnit | the amino acid residue/atom model | SMRUCC.genomics.Data.RCSB.PDB 1.0.9762.7562 |
6 |
| Author | the author list of the pdb file | SMRUCC.genomics.Data.RCSB.PDB 1.0.9753.40023 |
4 |
| Author | the author list of the pdb file | SMRUCC.genomics.Data.RCSB.PDB 1.0.9762.7562 |
4 |
| CONECT | PDB文件中的CONECT字段用于明确指定原子间的特殊连接关系 CONECT记录提供了原子之间除标准共价键以外的特定连接信息,例如二硫键、配位键、氢键(在某些情况下)、盐桥, 以及非标准残基(如辅因子、抑制剂)内部的键合关系或它们与蛋白质/核酸之间的连接。 | SMRUCC.genomics.Data.RCSB.PDB 1.0.9753.40023 |
3 |
| CONECT | PDB文件中的CONECT字段用于明确指定原子间的特殊连接关系 CONECT记录提供了原子之间除标准共价键以外的特定连接信息,例如二硫键、配位键、氢键(在某些情况下)、盐桥, 以及非标准残基(如辅因子、抑制剂)内部的键合关系或它们与蛋白质/核酸之间的连接。 | SMRUCC.genomics.Data.RCSB.PDB 1.0.9762.7562 |
0 |
| Header | the pdb file header description information | SMRUCC.genomics.Data.RCSB.PDB 1.0.9753.40023 |
7 |
| Header | the pdb file header description information | SMRUCC.genomics.Data.RCSB.PDB 1.0.9762.7562 |
7 |
| Het | 非标准残基注释 | SMRUCC.genomics.Data.RCSB.PDB 1.0.9753.40023 |
2 |
| Het | 非标准残基注释 | SMRUCC.genomics.Data.RCSB.PDB 1.0.9762.7562 |
1 |
| HetName | SMRUCC.genomics.Data.RCSB.PDB 1.0.9753.40023 |
4 | |
| HetName | SMRUCC.genomics.Data.RCSB.PDB 1.0.9762.7562 |
2 | |
| Keyword | A general base class of the keyword section inside the pdb file. | SMRUCC.genomics.Data.RCSB.PDB 1.0.9753.40023 |
25 |
| Keyword | A general base class of the keyword section inside the pdb file. | SMRUCC.genomics.Data.RCSB.PDB 1.0.9762.7562 |
25 |
| Remark | the pdb remark keyword data | SMRUCC.genomics.Data.RCSB.PDB 1.0.9753.40023 |
5 |
| Remark | the pdb remark keyword data | SMRUCC.genomics.Data.RCSB.PDB 1.0.9762.7562 |
5 |
| SEQADV | Sequence Advisory | SMRUCC.genomics.Data.RCSB.PDB 1.0.9753.40023 |
2 |
| SEQADV | Sequence Advisory | SMRUCC.genomics.Data.RCSB.PDB 1.0.9762.7562 |
2 |
| Source | SMRUCC.genomics.Data.RCSB.PDB 1.0.9753.40023 |
4 | |
| Source | SMRUCC.genomics.Data.RCSB.PDB 1.0.9762.7562 |
4 | |
| Spatial3D | Axis information | SMRUCC.genomics.Data.RCSB.PDB 1.0.9753.40023 |
4 |
| Spatial3D | Axis information | SMRUCC.genomics.Data.RCSB.PDB 1.0.9762.7562 |
4 |
| Terminator | The chain model terminator flag | SMRUCC.genomics.Data.RCSB.PDB 1.0.9753.40023 |
7 |
| Terminator | The chain model terminator flag | SMRUCC.genomics.Data.RCSB.PDB 1.0.9762.7562 |
7 |
| Title | pdb file title description information | SMRUCC.genomics.Data.RCSB.PDB 1.0.9753.40023 |
4 |
| Title | pdb file title description information | SMRUCC.genomics.Data.RCSB.PDB 1.0.9762.7562 |
4 |
SMRUCC.genomics.Data.RCSB.PDB.Keywords.Het
SMRUCC.genomics.Data.RCSB.PDB.Keywords.HETATM
| Type | Summary | Package | Members |
|---|---|---|---|
| HETATMRecord | 表示解析后的HETATM记录信息 | SMRUCC.genomics.Data.RCSB.PDB 1.0.9753.40023 |
12 |
| HETATMRecord | 表示解析后的HETATM记录信息 | SMRUCC.genomics.Data.RCSB.PDB 1.0.9762.7562 |
10 |
SMRUCC.genomics.Data.RCSB.PDB.PDBML
| Type | Summary | Package | Members |
|---|---|---|---|
| PdbML | PDBML/XML File Format The Protein Data Bank Markup Language (PDBML) provides a representation of PDB data in XML format. | SMRUCC.genomics.Data.RCSB.PDB 1.0.9753.40023 |
3 |
| PdbML | PDBML/XML File Format The Protein Data Bank Markup Language (PDBML) provides a representation of PDB data in XML format. | SMRUCC.genomics.Data.RCSB.PDB 1.0.9762.7562 |
3 |
SMRUCC.genomics.Data.RCSB.PDB.Structures
| Type | Summary | Package | Members |
|---|---|---|---|
| Atom | The unified molecular atom model for the PDB/SDF structure readers. | SMRUCC.genomics.Data.RCSB.PDB 1.0.9753.40023 |
19 |
| Atom | The unified molecular atom model for the PDB/SDF structure readers. | SMRUCC.genomics.Data.RCSB.PDB 1.0.9762.7562 |
18 |
| Bond | The covalent bond between two atom sites. | SMRUCC.genomics.Data.RCSB.PDB 1.0.9753.40023 |
8 |
| Bond | The covalent bond between two atom sites. | SMRUCC.genomics.Data.RCSB.PDB 1.0.9762.7562 |
8 |
| Molecule | A molecule (or a collection of protein chains) topology model. | SMRUCC.genomics.Data.RCSB.PDB 1.0.9753.40023 |
6 |
| Molecule | A molecule (or a collection of protein chains) topology model. | SMRUCC.genomics.Data.RCSB.PDB 1.0.9762.7562 |
6 |
| PdbLineParser | The fixed-column parser of the PDB ATOM/HETATM records. | SMRUCC.genomics.Data.RCSB.PDB 1.0.9753.40023 |
6 |
| PdbLineParser | The fixed-column parser of the PDB ATOM/HETATM records. | SMRUCC.genomics.Data.RCSB.PDB 1.0.9762.7562 |
6 |
| StructureIO | The lightweight PDB structure file reader. | SMRUCC.genomics.Data.RCSB.PDB 1.0.9753.40023 |
8 |
| StructureIO | The lightweight PDB structure file reader. | SMRUCC.genomics.Data.RCSB.PDB 1.0.9762.7562 |
8 |
SMRUCC.genomics.Data.Reactome
| Type | Summary | Package | Members |
|---|---|---|---|
| HierarchyLink | SMRUCC.genomics.Data.Reactome 1.0.9753.40023 |
7 | |
| HierarchyLink | SMRUCC.genomics.Data.Reactome 1.0.9762.7562 |
7 |
SMRUCC.genomics.Data.Reactome.OwlDocument
| Type | Summary | Package | Members |
|---|---|---|---|
| DocumentFile | SMRUCC.genomics.Data.Reactome 1.0.9753.40023 |
22 | |
| DocumentFile | SMRUCC.genomics.Data.Reactome 1.0.9762.7562 |
1 |
SMRUCC.genomics.Data.Reactome.RESTfulAPI
| Type | Summary | Package | Members |
|---|---|---|---|
| ReactomeObject | SMRUCC.genomics.Data.Reactome 1.0.9753.40023 |
6 | |
| ReactomeObject | SMRUCC.genomics.Data.Reactome 1.0.9762.7562 |
6 |
SMRUCC.genomics.Data.Rhea
| Type | Summary | Package | Members |
|---|---|---|---|
| ReactionList | A list of reaction data for save in xml file | SMRUCC.genomics.Data.Rhea 1.0.9753.40023 |
0 |
| ReactionList | A list of reaction data for save in xml file | SMRUCC.genomics.Data.Rhea 1.0.9762.7562 |
0 |
| RheaRDF | SMRUCC.genomics.Data.Rhea 1.0.9753.40023 |
0 | |
| RheaRDF | SMRUCC.genomics.Data.Rhea 1.0.9762.7562 |
0 |
SMRUCC.genomics.Data.SABIORK.docuRESTfulWeb
| Type | Summary | Package | Members |
|---|---|---|---|
| docuRESTfulWebHelper | SMRUCC.genomics.Data.SABIO-RK 1.0.9753.40023 |
3 | |
| docuRESTfulWebHelper | SMRUCC.genomics.Data.SABIO-RK 1.0.9762.7562 |
3 | |
| QueryFields | The following vocabulary may be used to form queries to search for entries. | SMRUCC.genomics.Data.SABIO-RK 1.0.9753.40023 |
58 |
| QueryFields | The following vocabulary may be used to form queries to search for entries. | SMRUCC.genomics.Data.SABIO-RK 1.0.9762.7562 |
58 |
| WebRequest | SMRUCC.genomics.Data.SABIO-RK 1.0.9753.40023 |
2 | |
| WebRequest | SMRUCC.genomics.Data.SABIO-RK 1.0.9762.7562 |
2 |
SMRUCC.genomics.Data.SABIORK.SBML
| Type | Summary | Package | Members |
|---|---|---|---|
| LocalParameterParser | SMRUCC.genomics.Data.SABIO-RK 1.0.9753.40023 |
1 | |
| LocalParameterParser | SMRUCC.genomics.Data.SABIO-RK 1.0.9762.7562 |
1 | |
| MathMLParser | parser helper for the mathML enzymatic kinetics | SMRUCC.genomics.Data.SABIO-RK 1.0.9753.40023 |
1 |
| MathMLParser | parser helper for the mathML enzymatic kinetics | SMRUCC.genomics.Data.SABIO-RK 1.0.9762.7562 |
1 |
| SabiorkSBML | 从sbml文件中的数据解析转换得到的GCModeller的内部数据存储格式 | SMRUCC.genomics.Data.SABIO-RK 1.0.9753.40023 |
1 |
| SabiorkSBML | 从sbml文件中的数据解析转换得到的GCModeller的内部数据存储格式 | SMRUCC.genomics.Data.SABIO-RK 1.0.9762.7562 |
1 |
| SbmlDocument | list of reactions and list of the lambda formula expression | SMRUCC.genomics.Data.SABIO-RK 1.0.9753.40023 |
4 |
| SbmlDocument | list of reactions and list of the lambda formula expression | SMRUCC.genomics.Data.SABIO-RK 1.0.9762.7562 |
4 |
| SBMLInternalIndexer | helper for get reaction model from sabio-rk SbmlDocument dataset | SMRUCC.genomics.Data.SABIO-RK 1.0.9753.40023 |
6 |
| SBMLInternalIndexer | helper for get reaction model from sabio-rk SbmlDocument dataset | SMRUCC.genomics.Data.SABIO-RK 1.0.9762.7562 |
6 |
| SBMLReaction | SBML格式的数据文件之中的reaction模型定义 | SMRUCC.genomics.Data.SABIO-RK 1.0.9753.40023 |
1 |
| SBMLReaction | SBML格式的数据文件之中的reaction模型定义 | SMRUCC.genomics.Data.SABIO-RK 1.0.9762.7562 |
1 |
SMRUCC.genomics.Data.SABIORK.TabularDump
| Type | Summary | Package | Members |
|---|---|---|---|
| CompoundSpecie | SMRUCC.genomics.Data.SABIO-RK 1.0.9753.40023 |
4 | |
| CompoundSpecie | SMRUCC.genomics.Data.SABIO-RK 1.0.9762.7562 |
1 | |
| EnzymeCatalystKineticLaw | Vmax 是指 最大反应速度。当 底物浓度 足够大时,体系中酶的活性中心达到饱和状态,其反应速度达到最大。由此可见,最大反应速度 Vmax 随 酶浓度 的变化而变化。 kcat 指反应常数(Catalytic Constant),Kcat 可以由公式计算得到: kcat = Vmax/[E] - [E] 指 酶浓度,由此可以说, kcat 表示了每… | SMRUCC.genomics.Data.SABIO-RK 1.0.9753.40023 |
3 |
| EnzymeCatalystKineticLaw | Vmax 是指 最大反应速度。当 底物浓度 足够大时,体系中酶的活性中心达到饱和状态,其反应速度达到最大。由此可见,最大反应速度 Vmax 随 酶浓度 的变化而变化。 kcat 指反应常数(Catalytic Constant),Kcat 可以由公式计算得到: kcat = Vmax/[E] - [E] 指 酶浓度,由此可以说, kcat 表示了每… | SMRUCC.genomics.Data.SABIO-RK 1.0.9762.7562 |
0 |
| EnzymeModifier | data of enzyme information | SMRUCC.genomics.Data.SABIO-RK 1.0.9753.40023 |
0 |
| EnzymeModifier | data of enzyme information | SMRUCC.genomics.Data.SABIO-RK 1.0.9762.7562 |
0 |
| KineticLawData | SMRUCC.genomics.Data.SABIO-RK 1.0.9753.40023 |
15 | |
| KineticLawData | SMRUCC.genomics.Data.SABIO-RK 1.0.9762.7562 |
1 | |
| ModifierKinetics | 对酶分子的Modifier | SMRUCC.genomics.Data.SABIO-RK 1.0.9753.40023 |
8 |
| ModifierKinetics | 对酶分子的Modifier | SMRUCC.genomics.Data.SABIO-RK 1.0.9762.7562 |
3 |
| SabiorkEntity | sabio-rk object reference | SMRUCC.genomics.Data.SABIO-RK 1.0.9753.40023 |
2 |
| SabiorkEntity | sabio-rk object reference | SMRUCC.genomics.Data.SABIO-RK 1.0.9762.7562 |
1 |
SMRUCC.genomics.Data.STRING
| Type | Summary | Package | Members |
|---|---|---|---|
| Extensions | SMRUCC.genomics.Data.STRING-db 1.0.9753.40023 |
2 | |
| Extensions | SMRUCC.genomics.Data.STRING-db 1.0.9762.7562 |
2 | |
| PSI | PSI network file extensions API. | SMRUCC.genomics.Data.STRING-db 1.0.9753.40023 |
0 |
| PSI | PSI network file extensions API. | SMRUCC.genomics.Data.STRING-db 1.0.9762.7562 |
0 |
| StringIndex | network index for the linksDetail | SMRUCC.genomics.Data.STRING-db 1.0.9753.40023 |
4 |
| StringIndex | network index for the linksDetail | SMRUCC.genomics.Data.STRING-db 1.0.9762.7562 |
4 |
SMRUCC.genomics.Data.STRING.StringDB.WebAPI
SMRUCC.genomics.Data.STRING.StringDB.WebAPI.Request.Parameter
| Type | Summary | Package | Members |
|---|---|---|---|
| additional_network_nodes | Number of additional nodes in network (ordered by score), e.g./ 10 | SMRUCC.genomics.Data.STRING-db 1.0.9753.40023 |
0 |
| additional_network_nodes | Number of additional nodes in network (ordered by score), e.g./ 10 | SMRUCC.genomics.Data.STRING-db 1.0.9762.7562 |
0 |
| caller_identity | Your identifier for us. | SMRUCC.genomics.Data.STRING-db 1.0.9753.40023 |
0 |
| caller_identity | Your identifier for us. | SMRUCC.genomics.Data.STRING-db 1.0.9762.7562 |
0 |
| format | + For resolve requests: only-ids get the list of only the STRING identifiers (full by default) + For abstract requests: use colon pmids for alternative shapes of the pubmed ident… | SMRUCC.genomics.Data.STRING-db 1.0.9753.40023 |
0 |
| format | + For resolve requests: only-ids get the list of only the STRING identifiers (full by default) + For abstract requests: use colon pmids for alternative shapes of the pubmed ident… | SMRUCC.genomics.Data.STRING-db 1.0.9762.7562 |
0 |
| identifier | required parameter for single item, e.g. | SMRUCC.genomics.Data.STRING-db 1.0.9753.40023 |
0 |
| identifier | required parameter for single item, e.g. | SMRUCC.genomics.Data.STRING-db 1.0.9762.7562 |
0 |
| identifiers | required parameter for multiple items, e.g.DRD1_HUMAN%0DDRD2_HUMAN | SMRUCC.genomics.Data.STRING-db 1.0.9753.40023 |
0 |
| identifiers | required parameter for multiple items, e.g.DRD1_HUMAN%0DDRD2_HUMAN | SMRUCC.genomics.Data.STRING-db 1.0.9762.7562 |
0 |
| limit | Maximum number of nodes to return, e.g 10. | SMRUCC.genomics.Data.STRING-db 1.0.9753.40023 |
0 |
| limit | Maximum number of nodes to return, e.g 10. | SMRUCC.genomics.Data.STRING-db 1.0.9762.7562 |
0 |
| network_flavor | The style of edges in the network. | SMRUCC.genomics.Data.STRING-db 1.0.9753.40023 |
0 |
| network_flavor | The style of edges in the network. | SMRUCC.genomics.Data.STRING-db 1.0.9762.7562 |
0 |
| required_score | Threshold of significance to include a interaction, a number between 0 and 1000 | SMRUCC.genomics.Data.STRING-db 1.0.9753.40023 |
0 |
| required_score | Threshold of significance to include a interaction, a number between 0 and 1000 | SMRUCC.genomics.Data.STRING-db 1.0.9762.7562 |
0 |
| species | Taxon identifiers (e.g. | SMRUCC.genomics.Data.STRING-db 1.0.9753.40023 |
0 |
| species | Taxon identifiers (e.g. | SMRUCC.genomics.Data.STRING-db 1.0.9762.7562 |
0 |
SMRUCC.genomics.Data.STRING.Tabular
SMRUCC.genomics.Data.STRING.Tabular.Tsv
| Type | Summary | Package | Members |
|---|---|---|---|
| Coordinates | Tsv table reader for string-db export result string_network_coordinates.txt. | SMRUCC.genomics.Data.STRING-db 1.0.9753.40023 |
6 |
| Coordinates | Tsv table reader for string-db export result string_network_coordinates.txt. | SMRUCC.genomics.Data.STRING-db 1.0.9762.7562 |
0 |
| entrez_gene_id_vs_string | separate identifier mapping files, for several frequently used name_spaces... | SMRUCC.genomics.Data.STRING-db 1.0.9753.40023 |
5 |
| entrez_gene_id_vs_string | separate identifier mapping files, for several frequently used name_spaces... | SMRUCC.genomics.Data.STRING-db 1.0.9762.7562 |
5 |
| InteractExports | 对于linkAction和linksDetail而言,都是从ftp服务器上面下载的结果数据 这个tsv文件则是搜索蛋白质网络结果之后的export下载数据的文件格式读取对象 | SMRUCC.genomics.Data.STRING-db 1.0.9753.40023 |
3 |
| InteractExports | 对于linkAction和linksDetail而言,都是从ftp服务器上面下载的结果数据 这个tsv文件则是搜索蛋白质网络结果之后的export下载数据的文件格式读取对象 | SMRUCC.genomics.Data.STRING-db 1.0.9762.7562 |
3 |
| linkAction | interaction types for protein links. | SMRUCC.genomics.Data.STRING-db 1.0.9753.40023 |
7 |
| linkAction | interaction types for protein links. | SMRUCC.genomics.Data.STRING-db 1.0.9762.7562 |
7 |
| linksDetail | protein network data (incl. | SMRUCC.genomics.Data.STRING-db 1.0.9753.40023 |
21 |
| linksDetail | protein network data (incl. | SMRUCC.genomics.Data.STRING-db 1.0.9762.7562 |
21 |
SMRUCC.genomics.Data.Xfam.Pfam
| Type | Summary | Package | Members |
|---|---|---|---|
| DomainAnalysis | SMRUCC.genomics.Data.Xfam.Pfam 1.0.9753.40023 |
6 | |
| DomainAnalysis | SMRUCC.genomics.Data.Xfam.Pfam 1.0.9762.7562 |
6 |
SMRUCC.genomics.Data.Xfam.Pfam.PfamString
| Type | Summary | Package | Members |
|---|---|---|---|
| API | SMRUCC.genomics.Data.Xfam.Pfam 1.0.9753.40023 |
3 | |
| API | SMRUCC.genomics.Data.Xfam.Pfam 1.0.9762.7562 |
3 | |
| DomainObject | 这个数据结构是对ChouFasman结构而言的 | SMRUCC.genomics.Data.Xfam.Pfam 1.0.9753.40023 |
1 |
| DomainObject | 这个数据结构是对ChouFasman结构而言的 | SMRUCC.genomics.Data.Xfam.Pfam 1.0.9762.7562 |
1 |
| PfamString | This data object specific for a protein function protein domain structure. | SMRUCC.genomics.Data.Xfam.Pfam 1.0.9753.40023 |
8 |
| PfamString | This data object specific for a protein function protein domain structure. | SMRUCC.genomics.Data.Xfam.Pfam 1.0.9762.7562 |
5 |
SMRUCC.genomics.Data.Xfam.Pfam.Pipeline.Database
| Type | Summary | Package | Members |
|---|---|---|---|
| Alignment | SMRUCC.genomics.Data.Xfam.Pfam 1.0.9753.40023 |
0 | |
| Alignment | SMRUCC.genomics.Data.Xfam.Pfam 1.0.9762.7562 |
0 | |
| Comment | The comment section contains functional information about the Pfam family. | SMRUCC.genomics.Data.Xfam.Pfam 1.0.9753.40023 |
0 |
| Comment | The comment section contains functional information about the Pfam family. | SMRUCC.genomics.Data.Xfam.Pfam 1.0.9762.7562 |
0 |
| Entry | Pfam Entry, The format of Pfam entries has become stricter and we now enforce some ordering of the fields. | SMRUCC.genomics.Data.Xfam.Pfam 1.0.9753.40023 |
0 |
| Entry | Pfam Entry, The format of Pfam entries has become stricter and we now enforce some ordering of the fields. | SMRUCC.genomics.Data.Xfam.Pfam 1.0.9762.7562 |
0 |
| Header | The header section mainly contains compulsory fields. | SMRUCC.genomics.Data.Xfam.Pfam 1.0.9753.40023 |
0 |
| Header | The header section mainly contains compulsory fields. | SMRUCC.genomics.Data.Xfam.Pfam 1.0.9762.7562 |
0 |
| PfamEntryHeader | Pfam title model | SMRUCC.genomics.Data.Xfam.Pfam 1.0.9753.40023 |
7 |
| PfamEntryHeader | Pfam title model | SMRUCC.genomics.Data.Xfam.Pfam 1.0.9762.7562 |
0 |
| PfamFasta | 用于解析和表示pfam的fasta序列库中的蛋白结构域序列的数据模型 | SMRUCC.genomics.Data.Xfam.Pfam 1.0.9753.40023 |
0 |
| PfamFasta | 用于解析和表示pfam的fasta序列库中的蛋白结构域序列的数据模型 | SMRUCC.genomics.Data.Xfam.Pfam 1.0.9762.7562 |
0 |
| Reference | The reference section mainly contains cross-links to other databases, and literature references. | SMRUCC.genomics.Data.Xfam.Pfam 1.0.9753.40023 |
0 |
| Reference | The reference section mainly contains cross-links to other databases, and literature references. | SMRUCC.genomics.Data.Xfam.Pfam 1.0.9762.7562 |
0 |
SMRUCC.genomics.Data.Xfam.Pfam.Pipeline.LocalBlast
| Type | Summary | Package | Members |
|---|---|---|---|
| Annotation | SMRUCC.genomics.Data.Xfam.Pfam 1.0.9753.40023 |
6 | |
| Annotation | SMRUCC.genomics.Data.Xfam.Pfam 1.0.9762.7562 |
6 | |
| BlastOutputParser | SMRUCC.genomics.Data.Xfam.Pfam 1.0.9753.40023 |
2 | |
| BlastOutputParser | SMRUCC.genomics.Data.Xfam.Pfam 1.0.9762.7562 |
2 | |
| PfamHit | A hit model of pfam domain annotation on query protein sequence. | SMRUCC.genomics.Data.Xfam.Pfam 1.0.9753.40023 |
3 |
| PfamHit | A hit model of pfam domain annotation on query protein sequence. | SMRUCC.genomics.Data.Xfam.Pfam 1.0.9762.7562 |
3 |
SMRUCC.genomics.Data.Xfam.Pfam.ProteinDomainArchitecture.MPAlignment
| Type | Summary | Package | Members |
|---|---|---|---|
| Algorithm | Tools for comparing the protein domain structure similarity. | SMRUCC.genomics.Data.Xfam.Pfam 1.0.9753.40023 |
7 |
| Algorithm | Tools for comparing the protein domain structure similarity. | SMRUCC.genomics.Data.Xfam.Pfam 1.0.9762.7562 |
6 |
| AlignmentOutput | Protein Domain Alignment result.(蛋白质结构域的比对结果输出,从AlignmentOutput.ToString()函数生成文本文件格式的比对报告) | SMRUCC.genomics.Data.Xfam.Pfam 1.0.9753.40023 |
9 |
| AlignmentOutput | Protein Domain Alignment result.(蛋白质结构域的比对结果输出,从AlignmentOutput.ToString()函数生成文本文件格式的比对报告) | SMRUCC.genomics.Data.Xfam.Pfam 1.0.9762.7562 |
4 |
| DomainDistribution | Domain position specifc distributions | SMRUCC.genomics.Data.Xfam.Pfam 1.0.9753.40023 |
3 |
| DomainDistribution | Domain position specifc distributions | SMRUCC.genomics.Data.Xfam.Pfam 1.0.9762.7562 |
3 |
| DomainEquals | SMRUCC.genomics.Data.Xfam.Pfam 1.0.9753.40023 |
3 | |
| DomainEquals | SMRUCC.genomics.Data.Xfam.Pfam 1.0.9762.7562 |
3 | |
| LevAlign | 这个比对是做结构域对其的 | SMRUCC.genomics.Data.Xfam.Pfam 1.0.9753.40023 |
9 |
| LevAlign | 这个比对是做结构域对其的 | SMRUCC.genomics.Data.Xfam.Pfam 1.0.9762.7562 |
2 |
| MotifParallelAlignment | 从双向比对结果之中根据PfamString结果来取等价的蛋白质 | SMRUCC.genomics.Data.Xfam.Pfam 1.0.9753.40023 |
6 |
| MotifParallelAlignment | 从双向比对结果之中根据PfamString结果来取等价的蛋白质 | SMRUCC.genomics.Data.Xfam.Pfam 1.0.9762.7562 |
6 |
| MPCsvArchive | CSV格式的MPAlignment结果数据记录 | SMRUCC.genomics.Data.Xfam.Pfam 1.0.9753.40023 |
4 |
| MPCsvArchive | CSV格式的MPAlignment结果数据记录 | SMRUCC.genomics.Data.Xfam.Pfam 1.0.9762.7562 |
4 |
SMRUCC.genomics.Data.Xfam.Pfam.SiteSearch
| Type | Summary | Package | Members |
|---|---|---|---|
| PfamFamily | ftp://ftp.ebi.ac.uk/pub/databases/Pfam/sitesearch/PfamFamily.xml.gz | SMRUCC.genomics.Data.Xfam.Pfam 1.0.9753.40023 |
4 |
| PfamFamily | ftp://ftp.ebi.ac.uk/pub/databases/Pfam/sitesearch/PfamFamily.xml.gz | SMRUCC.genomics.Data.Xfam.Pfam 1.0.9762.7562 |
4 |
SMRUCC.genomics.foundation.BIOM
| Type | Summary | Package | Members |
|---|---|---|---|
| Extensions | SMRUCC.genomics.foundation.BIOM 1.0.9753.40023 |
2 | |
| Extensions | SMRUCC.genomics.foundation.BIOM 1.0.9762.7562 |
2 |
SMRUCC.genomics.foundation.BIOM.v10
| Type | Summary | Package | Members |
|---|---|---|---|
| BIOMDataSet | The biom file format: Version 1.0 The biom format is based on JSON to provide the overall structure for the format. | SMRUCC.genomics.foundation.BIOM 1.0.9753.40023 |
17 |
| BIOMDataSet | The biom file format: Version 1.0 The biom format is based on JSON to provide the overall structure for the format. | SMRUCC.genomics.foundation.BIOM 1.0.9762.7562 |
13 |
| FloatMatrix | BIOM json with double matrix data | SMRUCC.genomics.foundation.BIOM 1.0.9753.40023 |
1 |
| FloatMatrix | BIOM json with double matrix data | SMRUCC.genomics.foundation.BIOM 1.0.9762.7562 |
1 |
| IntegerMatrix | BIOM json with integer matrix data | SMRUCC.genomics.foundation.BIOM 1.0.9753.40023 |
1 |
| IntegerMatrix | BIOM json with integer matrix data | SMRUCC.genomics.foundation.BIOM 1.0.9762.7562 |
1 |
| matrix_type | 2019-05-27 因为自带的JSON序列化函数会将枚举类型转换为对应的值,而非枚举成员的名称字符串 所以在这里就直接使用字符串常数来表示枚举了 | SMRUCC.genomics.foundation.BIOM 1.0.9753.40023 |
2 |
| matrix_type | 2019-05-27 因为自带的JSON序列化函数会将枚举类型转换为对应的值,而非枚举成员的名称字符串 所以在这里就直接使用字符串常数来表示枚举了 | SMRUCC.genomics.foundation.BIOM 1.0.9762.7562 |
2 |
| MatrixConversion | 在matrix_type.sparse和matrix_type.dense 这两种布局的矩阵之间相互转换 | SMRUCC.genomics.foundation.BIOM 1.0.9753.40023 |
5 |
| MatrixConversion | 在matrix_type.sparse和matrix_type.dense 这两种布局的矩阵之间相互转换 | SMRUCC.genomics.foundation.BIOM 1.0.9762.7562 |
5 |
| namesOf | <string> Table type (a controlled vocabulary) acceptable values | SMRUCC.genomics.foundation.BIOM 1.0.9753.40023 |
7 |
| namesOf | <string> Table type (a controlled vocabulary) acceptable values | SMRUCC.genomics.foundation.BIOM 1.0.9762.7562 |
7 |
| StringMatrix | BIOM json with string matrix data | SMRUCC.genomics.foundation.BIOM 1.0.9753.40023 |
1 |
| StringMatrix | BIOM json with string matrix data | SMRUCC.genomics.foundation.BIOM 1.0.9762.7562 |
1 |
SMRUCC.genomics.foundation.BIOM.v10.components
| Type | Summary | Package | Members |
|---|---|---|---|
| column | 主要是存储sample信息 | SMRUCC.genomics.foundation.BIOM 1.0.9753.40023 |
3 |
| column | 主要是存储sample信息 | SMRUCC.genomics.foundation.BIOM 1.0.9762.7562 |
0 |
| meta | SMRUCC.genomics.foundation.BIOM 1.0.9753.40023 |
3 | |
| meta | SMRUCC.genomics.foundation.BIOM 1.0.9762.7562 |
3 | |
| row | 主要是存储OTU信息 | SMRUCC.genomics.foundation.BIOM 1.0.9753.40023 |
4 |
| row | 主要是存储OTU信息 | SMRUCC.genomics.foundation.BIOM 1.0.9762.7562 |
0 |
SMRUCC.genomics.foundation.BIOM.v15
SMRUCC.genomics.foundation.BIOM.v20
SMRUCC.genomics.foundation.BIOM.v21
SMRUCC.genomics.foundation.psidev.TAB
SMRUCC.genomics.foundation.psidev.XML
| Type | Summary | Package | Members |
|---|---|---|---|
| EntrySet | net:sf:psidev:mi/http://psidev.sourceforge.net/mi/rel25/src/MIF25.xsd | SMRUCC.genomics.foundation.psidev 1.0.9753.40023 |
3 |
| EntrySet | net:sf:psidev:mi/http://psidev.sourceforge.net/mi/rel25/src/MIF25.xsd | SMRUCC.genomics.foundation.psidev 1.0.9762.7562 |
2 |
| Names | Names for an object. | SMRUCC.genomics.foundation.psidev 1.0.9753.40023 |
4 |
| Names | Names for an object. | SMRUCC.genomics.foundation.psidev 1.0.9762.7562 |
4 |
| Reference | Refers to a unique object in an external database. | SMRUCC.genomics.foundation.psidev 1.0.9753.40023 |
8 |
| Reference | Refers to a unique object in an external database. | SMRUCC.genomics.foundation.psidev 1.0.9762.7562 |
8 |
| v30 | PSI-MI XML v3.0 data interchange format | SMRUCC.genomics.foundation.psidev 1.0.9753.40023 |
1 |
| v30 | PSI-MI XML v3.0 data interchange format | SMRUCC.genomics.foundation.psidev 1.0.9762.7562 |
1 |
| Xref | Crossreference to an external database. | SMRUCC.genomics.foundation.psidev 1.0.9753.40023 |
3 |
| Xref | Crossreference to an external database. | SMRUCC.genomics.foundation.psidev 1.0.9762.7562 |
3 |
SMRUCC.genomics.foundation.psidev.XML.MIF30
| Type | Summary | Package | Members |
|---|---|---|---|
| entry | Describes one or more interactions as a self-contained unit. | SMRUCC.genomics.foundation.psidev 1.0.9753.40023 |
6 |
| entry | Describes one or more interactions as a self-contained unit. | SMRUCC.genomics.foundation.psidev 1.0.9762.7562 |
6 |
| source | Example: <mif:source release="" releaseDate="" xmlns:mif="http://psi.hupo.org/mi/mif300"> <MIF:names>{0,1}</mif:names> <MIF:bibref>{0,1}</mif:bibref> <MIF:xref>{0,1… | SMRUCC.genomics.foundation.psidev 1.0.9753.40023 |
6 |
| source | Example: <mif:source release="" releaseDate="" xmlns:mif="http://psi.hupo.org/mi/mif300"> <MIF:names>{0,1}</mif:names> <MIF:bibref>{0,1}</mif:bibref> <MIF:xref>{0,1… | SMRUCC.genomics.foundation.psidev 1.0.9762.7562 |
6 |
SMRUCC.genomics.GCModeller.CompilerServices
| Type | Summary | Package | Members |
|---|---|---|---|
| Compiler | Model file of class type ModelBaseType compiler. | SMRUCC.genomics.GCModeller.CompilerServices 1.0.9753.40023 |
8 |
| Compiler | Model file of class type ModelBaseType compiler. | SMRUCC.genomics.GCModeller.CompilerServices 1.0.9762.7562 |
2 |
| ModelBaseType | All of the model file basetype definition in the GCModeller program group, all of the model file must inherits from this class object. | SMRUCC.genomics.GCModeller.CompilerServices 1.0.9753.40023 |
5 |
| ModelBaseType | All of the model file basetype definition in the GCModeller program group, all of the model file must inherits from this class object. | SMRUCC.genomics.GCModeller.CompilerServices 1.0.9762.7562 |
0 |
| Property | the property about the current virtual cell model | SMRUCC.genomics.GCModeller.CompilerServices 1.0.9753.40023 |
13 |
| Property | the property about the current virtual cell model | SMRUCC.genomics.GCModeller.CompilerServices 1.0.9762.7562 |
13 |
SMRUCC.genomics.GCModeller.CompilerServices.GPRLink
| Type | Summary | Package | Members |
|---|---|---|---|
| AssociationEvidence | 单条关联证据。 分数的最终取值为 noisy-OR 聚合(见 EvidenceAggregator), 其中每一条证据的贡献为 AssociationEvidence.Weight * AssociationEvidence.RawScore。 | SMRUCC.genomics.GCModeller.CompilerServices.GPRLink 1.0.9762.7562 |
6 |
| CoexpressionAnalyzer | 基于表达数据的共表达分析 共表达的基因很可能参与同一通路 | SMRUCC.genomics.GCModeller.CompilerServices.GPRLink 1.0.9753.40023 |
0 |
| CoexpressionAnalyzer | 基于表达数据的共表达分析。 共表达的基因很可能参与同一通路,因此可以把共表达伙伴的"直接证据反应" 作为当前基因的一条弱证据。 修复要点: + 原实现在 Genome.MetabolicNetwork 尚未物化时被调用, 导致共表达分析恒为空、完全失效;现在由 MetabolicAssociator 在阶段 1 物化种子反应之… | SMRUCC.genomics.GCModeller.CompilerServices.GPRLink 1.0.9762.7562 |
3 |
| CoexpressionPartner | 共表达的基因伙伴及其相关系数 | SMRUCC.genomics.GCModeller.CompilerServices.GPRLink 1.0.9762.7562 |
3 |
| ConservedCluster | 一个跨物种保守的基因邻接簇。 注意:ConservedCluster.geneIDs 才是簇内基因的集合,ConservedCluster.functions 是该簇在其它 物种中所被赋予的功能(EC 编号 / 反应编号 / 通路编号)。 | SMRUCC.genomics.GCModeller.CompilerServices.GPRLink 1.0.9762.7562 |
7 |
| ConservedSyntenyAnalyzer | 基于多个基因组的保守基因邻接进行推断 如果多个物种中某些基因总是相邻,则它们的功能很可能相关 | SMRUCC.genomics.GCModeller.CompilerServices.GPRLink 1.0.9753.40023 |
1 |
| ConservedSyntenyAnalyzer | 基于多个基因组的保守基因邻接进行功能推断。 如果多个物种中某些基因总是相邻出现,那么它们的功能很可能相关。 | SMRUCC.genomics.GCModeller.CompilerServices.GPRLink 1.0.9762.7562 |
6 |
| ContextIndices | 参考代谢网络的倒排索引。 该对象在构造时一次性完成全部索引构建,之后下游算法不再需要线性扫描: + ContextIndices.ECtoReactions:EC 编号 -> 反应 + ContextIndices.ReactionIndex:反应编号 -> 反应(覆盖全部反应,包含没有 EC 编号的反应) + ContextIndices.… | SMRUCC.genomics.GCModeller.CompilerServices.GPRLink 1.0.9762.7562 |
17 |
| EnzymeComplexDetector | 检测潜在的多亚基酶复合体 基于基因距离、方向、以及功能相似性 | SMRUCC.genomics.GCModeller.CompilerServices.GPRLink 1.0.9753.40023 |
0 |
| EnzymeComplexDetector | 潜在多亚基酶复合体检测。 判定条件(三条必须同时满足): 1. | SMRUCC.genomics.GCModeller.CompilerServices.GPRLink 1.0.9762.7562 |
1 |
| EvidenceAggregator | 证据聚合器:把多条相互独立的证据合并成一个 [0, 1] 区间内的置信分数。 采用 noisy-OR 模型: score = 1 - Π(1 - contribution_i) 该公式满足以下性质,这正是关联打分所需的基本要求: + 单调性:增加任意一条证据(contribution > 0)只会让分数升高或不变; + 有… | SMRUCC.genomics.GCModeller.CompilerServices.GPRLink 1.0.9762.7562 |
4 |
| EvidenceKind | 基因-反应关联打分中所使用的证据类型。 每一种证据都代表一条独立的推断依据,最终分数由 EvidenceAggregator 聚合得到, 因此任何一个分数都可以被完整地追溯到"它是由哪些证据推导出来的"。 | SMRUCC.genomics.GCModeller.CompilerServices.GPRLink 1.0.9762.7562 |
18 |
| FusionGeneAnalyzer | 检测多域融合酶 如果一个蛋白对应多个EC号,检查这些EC是否在同一个通路中形成连续的酶促步骤 | SMRUCC.genomics.GCModeller.CompilerServices.GPRLink 1.0.9753.40023 |
1 |
| FusionGeneAnalyzer | 多结构域融合酶检测。 如果一个蛋白同时携带多个 EC 编号,并且这些 EC 所对应的反应在同一条通路中构成 连续(间隔不超过 GPRParameters.MaxGapInPathway 步)的酶促步骤, 则认为这是一个融合酶,并对其在通路中真正参与的反应给出证据。 | SMRUCC.genomics.GCModeller.CompilerServices.GPRLink 1.0.9762.7562 |
2 |
| GeneAssociation | 一个基因的全部基因-反应关联结果 | SMRUCC.genomics.GCModeller.CompilerServices.GPRLink 1.0.9762.7562 |
6 |
| Genome | SMRUCC.genomics.GCModeller.CompilerServices.GPRLink 1.0.9753.40023 |
1 | |
| Genome | 基因组上下文 + 基因-反应关联结果的统一容器。 Genome.MetabolicNetwork、反应到基因的反向索引以及直接证据种子集合, 全部由 Genome.RebuildNetwork()) / Genome.SetSeedReactions()) 这两个统一入口维护, 避免出现"算法内部使用一份数据、对外输出另一份数据"的不一致问题。 | SMRUCC.genomics.GCModeller.CompilerServices.GPRLink 1.0.9762.7562 |
10 |
| GPRParameters | 算法参数 | SMRUCC.genomics.GCModeller.CompilerServices.GPRLink 1.0.9753.40023 |
14 |
| GPRParameters | GPR 关联算法的参数集合。 约定:所有参与打分的数值都必须来自这里,算法实现中不允许出现硬编码的魔法数字。 每一项证据的贡献都是 Weight * RawScore,其中 Weight 由本类提供, RawScore 由具体的证据分析器根据实际情况(距离、相关系数、完整度等)计算。 | SMRUCC.genomics.GCModeller.CompilerServices.GPRLink 1.0.9762.7562 |
28 |
| MetabolicAssociator | Algorithm module for mke association between the gene and reactions | SMRUCC.genomics.GCModeller.CompilerServices.GPRLink 1.0.9753.40023 |
8 |
| MetabolicAssociator | 基因 - 代谢反应关联(GPR link)推断算法。 算法被组织为一条显式的阶段化流水线,每一个阶段只负责一类证据: 1. | SMRUCC.genomics.GCModeller.CompilerServices.GPRLink 1.0.9762.7562 |
12 |
| Pathway | SMRUCC.genomics.GCModeller.CompilerServices.GPRLink 1.0.9753.40023 |
1 | |
| Pathway | 参考通路:在 MetabolicPathway 的基础上额外维护一张反应网络图。 | SMRUCC.genomics.GCModeller.CompilerServices.GPRLink 1.0.9762.7562 |
2 |
| ReactionContinuityChecker | 检查反应之间的化学相容性 如果一个反应的产物是下一个反应的底物,增强这些反应的分数 | SMRUCC.genomics.GCModeller.CompilerServices.GPRLink 1.0.9753.40023 |
1 |
| ReactionContinuityChecker | 反应连续性检查。 对于基因当前"已经支持"的反应集合,统计其中存在的"产物即下游底物"关系, 并据此对相关反应给出增益证据。 注意:本类只对基因已经支持的反应给出增益,不会凭空创造新的关联, 因此它属于网络级的一致性证据,而不是猜测性证据。 | SMRUCC.genomics.GCModeller.CompilerServices.GPRLink 1.0.9762.7562 |
4 |
| ReactionEvidence | 一条"反应 ID + 证据"的组合,是所有证据分析器的统一输出单元 | SMRUCC.genomics.GCModeller.CompilerServices.GPRLink 1.0.9762.7562 |
2 |
| ReactionLink | 一条"反应 -> 直接下游反应"的邻接关系 | SMRUCC.genomics.GCModeller.CompilerServices.GPRLink 1.0.9762.7562 |
3 |
| ScoredReaction | 一条"基因 -> 反应"关联的打分结果。 除了最终分数之外,还保留了推导出该分数的全部 ScoredReaction.Evidences, 因此结果表可以直接展示"评分依据",任何异常分数都可以被追溯。 | SMRUCC.genomics.GCModeller.CompilerServices.GPRLink 1.0.9762.7562 |
7 |
SMRUCC.genomics.GCModeller.ModellingEngine.BootstrapLoader
| Type | Summary | Package | Members |
|---|---|---|---|
| Extensions | SMRUCC.genomics.GCModeller.ModellingEngine.BootstrapLoader 5.0.9753.40023 |
1 | |
| Extensions | SMRUCC.genomics.GCModeller.ModellingEngine.BootstrapLoader 5.0.9762.7562 |
1 | |
| SyntheticMicrobialNetwork | Synthetic microbial community (SynComs) | SMRUCC.genomics.GCModeller.ModellingEngine.BootstrapLoader 5.0.9753.40023 |
0 |
| SyntheticMicrobialNetwork | Synthetic microbial community (SynComs) | SMRUCC.genomics.GCModeller.ModellingEngine.BootstrapLoader 5.0.9762.7562 |
0 |
SMRUCC.genomics.GCModeller.ModellingEngine.BootstrapLoader.Definitions
| Type | Summary | Package | Members |
|---|---|---|---|
| AminoAcid | SMRUCC.genomics.GCModeller.ModellingEngine.BootstrapLoader 5.0.9753.40023 |
27 | |
| AminoAcid | SMRUCC.genomics.GCModeller.ModellingEngine.BootstrapLoader 5.0.9762.7562 |
22 | |
| Definition | The definition for the mass environment for run the simulation | SMRUCC.genomics.GCModeller.ModellingEngine.BootstrapLoader 5.0.9753.40023 |
19 |
| Definition | The definition for the mass environment for run the simulation | SMRUCC.genomics.GCModeller.ModellingEngine.BootstrapLoader 5.0.9762.7562 |
9 |
| FluxBaseline | The baseline value of the flux controls and dynamics | SMRUCC.genomics.GCModeller.ModellingEngine.BootstrapLoader 5.0.9753.40023 |
16 |
| FluxBaseline | The baseline value of the flux controls and dynamics | SMRUCC.genomics.GCModeller.ModellingEngine.BootstrapLoader 5.0.9762.7562 |
16 |
| NucleicAcid | SMRUCC.genomics.GCModeller.ModellingEngine.BootstrapLoader 5.0.9753.40023 |
7 | |
| NucleicAcid | SMRUCC.genomics.GCModeller.ModellingEngine.BootstrapLoader 5.0.9762.7562 |
7 | |
| Status | 细胞状态定义 | SMRUCC.genomics.GCModeller.ModellingEngine.BootstrapLoader 5.0.9753.40023 |
2 |
| Status | 细胞状态定义 | SMRUCC.genomics.GCModeller.ModellingEngine.BootstrapLoader 5.0.9762.7562 |
2 |
SMRUCC.genomics.GCModeller.ModellingEngine.BootstrapLoader.Engine
| Type | Summary | Package | Members |
|---|---|---|---|
| DebuggerView | SMRUCC.genomics.GCModeller.ModellingEngine.BootstrapLoader 5.0.9753.40023 |
1 | |
| DebuggerView | SMRUCC.genomics.GCModeller.ModellingEngine.BootstrapLoader 5.0.9762.7562 |
1 | |
| Engine | The GCModeller VirtualCell dynamics engine module | SMRUCC.genomics.GCModeller.ModellingEngine.BootstrapLoader 5.0.9753.40023 |
7 |
| Engine | The GCModeller VirtualCell dynamics engine module | SMRUCC.genomics.GCModeller.ModellingEngine.BootstrapLoader 5.0.9762.7562 |
7 |
SMRUCC.genomics.GCModeller.ModellingEngine.BootstrapLoader.ModelLoader
| Type | Summary | Package | Members |
|---|---|---|---|
| BioMoleculeDegradation | 构建出生物大分子的降解过程 | SMRUCC.genomics.GCModeller.ModellingEngine.BootstrapLoader 5.0.9753.40023 |
0 |
| BioMoleculeDegradation | 构建出生物大分子的降解过程 | SMRUCC.genomics.GCModeller.ModellingEngine.BootstrapLoader 5.0.9762.7562 |
0 |
| CentralDogmaFluxLoader | 先构建一般性的中心法则过程 在这里面包含所有类型的RNA转录 以及蛋白序列的翻译 | SMRUCC.genomics.GCModeller.ModellingEngine.BootstrapLoader 5.0.9753.40023 |
3 |
| CentralDogmaFluxLoader | 先构建一般性的中心法则过程 在这里面包含所有类型的RNA转录 以及蛋白序列的翻译 | SMRUCC.genomics.GCModeller.ModellingEngine.BootstrapLoader 5.0.9762.7562 |
3 |
| FluxLoader | Helper module for convert the cellular module as the dynamics channels | SMRUCC.genomics.GCModeller.ModellingEngine.BootstrapLoader 5.0.9753.40023 |
0 |
| FluxLoader | Helper module for convert the cellular module as the dynamics channels | SMRUCC.genomics.GCModeller.ModellingEngine.BootstrapLoader 5.0.9762.7562 |
0 |
| Loader | Module loader | SMRUCC.genomics.GCModeller.ModellingEngine.BootstrapLoader 5.0.9753.40023 |
4 |
| Loader | Module loader | SMRUCC.genomics.GCModeller.ModellingEngine.BootstrapLoader 5.0.9762.7562 |
4 |
| MassLoader | SMRUCC.genomics.GCModeller.ModellingEngine.BootstrapLoader 5.0.9753.40023 |
4 | |
| MassLoader | SMRUCC.genomics.GCModeller.ModellingEngine.BootstrapLoader 5.0.9762.7562 |
4 | |
| MetabolismNetworkLoader | 构建代谢网络 | SMRUCC.genomics.GCModeller.ModellingEngine.BootstrapLoader 5.0.9753.40023 |
1 |
| MetabolismNetworkLoader | 构建代谢网络 | SMRUCC.genomics.GCModeller.ModellingEngine.BootstrapLoader 5.0.9762.7562 |
1 |
| ProteinComplexGenerator | SMRUCC.genomics.GCModeller.ModellingEngine.BootstrapLoader 5.0.9753.40023 |
1 | |
| ProteinComplexGenerator | SMRUCC.genomics.GCModeller.ModellingEngine.BootstrapLoader 5.0.9762.7562 |
1 | |
| ProteinMatureFluxLoader | 构建酶成熟的过程 | SMRUCC.genomics.GCModeller.ModellingEngine.BootstrapLoader 5.0.9753.40023 |
0 |
| ProteinMatureFluxLoader | 构建酶成熟的过程 | SMRUCC.genomics.GCModeller.ModellingEngine.BootstrapLoader 5.0.9762.7562 |
0 |
| TranscriptionEvents | https://stack.xieguigang.me/2025/modelling-virtualcell-transcription-event/ | SMRUCC.genomics.GCModeller.ModellingEngine.BootstrapLoader 5.0.9753.40023 |
3 |
| TranscriptionEvents | https://stack.xieguigang.me/2025/modelling-virtualcell-transcription-event/ | SMRUCC.genomics.GCModeller.ModellingEngine.BootstrapLoader 5.0.9762.7562 |
3 |
SMRUCC.genomics.GCModeller.ModellingEngine.IO
| Type | Summary | Package | Members |
|---|---|---|---|
| Extensions | SMRUCC.genomics.GCModeller.ModellingEngine.IO.Raw 5.0.9753.40023 |
4 | |
| Extensions | SMRUCC.genomics.GCModeller.ModellingEngine.IO.Raw 5.0.9762.7562 |
3 | |
| VCellMatrix | the in-memory model of the virtual cell result data pack | SMRUCC.genomics.GCModeller.ModellingEngine.IO.Raw 5.0.9753.40023 |
2 |
| VCellMatrix | the in-memory model of the virtual cell result data pack | SMRUCC.genomics.GCModeller.ModellingEngine.IO.Raw 5.0.9762.7562 |
2 |
SMRUCC.genomics.GCModeller.ModellingEngine.IO.Raw
| Type | Summary | Package | Members |
|---|---|---|---|
| CellularModules | The sandbox engine output raw data file format | SMRUCC.genomics.GCModeller.ModellingEngine.IO.Raw 5.0.9753.40023 |
19 |
| CellularModules | The sandbox engine output raw data file format | SMRUCC.genomics.GCModeller.ModellingEngine.IO.Raw 5.0.9762.7562 |
7 |
| Reader | SMRUCC.genomics.GCModeller.ModellingEngine.IO.Raw 5.0.9753.40023 |
6 | |
| Reader | SMRUCC.genomics.GCModeller.ModellingEngine.IO.Raw 5.0.9762.7562 |
4 | |
| StorageDriver | Data storage adapter driver | SMRUCC.genomics.GCModeller.ModellingEngine.IO.Raw 5.0.9753.40023 |
2 |
| StorageDriver | Data storage adapter driver | SMRUCC.genomics.GCModeller.ModellingEngine.IO.Raw 5.0.9762.7562 |
2 |
| Writer | The GCModeller raw data writer | SMRUCC.genomics.GCModeller.ModellingEngine.IO.Raw 5.0.9753.40023 |
3 |
| Writer | The GCModeller raw data writer | SMRUCC.genomics.GCModeller.ModellingEngine.IO.Raw 5.0.9762.7562 |
3 |
SMRUCC.genomics.GCModeller.ModellingEngine.IO.vcXML
| Type | Summary | Package | Members |
|---|---|---|---|
| Reader | SMRUCC.genomics.GCModeller.ModellingEngine.IO.Raw 5.0.9753.40023 |
8 | |
| Reader | SMRUCC.genomics.GCModeller.ModellingEngine.IO.Raw 5.0.9762.7562 |
3 | |
| Writer | SMRUCC.genomics.GCModeller.ModellingEngine.IO.Raw 5.0.9753.40023 |
3 | |
| Writer | SMRUCC.genomics.GCModeller.ModellingEngine.IO.Raw 5.0.9762.7562 |
3 |
SMRUCC.genomics.GCModeller.Workbench.ExperimentDesigner
| Type | Summary | Package | Members |
|---|---|---|---|
| AnalysisDesigner | AnalysisDesigner.controls / AnalysisDesigner.treatment 这个对象描述了如何设计一个比对计算实验分析 | SMRUCC.genomics.GCModeller.Workbench.ExperimentDesigner 1.0.9753.40023 |
8 |
| AnalysisDesigner | AnalysisDesigner.controls / AnalysisDesigner.treatment 这个对象描述了如何设计一个比对计算实验分析 | SMRUCC.genomics.GCModeller.Workbench.ExperimentDesigner 1.0.9762.7562 |
8 |
| DataAnalysis | the different expression analysis design | SMRUCC.genomics.GCModeller.Workbench.ExperimentDesigner 1.0.9753.40023 |
6 |
| DataAnalysis | the different expression analysis design | SMRUCC.genomics.GCModeller.Workbench.ExperimentDesigner 1.0.9762.7562 |
2 |
| DataGroup | the group view of the SampleInfo data | SMRUCC.genomics.GCModeller.Workbench.ExperimentDesigner 1.0.9753.40023 |
9 |
| DataGroup | the group view of the SampleInfo data | SMRUCC.genomics.GCModeller.Workbench.ExperimentDesigner 1.0.9762.7562 |
3 |
| DEGModel | A generic model for different expression molecule | SMRUCC.genomics.GCModeller.Workbench.ExperimentDesigner 1.0.9753.40023 |
9 |
| DEGModel | A generic model for different expression molecule | SMRUCC.genomics.GCModeller.Workbench.ExperimentDesigner 1.0.9762.7562 |
5 |
| Extensions | SMRUCC.genomics.GCModeller.Workbench.ExperimentDesigner 1.0.9753.40023 |
19 | |
| Extensions | SMRUCC.genomics.GCModeller.Workbench.ExperimentDesigner 1.0.9762.7562 |
11 | |
| IDeg | a simple abstract model for the different expression gene object | SMRUCC.genomics.GCModeller.Workbench.ExperimentDesigner 1.0.9753.40023 |
3 |
| IDeg | a simple abstract model for the different expression gene object | SMRUCC.genomics.GCModeller.Workbench.ExperimentDesigner 1.0.9762.7562 |
3 |
| SampleGroup | the analysis property of the sample data group.(样品的分组信息) | SMRUCC.genomics.GCModeller.Workbench.ExperimentDesigner 1.0.9753.40023 |
7 |
| SampleGroup | the analysis property of the sample data group.(样品的分组信息) | SMRUCC.genomics.GCModeller.Workbench.ExperimentDesigner 1.0.9762.7562 |
5 |
| SampleInfo | 一般而言,对于实验数据的分析而言,在进行数据存储的时候使用的是SampleInfo.ID属性, 而在进行数据可视化或者数据报告输出的时候,则是使用的SampleGroup.sample_name属性 作为显示的label | SMRUCC.genomics.GCModeller.Workbench.ExperimentDesigner 1.0.9753.40023 |
7 |
| SampleInfo | 一般而言,对于实验数据的分析而言,在进行数据存储的时候使用的是SampleInfo.ID属性, 而在进行数据可视化或者数据报告输出的时候,则是使用的SampleGroup.sample_name属性 作为显示的label | SMRUCC.genomics.GCModeller.Workbench.ExperimentDesigner 1.0.9762.7562 |
4 |
| SampleNames | Sample names helper | SMRUCC.genomics.GCModeller.Workbench.ExperimentDesigner 1.0.9753.40023 |
2 |
| SampleNames | Sample names helper | SMRUCC.genomics.GCModeller.Workbench.ExperimentDesigner 1.0.9762.7562 |
2 |
| SampleTuple | Using for paired sample T-test | SMRUCC.genomics.GCModeller.Workbench.ExperimentDesigner 1.0.9753.40023 |
4 |
| SampleTuple | Using for paired sample T-test | SMRUCC.genomics.GCModeller.Workbench.ExperimentDesigner 1.0.9762.7562 |
4 |
SMRUCC.genomics.GCModeller.Workbench.Knowledge_base.NCBI
| Type | Summary | Package | Members |
|---|---|---|---|
| Citation | SMRUCC.genomics.GCModeller.Workbench.Knowledge_base.NCBI 3.0.9753.40023 |
16 | |
| Citation | SMRUCC.genomics.GCModeller.Workbench.Knowledge_base.NCBI 3.0.9762.7562 |
16 | |
| PlainTextParser | parse the pubmed database file in plaintext format | SMRUCC.genomics.GCModeller.Workbench.Knowledge_base.NCBI 3.0.9753.40023 |
2 |
| PlainTextParser | parse the pubmed database file in plaintext format | SMRUCC.genomics.GCModeller.Workbench.Knowledge_base.NCBI 3.0.9762.7562 |
2 |
SMRUCC.genomics.GCModeller.Workbench.Knowledge_base.NCBI.BITS
| Type | Summary | Package | Members |
|---|---|---|---|
| BookPartWrapper | the xml definition of the ncbi book data | SMRUCC.genomics.GCModeller.Workbench.Knowledge_base.NCBI 3.0.9753.40023 |
9 |
| BookPartWrapper | the xml definition of the ncbi book data | SMRUCC.genomics.GCModeller.Workbench.Knowledge_base.NCBI 3.0.9762.7562 |
9 |
| MixedCitation | SMRUCC.genomics.GCModeller.Workbench.Knowledge_base.NCBI 3.0.9753.40023 |
14 | |
| MixedCitation | SMRUCC.genomics.GCModeller.Workbench.Knowledge_base.NCBI 3.0.9762.7562 |
4 |
SMRUCC.genomics.GCModeller.Workbench.Knowledge_base.NCBI.MeSH
| Type | Summary | Package | Members |
|---|---|---|---|
| DescriptorRecord | the mesh term record | SMRUCC.genomics.GCModeller.Workbench.Knowledge_base.NCBI 3.0.9753.40023 |
16 |
| DescriptorRecord | the mesh term record | SMRUCC.genomics.GCModeller.Workbench.Knowledge_base.NCBI 3.0.9762.7562 |
16 |
| DescriptorRecordSet | the mesh Descriptor Record Set xml file | SMRUCC.genomics.GCModeller.Workbench.Knowledge_base.NCBI 3.0.9753.40023 |
4 |
| DescriptorRecordSet | the mesh Descriptor Record Set xml file | SMRUCC.genomics.GCModeller.Workbench.Knowledge_base.NCBI 3.0.9762.7562 |
4 |
SMRUCC.genomics.GCModeller.Workbench.Knowledge_base.NCBI.MeSH.Tree
| Type | Summary | Package | Members |
|---|---|---|---|
| MeshCategory | MeSH Tree Structures MeSH descriptors are organized in 16 categories: category A for anatomic terms, category B for organisms, C for diseases, D for drugs and chemicals, etc. | SMRUCC.genomics.GCModeller.Workbench.Knowledge_base.NCBI 3.0.9753.40023 |
34 |
| MeshCategory | MeSH Tree Structures MeSH descriptors are organized in 16 categories: category A for anatomic terms, category B for organisms, C for diseases, D for drugs and chemicals, etc. | SMRUCC.genomics.GCModeller.Workbench.Knowledge_base.NCBI 3.0.9762.7562 |
34 |
| Reader | SMRUCC.genomics.GCModeller.Workbench.Knowledge_base.NCBI 3.0.9753.40023 |
4 | |
| Reader | SMRUCC.genomics.GCModeller.Workbench.Knowledge_base.NCBI 3.0.9762.7562 |
4 | |
| Term | the mesh tree | SMRUCC.genomics.GCModeller.Workbench.Knowledge_base.NCBI 3.0.9753.40023 |
2 |
| Term | the mesh tree | SMRUCC.genomics.GCModeller.Workbench.Knowledge_base.NCBI 3.0.9762.7562 |
2 |
SMRUCC.genomics.GCModeller.Workbench.Knowledge_base.NCBI.PubMed
| Type | Summary | Package | Members |
|---|---|---|---|
| MedlineCitation | MEDLINE®/PubMed® Journal Article Citation Format | SMRUCC.genomics.GCModeller.Workbench.Knowledge_base.NCBI 3.0.9753.40023 |
13 |
| MedlineCitation | MEDLINE®/PubMed® Journal Article Citation Format | SMRUCC.genomics.GCModeller.Workbench.Knowledge_base.NCBI 3.0.9762.7562 |
11 |
| PubmedArticle | PubMed® comprises more than 36 million citations for biomedical literature from MEDLINE, life science journals, and online books. | SMRUCC.genomics.GCModeller.Workbench.Knowledge_base.NCBI 3.0.9753.40023 |
12 |
| PubmedArticle | PubMed® comprises more than 36 million citations for biomedical literature from MEDLINE, life science journals, and online books. | SMRUCC.genomics.GCModeller.Workbench.Knowledge_base.NCBI 3.0.9762.7562 |
10 |
| PubmedArticleSet | SMRUCC.genomics.GCModeller.Workbench.Knowledge_base.NCBI 3.0.9753.40023 |
3 | |
| PubmedArticleSet | SMRUCC.genomics.GCModeller.Workbench.Knowledge_base.NCBI 3.0.9762.7562 |
3 | |
| PubMedServicesExtensions | SMRUCC.genomics.GCModeller.Workbench.Knowledge_base.NCBI 3.0.9753.40023 |
4 | |
| PubMedServicesExtensions | SMRUCC.genomics.GCModeller.Workbench.Knowledge_base.NCBI 3.0.9762.7562 |
4 | |
| PubMedTextTable | A publication record in pubmed database, export from pubchem database export in csv/json list format | SMRUCC.genomics.GCModeller.Workbench.Knowledge_base.NCBI 3.0.9753.40023 |
21 |
| PubMedTextTable | A publication record in pubmed database, export from pubchem database export in csv/json list format | SMRUCC.genomics.GCModeller.Workbench.Knowledge_base.NCBI 3.0.9762.7562 |
21 |
SMRUCC.genomics.GCModeller.Workbench.Knowledge_base.NCBI.PubMedFetcher
| Type | Summary | Package | Members |
|---|---|---|---|
| PubMedArticle | 单篇 PubMed 文献的完整信息。 | SMRUCC.genomics.GCModeller.Workbench.Knowledge_base.NCBI 3.0.9753.40023 |
19 |
| PubMedArticle | 单篇 PubMed 文献的完整信息。 | SMRUCC.genomics.GCModeller.Workbench.Knowledge_base.NCBI 3.0.9762.7562 |
19 |
| PubMedEUtilities | NCBI E-utilities 客户端:检索 PubMed、获取摘要、下载 PMC 全文。 线程安全;内部使用信号量做速率限制。 | SMRUCC.genomics.GCModeller.Workbench.Knowledge_base.NCBI 3.0.9753.40023 |
18 |
| PubMedEUtilities | NCBI E-utilities 客户端:检索 PubMed、获取摘要、下载 PMC 全文。 线程安全;内部使用信号量做速率限制。 | SMRUCC.genomics.GCModeller.Workbench.Knowledge_base.NCBI 3.0.9762.7562 |
18 |
| SearchOptions | 检索选项。 | SMRUCC.genomics.GCModeller.Workbench.Knowledge_base.NCBI 3.0.9753.40023 |
9 |
| SearchOptions | 检索选项。 | SMRUCC.genomics.GCModeller.Workbench.Knowledge_base.NCBI 3.0.9762.7562 |
9 |
SMRUCC.genomics.InteractionModel
| Type | Summary | Package | Members |
|---|---|---|---|
| Interaction | 默认的的相互作用的方向为从A到B | SMRUCC.genomics.InteractionModel 1.0.9753.40023 |
3 |
| Interaction | 默认的的相互作用的方向为从A到B | SMRUCC.genomics.InteractionModel 1.0.9762.7562 |
3 |
| RelationshipScore | 带有分值的互做关系 | SMRUCC.genomics.InteractionModel 1.0.9753.40023 |
2 |
| RelationshipScore | 带有分值的互做关系 | SMRUCC.genomics.InteractionModel 1.0.9762.7562 |
2 |
SMRUCC.genomics.InteractionModel.Regulon
| Type | Summary | Package | Members |
|---|---|---|---|
| IRegulationDatabase | 用于生成调控数据的数据库的接口 | SMRUCC.genomics.InteractionModel 1.0.9753.40023 |
4 |
| IRegulationDatabase | 用于生成调控数据的数据库的接口 | SMRUCC.genomics.InteractionModel 1.0.9762.7562 |
4 |
| IRegulatorRegulation | 调控作用的抽象 | SMRUCC.genomics.InteractionModel 1.0.9753.40023 |
2 |
| IRegulatorRegulation | 调控作用的抽象 | SMRUCC.genomics.InteractionModel 1.0.9762.7562 |
2 |
| IRegulon | Regulon的模型的抽象 | SMRUCC.genomics.InteractionModel 1.0.9753.40023 |
2 |
| IRegulon | Regulon的模型的抽象 | SMRUCC.genomics.InteractionModel 1.0.9762.7562 |
2 |
| ISpecificRegulation | 1对1的特定的基因对基因的调控模型 | SMRUCC.genomics.InteractionModel 1.0.9753.40023 |
2 |
| ISpecificRegulation | 1对1的特定的基因对基因的调控模型 | SMRUCC.genomics.InteractionModel 1.0.9762.7562 |
2 |
| RegulationModel | SMRUCC.genomics.InteractionModel 1.0.9753.40023 |
3 | |
| RegulationModel | SMRUCC.genomics.InteractionModel 1.0.9762.7562 |
3 | |
| Regulon | SMRUCC.genomics.InteractionModel 1.0.9762.7562 |
3 |
SMRUCC.genomics.Interops.NBCR.MEME_Suite
| Type | Summary | Package | Members |
|---|---|---|---|
| Extensions | SMRUCC.genomics.Interops.NBCR.MEME_Suite.Documents 1.0.9753.40023 |
3 | |
| Extensions | SMRUCC.genomics.Interops.NBCR.MEME_Suite.Documents 1.0.9762.7562 |
3 | |
| MemeWriter | SMRUCC.genomics.Interops.NBCR.MEME_Suite.Documents 1.0.9753.40023 |
4 | |
| MemeWriter | SMRUCC.genomics.Interops.NBCR.MEME_Suite.Documents 1.0.9762.7562 |
4 | |
| ModuleMotif | 相当于Regulon信息 | SMRUCC.genomics.Interops.NBCR.MEME_Suite.Documents 1.0.9753.40023 |
11 |
| ModuleMotif | 相当于Regulon信息 | SMRUCC.genomics.Interops.NBCR.MEME_Suite.Documents 1.0.9762.7562 |
11 |
| ProbabilityExtensions | 扩展方法模块 | SMRUCC.genomics.Interops.NBCR.MEME_Suite.Documents 1.0.9753.40023 |
1 |
| ProbabilityExtensions | 扩展方法模块 | SMRUCC.genomics.Interops.NBCR.MEME_Suite.Documents 1.0.9762.7562 |
1 |
SMRUCC.genomics.Interops.NBCR.MEME_Suite.ComponentModel
| Type | Summary | Package | Members |
|---|---|---|---|
| MotifPM | Motif序列之中的一个位点 | SMRUCC.genomics.Interops.NBCR.MEME_Suite.Documents 1.0.9753.40023 |
7 |
| MotifPM | Motif序列之中的一个位点 | SMRUCC.genomics.Interops.NBCR.MEME_Suite.Documents 1.0.9762.7562 |
7 |
| MotifSite | Motif的Csv文件输出格式之1 | SMRUCC.genomics.Interops.NBCR.MEME_Suite.Documents 1.0.9753.40023 |
6 |
| MotifSite | Motif的Csv文件输出格式之1 | SMRUCC.genomics.Interops.NBCR.MEME_Suite.Documents 1.0.9762.7562 |
6 |
SMRUCC.genomics.Interops.NBCR.MEME_Suite.DocumentFormat.MAST.HTML
| Type | Summary | Package | Members |
|---|---|---|---|
| DocumentParser | SMRUCC.genomics.Interops.NBCR.MEME_Suite.Documents 1.0.9753.40023 |
5 | |
| DocumentParser | SMRUCC.genomics.Interops.NBCR.MEME_Suite.Documents 1.0.9762.7562 |
5 | |
| HtmlParser | SMRUCC.genomics.Interops.NBCR.MEME_Suite.Documents 1.0.9753.40023 |
2 | |
| HtmlParser | SMRUCC.genomics.Interops.NBCR.MEME_Suite.Documents 1.0.9762.7562 |
2 |
SMRUCC.genomics.Interops.NBCR.MEME_Suite.DocumentFormat.MEME.HTML
| Type | Summary | Package | Members |
|---|---|---|---|
| MEMEHtml | SMRUCC.genomics.Interops.NBCR.MEME_Suite.Documents 1.0.9753.40023 |
3 | |
| MEMEHtml | SMRUCC.genomics.Interops.NBCR.MEME_Suite.Documents 1.0.9762.7562 |
3 | |
| MEMEOutput | 经过匹配MEME结果和MAST结果之后得到的一条Motif记录 | SMRUCC.genomics.Interops.NBCR.MEME_Suite.Documents 1.0.9753.40023 |
8 |
| MEMEOutput | 经过匹配MEME结果和MAST结果之后得到的一条Motif记录 | SMRUCC.genomics.Interops.NBCR.MEME_Suite.Documents 1.0.9762.7562 |
8 |
| Motif | SMRUCC.genomics.Interops.NBCR.MEME_Suite.Documents 1.0.9753.40023 |
10 | |
| Motif | SMRUCC.genomics.Interops.NBCR.MEME_Suite.Documents 1.0.9762.7562 |
10 | |
| ParserAPI | SMRUCC.genomics.Interops.NBCR.MEME_Suite.Documents 1.0.9753.40023 |
3 | |
| ParserAPI | SMRUCC.genomics.Interops.NBCR.MEME_Suite.Documents 1.0.9762.7562 |
3 | |
| SiteInfo | 向某一个目标Motif所做出贡献的序列对象 | SMRUCC.genomics.Interops.NBCR.MEME_Suite.Documents 1.0.9753.40023 |
5 |
| SiteInfo | 向某一个目标Motif所做出贡献的序列对象 | SMRUCC.genomics.Interops.NBCR.MEME_Suite.Documents 1.0.9762.7562 |
5 |
SMRUCC.genomics.Interops.NBCR.MEME_Suite.DocumentFormat.MEME.LDM
| Type | Summary | Package | Members |
|---|---|---|---|
| Motif | Motif data from the text format output file of the meme program. | SMRUCC.genomics.Interops.NBCR.MEME_Suite.Documents 1.0.9753.40023 |
10 |
| Motif | Motif data from the text format output file of the meme program. | SMRUCC.genomics.Interops.NBCR.MEME_Suite.Documents 1.0.9762.7562 |
10 |
| Site | 生成Motif位点的序列 | SMRUCC.genomics.Interops.NBCR.MEME_Suite.Documents 1.0.9753.40023 |
6 |
| Site | 生成Motif位点的序列 | SMRUCC.genomics.Interops.NBCR.MEME_Suite.Documents 1.0.9762.7562 |
6 |
SMRUCC.genomics.Interops.NBCR.MEME_Suite.DocumentFormat.MEME.Text
| Type | Summary | Package | Members |
|---|---|---|---|
| MEME_TEXT | MEME - Motif discovery tool | SMRUCC.genomics.Interops.NBCR.MEME_Suite.Documents 1.0.9753.40023 |
9 |
| MEME_TEXT | MEME - Motif discovery tool | SMRUCC.genomics.Interops.NBCR.MEME_Suite.Documents 1.0.9762.7562 |
9 |
| SiteLength | 解析输入的位点的原始序列的长度可能会比较麻烦 | SMRUCC.genomics.Interops.NBCR.MEME_Suite.Documents 1.0.9753.40023 |
0 |
| SiteLength | 解析输入的位点的原始序列的长度可能会比较麻烦 | SMRUCC.genomics.Interops.NBCR.MEME_Suite.Documents 1.0.9762.7562 |
0 |
SMRUCC.genomics.Interops.NBCR.MEME_Suite.DocumentFormat.TomTOM
SMRUCC.genomics.Interops.NBCR.MEME_Suite.DocumentFormat.XmlOutput.MAST
| Type | Summary | Package | Members |
|---|---|---|---|
| Correlation | for n > 1 motifs there should be (n * (n - 1)) / 2 correlations, obviously there are none for only 1 motif | SMRUCC.genomics.Interops.NBCR.MEME_Suite.Documents 1.0.9753.40023 |
3 |
| Correlation | for n > 1 motifs there should be (n * (n - 1)) / 2 correlations, obviously there are none for only 1 motif | SMRUCC.genomics.Interops.NBCR.MEME_Suite.Documents 1.0.9762.7562 |
3 |
| DbProperty | the database tags are expected to be ordered in file specification order | SMRUCC.genomics.Interops.NBCR.MEME_Suite.Documents 1.0.9753.40023 |
9 |
| DbProperty | the database tags are expected to be ordered in file specification order | SMRUCC.genomics.Interops.NBCR.MEME_Suite.Documents 1.0.9762.7562 |
9 |
| HitResult | gap, while superfluous, makes creating motif diagrams for the text version much easier when using XSLT | SMRUCC.genomics.Interops.NBCR.MEME_Suite.Documents 1.0.9753.40023 |
11 |
| HitResult | gap, while superfluous, makes creating motif diagrams for the text version much easier when using XSLT | SMRUCC.genomics.Interops.NBCR.MEME_Suite.Documents 1.0.9762.7562 |
11 |
| MAST | mast.xml | SMRUCC.genomics.Interops.NBCR.MEME_Suite.Documents 1.0.9753.40023 |
8 |
| MAST | mast.xml | SMRUCC.genomics.Interops.NBCR.MEME_Suite.Documents 1.0.9762.7562 |
1 |
| Motif | SMRUCC.genomics.Interops.NBCR.MEME_Suite.Documents 1.0.9753.40023 |
9 | |
| Motif | SMRUCC.genomics.Interops.NBCR.MEME_Suite.Documents 1.0.9762.7562 |
9 | |
| MotifSite | SMRUCC.genomics.Interops.NBCR.MEME_Suite.Documents 1.0.9753.40023 |
8 | |
| MotifSite | SMRUCC.genomics.Interops.NBCR.MEME_Suite.Documents 1.0.9762.7562 |
8 | |
| Score | SMRUCC.genomics.Interops.NBCR.MEME_Suite.Documents 1.0.9753.40023 |
3 | |
| Score | SMRUCC.genomics.Interops.NBCR.MEME_Suite.Documents 1.0.9762.7562 |
3 | |
| Segment | within each seg the hit tags are expected to be ordered by pos ascending and then forward strand first | SMRUCC.genomics.Interops.NBCR.MEME_Suite.Documents 1.0.9753.40023 |
5 |
| Segment | within each seg the hit tags are expected to be ordered by pos ascending and then forward strand first | SMRUCC.genomics.Interops.NBCR.MEME_Suite.Documents 1.0.9762.7562 |
5 |
| SequenceDescript | the sequence tags are expected to be ordered by best combined p-value (of contained score tags) ascending | SMRUCC.genomics.Interops.NBCR.MEME_Suite.Documents 1.0.9753.40023 |
10 |
| SequenceDescript | the sequence tags are expected to be ordered by best combined p-value (of contained score tags) ascending | SMRUCC.genomics.Interops.NBCR.MEME_Suite.Documents 1.0.9762.7562 |
10 |
| SequenceList | SMRUCC.genomics.Interops.NBCR.MEME_Suite.Documents 1.0.9753.40023 |
4 | |
| SequenceList | SMRUCC.genomics.Interops.NBCR.MEME_Suite.Documents 1.0.9762.7562 |
4 |
SMRUCC.genomics.Interops.NBCR.MEME_Suite.DocumentFormat.XmlOutput.MEME
| Type | Summary | Package | Members |
|---|---|---|---|
| MEMEXml | <MEME version="4.10.2" release="Thu Sep 03 15:00:54 2015 -0700">. | SMRUCC.genomics.Interops.NBCR.MEME_Suite.Documents 1.0.9753.40023 |
7 |
| MEMEXml | <MEME version="4.10.2" release="Thu Sep 03 15:00:54 2015 -0700">. | SMRUCC.genomics.Interops.NBCR.MEME_Suite.Documents 1.0.9762.7562 |
2 |
| Model | Model elements | SMRUCC.genomics.Interops.NBCR.MEME_Suite.Documents 1.0.9753.40023 |
28 |
| Model | Model elements | SMRUCC.genomics.Interops.NBCR.MEME_Suite.Documents 1.0.9762.7562 |
28 |
| Motif | Motif elements | SMRUCC.genomics.Interops.NBCR.MEME_Suite.Documents 1.0.9753.40023 |
18 |
| Motif | Motif elements | SMRUCC.genomics.Interops.NBCR.MEME_Suite.Documents 1.0.9762.7562 |
14 |
| TrainingSet | Training-set elements | SMRUCC.genomics.Interops.NBCR.MEME_Suite.Documents 1.0.9753.40023 |
8 |
| TrainingSet | Training-set elements | SMRUCC.genomics.Interops.NBCR.MEME_Suite.Documents 1.0.9762.7562 |
8 |
SMRUCC.genomics.Interops.NBCR.MEME_Suite.DocumentFormat.XmlOutput.MEME.Motif
| Type | Summary | Package | Members |
|---|---|---|---|
| ContributingSite | SMRUCC.genomics.Interops.NBCR.MEME_Suite.Documents 1.0.9753.40023 |
8 | |
| ContributingSite | SMRUCC.genomics.Interops.NBCR.MEME_Suite.Documents 1.0.9762.7562 |
8 |
SMRUCC.genomics.Interops.NCBI.Extensions
| Type | Summary | Package | Members |
|---|---|---|---|
| DiamondAnnotation | 代表 DIAMOND BLASTP 结果文件 (.m8) 中的一行记录 | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
12 |
| DiamondAnnotation | 代表 DIAMOND BLASTP 结果文件 (.m8) 中的一行记录 | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
12 |
| DiamondM8Parser | 用于解析 DIAMOND .m8 格式文件的工具类 | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
2 |
| DiamondM8Parser | 用于解析 DIAMOND .m8 格式文件的工具类 | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
2 |
| Extensions | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
1 | |
| Extensions | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
1 | |
| TermStreamAssignment | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
2 | |
| TermStreamAssignment | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
2 |
SMRUCC.genomics.Interops.NCBI.Extensions.LocalBLAST.Application
SMRUCC.genomics.Interops.NCBI.Extensions.LocalBLAST.Application.BBH
| Type | Summary | Package | Members |
|---|---|---|---|
| BBHParser | BBH解析的时候,是不会区分方向的,所以只要保证编号是一致的就会解析出结果,这个不需要担心 | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
10 |
| BBHParser | BBH解析的时候,是不会区分方向的,所以只要保证编号是一致的就会解析出结果,这个不需要担心 | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
10 |
| BestHit | A single direction best hit. | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
3 |
| BestHit | A single direction best hit. | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
3 |
| BHR | BHR(Bi-directional hit rate) http://www.genome.jp/tools/kaas/help.html 把要注释的genome作为query,和KEGG数据库中的reference进行blast比对,输出的结果(E>10)称为 homolog。 同时把reference作为query,把genome作为r… | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
4 |
| BHR | BHR(Bi-directional hit rate) http://www.genome.jp/tools/kaas/help.html 把要注释的genome作为query,和KEGG数据库中的reference进行blast比对,输出的结果(E>10)称为 homolog。 同时把reference作为query,把genome作为r… | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
4 |
| BHRHit | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
1 | |
| BHRHit | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
1 | |
| BiDirectionalBesthit | Best hit result from the binary direction blastp result. | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
5 |
| BiDirectionalBesthit | Best hit result from the binary direction blastp result. | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
5 |
| KOAssignmentCandidate | 用于存储一个查询基因的KO分配候选 | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
4 |
| KOAssignmentCandidate | 用于存储一个查询基因的KO分配候选 | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
4 |
| KOAssignmentScore | KEGG KAAS Assignment Score (S_KO) 计算模块 | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
7 |
| KOAssignmentScore | KEGG KAAS Assignment Score (S_KO) 计算模块 | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
7 |
| Levels | The blast result alignment identify levels | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
8 |
| Levels | The blast result alignment identify levels | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
8 |
SMRUCC.genomics.Interops.NCBI.Extensions.LocalBLAST.Application.BBH.Abstract
| Type | Summary | Package | Members |
|---|---|---|---|
| BBHIndex | 可以使用这个对象来表述I_BlastQueryHit的所有派生类 | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
3 |
| BBHIndex | 可以使用这个对象来表述I_BlastQueryHit的所有派生类 | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
3 |
| Extensions | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
1 | |
| Extensions | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
1 | |
| I_BlastQueryHit | I_BlastQueryHit.QueryName and I_BlastQueryHit.HitName | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
5 |
| I_BlastQueryHit | I_BlastQueryHit.QueryName and I_BlastQueryHit.HitName | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
5 |
SMRUCC.genomics.Interops.NCBI.Extensions.LocalBLAST.Application.BBH.BiDirectionalBesthit
| Type | Summary | Package | Members |
|---|---|---|---|
| GetDescriptionHandle | Get gene function description from the specific locus_tag | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
3 |
| GetDescriptionHandle | Get gene function description from the specific locus_tag | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
3 |
SMRUCC.genomics.Interops.NCBI.Extensions.LocalBLAST.Application.NtMapping
| Type | Summary | Package | Members |
|---|---|---|---|
| BlastnMapping | Blastn Mapping for fastaq | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
11 |
| BlastnMapping | Blastn Mapping for fastaq | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
11 |
| MapsAPI | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
9 | |
| MapsAPI | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
9 |
SMRUCC.genomics.Interops.NCBI.Extensions.LocalBLAST.BLASTOutput
| Type | Summary | Package | Members |
|---|---|---|---|
| IBlastOutput | Blast程序结果对外输出的统一接口类型对象 | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
6 |
| IBlastOutput | Blast程序结果对外输出的统一接口类型对象 | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
5 |
SMRUCC.genomics.Interops.NCBI.Extensions.LocalBLAST.BLASTOutput.BlastPlus
| Type | Summary | Package | Members |
|---|---|---|---|
| BlastnHit | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
2 | |
| BlastnHit | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
2 | |
| BlastpOutputReader | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
4 | |
| BlastpOutputReader | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
4 | |
| FragmentHit | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
7 | |
| FragmentHit | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
4 | |
| ParameterSummary | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
13 | |
| ParameterSummary | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
13 | |
| Parser | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
17 | |
| Parser | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
14 | |
| Query | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
12 | |
| Query | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
12 | |
| SubjectHit | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
9 | |
| SubjectHit | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
7 | |
| v228 | 2.2.28版本的BLAST+程序的日志输出文件 | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
12 |
| v228 | 2.2.28版本的BLAST+程序的日志输出文件 | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
7 |
SMRUCC.genomics.Interops.NCBI.Extensions.LocalBLAST.BLASTOutput.BlastPlus.BlastX
| Type | Summary | Package | Members |
|---|---|---|---|
| Extensions | Extensions API for blastX output table | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
1 |
| Extensions | Extensions API for blastX output table | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
1 |
| OutputReader | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
4 | |
| OutputReader | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
4 | |
| v228_BlastX | The output result data model of the blastx output text file. | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
1 |
| v228_BlastX | The output result data model of the blastx output text file. | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
1 |
SMRUCC.genomics.Interops.NCBI.Extensions.LocalBLAST.BLASTOutput.BlastPlus.BlastX.Components
| Type | Summary | Package | Members |
|---|---|---|---|
| HitFragment | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
7 | |
| HitFragment | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
3 | |
| Query | The blastx query input result data. | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
4 |
| Query | The blastx query input result data. | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
4 |
| Subject | The hits result in target protein sequence database. | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
5 |
| Subject | The hits result in target protein sequence database. | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
5 |
SMRUCC.genomics.Interops.NCBI.Extensions.LocalBLAST.BLASTOutput.BlastPlus.Parser
| Type | Summary | Package | Members |
|---|---|---|---|
| ReaderTypes | + BLASTP + BLASTN + BLASTX | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
3 |
| ReaderTypes | + BLASTP + BLASTN + BLASTX | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
3 |
SMRUCC.genomics.Interops.NCBI.Extensions.LocalBLAST.BLASTOutput.ComponentModel
| Type | Summary | Package | Members |
|---|---|---|---|
| BlastXScore | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
4 | |
| BlastXScore | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
1 | |
| HitSegment | 表示一个Query和Subject匹配上的序列片段相对应的位置,即HSP高分区片段 | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
5 |
| HitSegment | 表示一个Query和Subject匹配上的序列片段相对应的位置,即HSP高分区片段 | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
5 |
| Parameter | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
11 | |
| Parameter | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
11 | |
| Score | Query和Subject之间的比对得分 | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
17 |
| Score | Query和Subject之间的比对得分 | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
4 |
| Segment | 匹配上的序列片段 | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
0 |
| Segment | 匹配上的序列片段 | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
0 |
SMRUCC.genomics.Interops.NCBI.Extensions.LocalBLAST.BLASTOutput.Views
SMRUCC.genomics.Interops.NCBI.Extensions.LocalBLAST.BLASTOutput.XmlFile
| Type | Summary | Package | Members |
|---|---|---|---|
| BlastOutput | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
11 | |
| BlastOutput | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
11 |
SMRUCC.genomics.Interops.NCBI.Extensions.LocalBLAST.BLASTOutput.XmlFile.Hits
SMRUCC.genomics.Interops.NCBI.Extensions.LocalBLAST.InteropService
| Type | Summary | Package | Members |
|---|---|---|---|
| Executable | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
5 | |
| Executable | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
4 | |
| InitializeMethods | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
4 | |
| InitializeMethods | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
2 | |
| InitializeParameter | 对本地BLAST外部命令的初始化参数 | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
4 |
| InitializeParameter | 对本地BLAST外部命令的初始化参数 | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
4 |
| InteropService | InteropService to the local blast program.(对本地BLAST程序的中间服务) | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
8 |
| InteropService | InteropService to the local blast program.(对本地BLAST程序的中间服务) | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
8 |
| LocalBlastProgramGroup | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
7 | |
| LocalBlastProgramGroup | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
4 | |
| Operation | 通用化操作 | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
8 |
| Operation | 通用化操作 | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
2 |
SMRUCC.genomics.Interops.NCBI.Extensions.LocalBLAST.InteropService.InteropService
| Type | Summary | Package | Members |
|---|---|---|---|
| AlignmentViewOptions | Alignment view options.(比对输出视图的选项) | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
24 |
| AlignmentViewOptions | Alignment view options.(比对输出视图的选项) | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
24 |
SMRUCC.genomics.Interops.NCBI.Extensions.LocalBLAST.Programs
| Type | Summary | Package | Members |
|---|---|---|---|
| BLASTPlus | The <space> char can not exists in the input fasta file path, or blast+ program will run into an error. | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
13 |
| BLASTPlus | The <space> char can not exists in the input fasta file path, or blast+ program will run into an error. | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
7 |
| LocalBLAST | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
52 | |
| LocalBLAST | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
48 |
SMRUCC.genomics.Interops.NCBI.Extensions.LocalBLAST.Programs.CLIArgumentsBuilder
| Type | Summary | Package | Members |
|---|---|---|---|
| BlastnOptionalArguments | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
44 | |
| BlastnOptionalArguments | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
42 | |
| BlastpOptionalArguments | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
41 | |
| BlastpOptionalArguments | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
41 |
SMRUCC.genomics.Interops.NCBI.Extensions.NCBIBlastResult
| Type | Summary | Package | Members |
|---|---|---|---|
| AlignmentTableParser | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
6 | |
| AlignmentTableParser | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
5 | |
| BBHMetaAPI | SpeciesBesthit -> AlignmentTable | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
1 |
| BBHMetaAPI | SpeciesBesthit -> AlignmentTable | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
1 |
SMRUCC.genomics.Interops.NCBI.Extensions.NCBIBlastResult.WebBlast
| Type | Summary | Package | Members |
|---|---|---|---|
| AlignmentTable | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
10 | |
| AlignmentTable | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
7 | |
| Extensions | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
4 | |
| Extensions | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
2 | |
| HitRecord | 在目标基因组之上的blast hit的结果 | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
19 |
| HitRecord | 在目标基因组之上的blast hit的结果 | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
19 |
| HitTableParser | 从NCBI网站之中下载的比对结果的表格文本文件之中进行数据的解析操作 | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
3 |
| HitTableParser | 从NCBI网站之中下载的比对结果的表格文本文件之中进行数据的解析操作 | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
3 |
SMRUCC.genomics.Interops.NCBI.Extensions.Pipeline
| Type | Summary | Package | Members |
|---|---|---|---|
| Extensions | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
2 | |
| Extensions | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
2 | |
| GenomeVector | 基因组代谢酶注释结果 | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
8 |
| GenomeVector | 基因组代谢酶注释结果 | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
7 |
| KOAssignment | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
4 | |
| KOAssignment | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
4 | |
| RankTerm | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
2 | |
| RankTerm | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
2 |
SMRUCC.genomics.Interops.NCBI.Extensions.Pipeline.COG
| Type | Summary | Package | Members |
|---|---|---|---|
| COG2014 | ftp://ftp.ncbi.nih.gov/pub/COG/COG2020/data | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
1 |
| COG2014 | ftp://ftp.ncbi.nih.gov/pub/COG/COG2020/data | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
1 |
| COGsUtils | Cog分类操作 | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
2 |
| COGsUtils | Cog分类操作 | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
2 |
| MGACOG | COG output data from http://weizhong-lab.ucsd.edu/metagenomic-analysis/server/ | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
0 |
| MGACOG | COG output data from http://weizhong-lab.ucsd.edu/metagenomic-analysis/server/ | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
0 |
| MyvaCOG | Protein cog category using myva database. | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
3 |
| MyvaCOG | Protein cog category using myva database. | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
3 |
SMRUCC.genomics.Interops.NCBI.Extensions.Pipeline.COG.Whog
| Type | Summary | Package | Members |
|---|---|---|---|
| Assigner | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
1 | |
| Assigner | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
1 | |
| WhogRepository | Cog Category | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
7 |
| WhogRepository | Cog Category | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
3 |
SMRUCC.genomics.Interops.NCBI.Extensions.Tasks.Models
| Type | Summary | Package | Members |
|---|---|---|---|
| Hit | 和Query的一个比对结果 | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
8 |
| Hit | 和Query的一个比对结果 | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
2 |
| HitCollection | A collection of hits for the target query protein. | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
9 |
| HitCollection | A collection of hits for the target query protein. | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
6 |
| SpeciesBesthit | 元数据Xml文件 | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9753.40023 |
15 |
| SpeciesBesthit | 元数据Xml文件 | SMRUCC.genomics.Interops.NCBI.Extensions 1.0.9762.7562 |
10 |
SMRUCC.genomics.Interops.NCBI.Extensions.Web
SMRUCC.genomics.Interops.Visualize.Phylip
| Type | Summary | Package | Members |
|---|---|---|---|
| CRISPRPhylogeneticTree | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9753.40023 |
4 | |
| CRISPRPhylogeneticTree | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9762.7562 |
4 | |
| PhylipInvoker | Phylip的命令行程序编程接口 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9753.40023 |
3 |
| PhylipInvoker | Phylip的命令行程序编程接口 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9762.7562 |
3 |
| ShellScriptAPI | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9753.40023 |
7 | |
| ShellScriptAPI | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9762.7562 |
7 | |
| TreeDrawing | 进化树绘制门面:创建 GDI+ 画布 → 计算布局(TreeLayoutEngine)→ 渲染(TreeRenderer)→ 返回图像。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9753.40023 |
6 |
| TreeDrawing | 进化树绘制门面:创建 GDI+ 画布 → 计算布局(TreeLayoutEngine)→ 渲染(TreeRenderer)→ 返回图像。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9762.7562 |
6 |
SMRUCC.genomics.Interops.Visualize.Phylip.Evolution
| Type | Summary | Package | Members |
|---|---|---|---|
| EvolutionAlgorithm | 进化树构建算法的类型 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9753.40023 |
10 |
| EvolutionAlgorithm | 进化树构建算法的类型 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9762.7562 |
10 |
| EvolutionAPI | 进化树构建算法对外暴露的统一 API:串联“FASTA/比对 → 位点矩阵 / 距离矩阵 → 建树 → bootstrap 检验”的完整工作流。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9753.40023 |
8 |
| EvolutionAPI | 进化树构建算法对外暴露的统一 API:串联“FASTA/比对 → 位点矩阵 / 距离矩阵 → 建树 → bootstrap 检验”的完整工作流。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9762.7562 |
8 |
| EvolutionOptions | 建树算法的通用参数。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9753.40023 |
8 |
| EvolutionOptions | 建树算法的通用参数。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9762.7562 |
8 |
| TreeBuilder | 统一的建树入口:根据算法名称分派到对应的算法模块。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9753.40023 |
2 |
| TreeBuilder | 统一的建树入口:根据算法名称分派到对应的算法模块。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9762.7562 |
2 |
SMRUCC.genomics.Interops.Visualize.Phylip.Evolution.Bayesian
| Type | Summary | Package | Members |
|---|---|---|---|
| BayesianInference | 贝叶斯推断(BI):计算整棵树(以及模型参数)在数据条件下的后验分布 P(τ, v, θ | D) ∝ P(D | τ, v, θ) P(τ, v, θ) 由于后验分布没有解析解,使用 Metropolis-Hastings MCMC 在参数空间中随机游走进行采样; 每个内部分支的后验概率即“包含该分支的采样树占总样本的比例”。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9753.40023 |
6 |
| BayesianInference | 贝叶斯推断(BI):计算整棵树(以及模型参数)在数据条件下的后验分布 P(τ, v, θ | D) ∝ P(D | τ, v, θ) P(τ, v, θ) 由于后验分布没有解析解,使用 Metropolis-Hastings MCMC 在参数空间中随机游走进行采样; 每个内部分支的后验概率即“包含该分支的采样树占总样本的比例”。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9762.7562 |
6 |
| BayesianResult | 贝叶斯推断(BI)结果。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9753.40023 |
8 |
| BayesianResult | 贝叶斯推断(BI)结果。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9762.7562 |
8 |
| ConvergenceDiagnostic | 贝叶斯推断的收敛诊断(基于对数似然轨迹的多链 Gelman-Rubin 统计量)。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9753.40023 |
7 |
| ConvergenceDiagnostic | 贝叶斯推断的收敛诊断(基于对数似然轨迹的多链 Gelman-Rubin 统计量)。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9762.7562 |
7 |
SMRUCC.genomics.Interops.Visualize.Phylip.Evolution.Bayesian.BayesianInference
| Type | Summary | Package | Members |
|---|---|---|---|
| ChainResult | 单条马尔可夫链的采样结果。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9753.40023 |
0 |
| ChainResult | 单条马尔可夫链的采样结果。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9762.7562 |
0 |
SMRUCC.genomics.Interops.Visualize.Phylip.Evolution.Bootstrap
| Type | Summary | Package | Members |
|---|---|---|---|
| BootstrapAnalysis | Bootstrap 支持度评估:从原始比对中有放回地随机抽取位点(保留总位点数), 用同一算法重建树,重复成百上千次;每个内部分支在重抽样树中出现的频率即其支持度 (通常 ≥95% 视为高度可信)。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9753.40023 |
1 |
| BootstrapAnalysis | Bootstrap 支持度评估:从原始比对中有放回地随机抽取位点(保留总位点数), 用同一算法重建树,重复成百上千次;每个内部分支在重抽样树中出现的频率即其支持度 (通常 ≥95% 视为高度可信)。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9762.7562 |
1 |
| BootstrapResult | Bootstrap 分析结果。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9753.40023 |
4 |
| BootstrapResult | Bootstrap 分析结果。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9762.7562 |
4 |
SMRUCC.genomics.Interops.Visualize.Phylip.Evolution.Distance
| Type | Summary | Package | Members |
|---|---|---|---|
| DistanceModel | 两两序列距离的估计模型 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9753.40023 |
6 |
| DistanceModel | 两两序列距离的估计模型 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9762.7562 |
6 |
| SequenceDistance | 由比对位点矩阵估计两两之间的进化距离,是距离法(UPGMA / NJ 以及 ML 初始树)的前置步骤。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9753.40023 |
5 |
| SequenceDistance | 由比对位点矩阵估计两两之间的进化距离,是距离法(UPGMA / NJ 以及 ML 初始树)的前置步骤。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9762.7562 |
5 |
SMRUCC.genomics.Interops.Visualize.Phylip.Evolution.MaximumLikelihood
| Type | Summary | Package | Members |
|---|---|---|---|
| AminoAcidModel | 内置的氨基酸经验替换模型 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9753.40023 |
8 |
| AminoAcidModel | 内置的氨基酸经验替换模型 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9762.7562 |
8 |
| AminoAcidModels | 内置的氨基酸经验替换模型(Dayhoff / JTT / WAG / LG)数据加载器。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9753.40023 |
6 |
| AminoAcidModels | 内置的氨基酸经验替换模型(Dayhoff / JTT / WAG / LG)数据加载器。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9762.7562 |
6 |
| DiscreteGamma | 离散 Gamma 速率异质性模型(Yang 1994):将位点间的替换速率差异用一个离散化的 Gamma 分布(形状参数 α,均值归一为 1)近似,并可附加不变位点比例 I。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9753.40023 |
6 |
| DiscreteGamma | 离散 Gamma 速率异质性模型(Yang 1994):将位点间的替换速率差异用一个离散化的 Gamma 分布(形状参数 α,均值归一为 1)近似,并可附加不变位点比例 I。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9762.7562 |
6 |
| EmpiricalAminoAcidModel | 基于经验交换率矩阵(Dayhoff / JTT / WAG / LG)的氨基酸替换模型。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9753.40023 |
5 |
| EmpiricalAminoAcidModel | 基于经验交换率矩阵(Dayhoff / JTT / WAG / LG)的氨基酸替换模型。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9762.7562 |
5 |
| FelsensteinPruning | Felsenstein 剪枝(pruning / peeling)似然计算引擎。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9753.40023 |
7 |
| FelsensteinPruning | Felsenstein 剪枝(pruning / peeling)似然计算引擎。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9762.7562 |
7 |
| GammaFunctions | 离散 Gamma 模型所需的特殊函数(Gamma 函数、正则化不完全 Gamma 函数及其反函数)。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9753.40023 |
4 |
| GammaFunctions | 离散 Gamma 模型所需的特殊函数(Gamma 函数、正则化不完全 Gamma 函数及其反函数)。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9762.7562 |
4 |
| MaximumLikelihoodResult | 最大似然法建树结果。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9753.40023 |
9 |
| MaximumLikelihoodResult | 最大似然法建树结果。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9762.7562 |
9 |
| MaximumLikelihoodTree | 最大似然法(ML):给定带分支长度的树 T 与替换模型 M,计算观测数据 D 的条件概率 P(D|T, M),并选择使似然最大的树。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9753.40023 |
6 |
| MaximumLikelihoodTree | 最大似然法(ML):给定带分支长度的树 T 与替换模型 M,计算观测数据 D 的条件概率 P(D|T, M),并选择使似然最大的树。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9762.7562 |
6 |
| ReversibleMatrixExponential | 时间可逆(time-reversible)替换模型的转移概率矩阵计算:P(t) = e^{Qt}。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9753.40023 |
4 |
| ReversibleMatrixExponential | 时间可逆(time-reversible)替换模型的转移概率矩阵计算:P(t) = e^{Qt}。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9762.7562 |
4 |
| SubstitutionModel | 替换模型抽象:描述氨基酸(或其他字符状态)随时间发生替换的概率过程。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9753.40023 |
4 |
| SubstitutionModel | 替换模型抽象:描述氨基酸(或其他字符状态)随时间发生替换的概率过程。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9762.7562 |
4 |
SMRUCC.genomics.Interops.Visualize.Phylip.Evolution.Models
| Type | Summary | Package | Members |
|---|---|---|---|
| CharacterMatrix | 已比对的多序列字符矩阵(character matrix):所有序列等长,缺失字符以 CharacterSet.Missing 编码。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9753.40023 |
15 |
| CharacterMatrix | 已比对的多序列字符矩阵(character matrix):所有序列等长,缺失字符以 CharacterSet.Missing 编码。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9762.7562 |
15 |
| CharacterSet | 离散字符状态集合:定义进化树构建算法所使用的状态字母表,以及 gap/未知字符的判定规则。 默认提供蛋白质(20 种标准氨基酸)与核酸(DNA,4 种碱基)两种字符集。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9753.40023 |
11 |
| CharacterSet | 离散字符状态集合:定义进化树构建算法所使用的状态字母表,以及 gap/未知字符的判定规则。 默认提供蛋白质(20 种标准氨基酸)与核酸(DNA,4 种碱基)两种字符集。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9762.7562 |
11 |
| DistanceMatrix | 对称的距离方阵(square distance matrix):names + Double()()。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9753.40023 |
10 |
| DistanceMatrix | 对称的距离方阵(square distance matrix):names + Double()()。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9762.7562 |
10 |
SMRUCC.genomics.Interops.Visualize.Phylip.Evolution.NeighborJoining
| Type | Summary | Package | Members |
|---|---|---|---|
| NeighborJoining | 邻接法(Neighbor-Joining, Saitou & Nei 1987):允许不同支系演化速率不等, 从星状树出发逐步合并最近邻居,输出一棵无根树。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9753.40023 |
3 |
| NeighborJoining | 邻接法(Neighbor-Joining, Saitou & Nei 1987):允许不同支系演化速率不等, 从星状树出发逐步合并最近邻居,输出一棵无根树。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9762.7562 |
3 |
SMRUCC.genomics.Interops.Visualize.Phylip.Evolution.Parsimony
| Type | Summary | Package | Members |
|---|---|---|---|
| MaximumParsimony | 最大简约法(MP):在所有候选树拓扑中,寻找能用最少替换事件解释观测位点模式的树。 仅使用信息位点,通过 Fitch 算法(自底向上的动态规划)计算树长, 并以 NJ 树为初始拓扑,使用 NNI / SPR 算子进行启发式爬山搜索。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9753.40023 |
2 |
| MaximumParsimony | 最大简约法(MP):在所有候选树拓扑中,寻找能用最少替换事件解释观测位点模式的树。 仅使用信息位点,通过 Fitch 算法(自底向上的动态规划)计算树长, 并以 NJ 树为初始拓扑,使用 NNI / SPR 算子进行启发式爬山搜索。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9762.7562 |
2 |
| ParsimonyResult | 最大简约法(Maximum Parsimony)的建树结果。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9753.40023 |
4 |
| ParsimonyResult | 最大简约法(Maximum Parsimony)的建树结果。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9762.7562 |
4 |
SMRUCC.genomics.Interops.Visualize.Phylip.Evolution.Parsimony.MaximumParsimony
| Type | Summary | Package | Members |
|---|---|---|---|
| FitchEvaluator | Fitch 算法的单次位点求值器(对某个特定位点,自底向上累计最少替换数)。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9753.40023 |
1 |
| FitchEvaluator | Fitch 算法的单次位点求值器(对某个特定位点,自底向上累计最少替换数)。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9762.7562 |
1 |
SMRUCC.genomics.Interops.Visualize.Phylip.Evolution.TreeIO
| Type | Summary | Package | Members |
|---|---|---|---|
| PhyloTreeFactory | 建树算法结果(PhyloNode 拓扑)与项目内现有树模型 PhyloTree 之间的适配层, 同时提供遍历、叶集合提取、split(分支 bipartition)编码等树操作工具。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9753.40023 |
9 |
| PhyloTreeFactory | 建树算法结果(PhyloNode 拓扑)与项目内现有树模型 PhyloTree 之间的适配层, 同时提供遍历、叶集合提取、split(分支 bipartition)编码等树操作工具。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9762.7562 |
9 |
SMRUCC.genomics.Interops.Visualize.Phylip.Evolution.TreeSearch
| Type | Summary | Package | Members |
|---|---|---|---|
| NniMove | NNI(最近邻交换,Nearest Neighbor Interchange)拓扑移动: 针对内部边 (U -> V),交换 V 的一个子节点 A 与 U 的另一个子节点 W。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9753.40023 |
4 |
| NniMove | NNI(最近邻交换,Nearest Neighbor Interchange)拓扑移动: 针对内部边 (U -> V),交换 V 的一个子节点 A 与 U 的另一个子节点 W。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9762.7562 |
4 |
| SprMove | SPR(子树修剪重接,Subtree Pruning and Regrafting)拓扑移动: 剪除 U 的子节点 V(连同其子树),再把它重新接到边 (P -> C) 上。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9753.40023 |
4 |
| SprMove | SPR(子树修剪重接,Subtree Pruning and Regrafting)拓扑移动: 剪除 U 的子节点 V(连同其子树),再把它重新接到边 (P -> C) 上。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9762.7562 |
4 |
| TreeRearrangement | 系统发育树拓扑重排算子(NNI / SPR),用于最大简约法与最大似然法的启发式树搜索。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9753.40023 |
7 |
| TreeRearrangement | 系统发育树拓扑重排算子(NNI / SPR),用于最大简约法与最大似然法的启发式树搜索。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9762.7562 |
7 |
SMRUCC.genomics.Interops.Visualize.Phylip.Evolution.UPGMA
| Type | Summary | Package | Members |
|---|---|---|---|
| UpgmaTree | UPGMA(非加权组平均法,Unweighted Pair Group Method with Arithmetic mean): 每轮合并距离最近的两个簇,新簇与其他簇的距离取算术平均: D_kl = (n_i * D_ki + n_j * D_kj) / (n_i + n_j)。 该方法假设严格分子钟,输出一棵有根树。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9753.40023 |
2 |
| UpgmaTree | UPGMA(非加权组平均法,Unweighted Pair Group Method with Arithmetic mean): 每轮合并距离最近的两个簇,新簇与其他簇的距离取算术平均: D_kl = (n_i * D_ki + n_j * D_kj) / (n_i + n_j)。 该方法假设严格分子钟,输出一棵有根树。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9762.7562 |
2 |
SMRUCC.genomics.Interops.Visualize.Phylip.Evolview
| Type | Summary | Package | Members |
|---|---|---|---|
| PhyloNode | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9753.40023 |
51 | |
| PhyloNode | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9762.7562 |
51 | |
| PhyloTree | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9753.40023 |
40 | |
| PhyloTree | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9762.7562 |
40 |
SMRUCC.genomics.Interops.Visualize.Phylip.Evolview.Drawing
| Type | Summary | Package | Members |
|---|---|---|---|
| DrawingHelper | 树绘制所需的通用工具:节点遍历、颜色解析、极坐标换算以及文本尺寸缓存。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9753.40023 |
9 |
| DrawingHelper | 树绘制所需的通用工具:节点遍历、颜色解析、极坐标换算以及文本尺寸缓存。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9762.7562 |
9 |
| NodeLayout | 单个树节点的布局结果(全部为画布像素坐标) | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9753.40023 |
16 |
| NodeLayout | 单个树节点的布局结果(全部为画布像素坐标) | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9762.7562 |
16 |
| TextMeasureCache | 文本尺寸测量缓存:同一 (文本, 字体) 组合只测量一次,避免大树上逐节点重复测量。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9753.40023 |
1 |
| TextMeasureCache | 文本尺寸测量缓存:同一 (文本, 字体) 组合只测量一次,避免大树上逐节点重复测量。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9762.7562 |
1 |
| TreeDrawingOptions | 进化树绘制的配置项:布局样式、画布与留白、字体、颜色与线宽、显示开关、 圆形布局的起止角参数以及缩放策略。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9753.40023 |
39 |
| TreeDrawingOptions | 进化树绘制的配置项:布局样式、画布与留白、字体、颜色与线宽、显示开关、 圆形布局的起止角参数以及缩放策略。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9762.7562 |
32 |
| TreeEdgeStyle | 边(分支)的绘制形状 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9753.40023 |
6 |
| TreeEdgeStyle | 边(分支)的绘制形状 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9762.7562 |
6 |
| TreeLayoutEngine | 进化树布局引擎:把 PhyloTree 的拓扑与几何量转换为画布坐标。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9753.40023 |
5 |
| TreeLayoutEngine | 进化树布局引擎:把 PhyloTree 的拓扑与几何量转换为画布坐标。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9762.7562 |
2 |
| TreeLayoutResult | 整棵树的布局结果:节点布局映射表 + 内容包围盒 + 布局元信息。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9753.40023 |
11 |
| TreeLayoutResult | 整棵树的布局结果:节点布局映射表 + 内容包围盒 + 布局元信息。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9762.7562 |
11 |
| TreeRenderer | 基于 GDI+(IGraphics)的进化树渲染器:只消费 TreeLayoutResult, 负责绘制分支、节点标记、叶标签、bootstrap 支持度、分支长度、叶背景色块、标题与比例尺。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9753.40023 |
5 |
| TreeRenderer | 基于 GDI+(IGraphics)的进化树渲染器:只消费 TreeLayoutResult, 负责绘制分支、节点标记、叶标签、bootstrap 支持度、分支长度、叶背景色块、标题与比例尺。 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9762.7562 |
4 |
SMRUCC.genomics.Interops.Visualize.Phylip.MatrixFile
| Type | Summary | Package | Members |
|---|---|---|---|
| Gendist | 在做motif的分布密度的时候,将每一种类型的motif看作为一个等位基因 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9753.40023 |
7 |
| Gendist | 在做motif的分布密度的时候,将每一种类型的motif看作为一个等位基因 | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9762.7562 |
6 |
| MatrixFile | When Contml is used in the gene-frequency mode (its usual, default mode), or when Gendist is used, the first line contains the number of species (or populations) and the number o… | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9753.40023 |
8 |
| MatrixFile | When Contml is used in the gene-frequency mode (its usual, default mode), or when Gendist is used, the first line contains the number of species (or populations) and the number o… | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9762.7562 |
4 |
| NeighborMatrix | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9753.40023 |
2 | |
| NeighborMatrix | SMRUCC.genomics.Interops.Visualize.Phylip 1.0.9762.7562 |
1 |
SMRUCC.genomics.MetabolicModel
| Type | Summary | Package | Members |
|---|---|---|---|
| MetabolicCompound | internal standard model of the metabolite object | SMRUCC.genomics.Core 10.5.9753.40023 |
9 |
| MetabolicCompound | internal standard model of the metabolite object | SMRUCC.genomics.Core 10.5.9762.7562 |
0 |
| MetabolicPathway | 通路信息(用于通路级别汇总) | SMRUCC.genomics.Core 10.5.9753.40023 |
7 |
| MetabolicPathway | 通路信息(用于通路级别汇总) | SMRUCC.genomics.Core 10.5.9762.7562 |
2 |
| MetabolicReaction | A unify reaction model in the GCModeller system | SMRUCC.genomics.Core 10.5.9753.40023 |
12 |
| MetabolicReaction | A unify reaction model in the GCModeller system | SMRUCC.genomics.Core 10.5.9762.7562 |
3 |
SMRUCC.genomics.Metagenomics
| Type | Summary | Package | Members |
|---|---|---|---|
| BIOMTaxonomy | SMRUCC.genomics.Core 10.5.9753.40023 |
11 | |
| BIOMTaxonomy | SMRUCC.genomics.Core 10.5.9762.7562 |
9 | |
| BIOMTaxonomyParser | Parser and stringfier of Taxonomy object. | SMRUCC.genomics.Core 10.5.9753.40023 |
3 |
| BIOMTaxonomyParser | Parser and stringfier of Taxonomy object. | SMRUCC.genomics.Core 10.5.9762.7562 |
3 |
| GenomeNameIndex | in-memory name search | SMRUCC.genomics.Core 10.5.9753.40023 |
6 |
| GenomeNameIndex | in-memory name search | SMRUCC.genomics.Core 10.5.9762.7562 |
2 |
| LCA | LCA(最低公共祖先)算法 | SMRUCC.genomics.Core 10.5.9753.40023 |
6 |
| LCA | LCA(最低公共祖先)算法 | SMRUCC.genomics.Core 10.5.9762.7562 |
6 |
| LcaResult | LCA计算结果 | SMRUCC.genomics.Core 10.5.9753.40023 |
5 |
| LcaResult | LCA计算结果 | SMRUCC.genomics.Core 10.5.9762.7562 |
5 |
| OTUData | OTUData.data that associated with OTUData.OTU tag | SMRUCC.genomics.Core 10.5.9753.40023 |
5 |
| OTUData | OTUData.data that associated with OTUData.OTU tag | SMRUCC.genomics.Core 10.5.9762.7562 |
4 |
| SampleAbundanceSelector | SMRUCC.genomics.Core 10.5.9753.40023 |
2 | |
| SampleAbundanceSelector | SMRUCC.genomics.Core 10.5.9762.7562 |
2 | |
| Taxonomy | A simple organism taxonomy model. | SMRUCC.genomics.Core 10.5.9753.40023 |
24 |
| Taxonomy | A simple organism taxonomy model. | SMRUCC.genomics.Core 10.5.9762.7562 |
18 |
| TaxonomyExtensions | SMRUCC.genomics.Core 10.5.9753.40023 |
7 | |
| TaxonomyExtensions | SMRUCC.genomics.Core 10.5.9762.7562 |
4 | |
| TaxonomyRanks | the organism taxonomy rank levels | SMRUCC.genomics.Core 10.5.9753.40023 |
16 |
| TaxonomyRanks | the organism taxonomy rank levels | SMRUCC.genomics.Core 10.5.9762.7562 |
16 |
SMRUCC.genomics.Model.Metabolic.RouterAdapter
| Type | Summary | Package | Members |
|---|---|---|---|
| AtomMapping | SMRUCC.genomics.Model.Metabolic.RouterAdapter 1.0.9753.40023 |
1 | |
| AtomMapping | SMRUCC.genomics.Model.Metabolic.RouterAdapter 1.0.9762.7562 |
1 | |
| BioCycAdapter | 把 BioCyc(MetaCyc/EcoCyc)PGDB 装配成 RetroPath 的逆向合成通路搜索器。 构造期一次性完成: 1) 化合物结构索引(SMILES 净化 + 元素白名单 + 解析); 2) 反应实例 → 广义反应规则(MCS 原子映射 + 反应中心提取 + SMARTS 泛化); 3) 底盘内源代谢物汇集合。 之后每… | SMRUCC.genomics.Model.Metabolic.RouterAdapter 1.0.9753.40023 |
16 |
| BioCycAdapter | 把 BioCyc(MetaCyc/EcoCyc)PGDB 装配成 RetroPath 的逆向合成通路搜索器。 构造期一次性完成: 1) 化合物结构索引(SMILES 净化 + 元素白名单 + 解析); 2) 反应实例 → 广义反应规则(MCS 原子映射 + 反应中心提取 + SMARTS 泛化); 3) 底盘内源代谢物汇集合。 之后每… | SMRUCC.genomics.Model.Metabolic.RouterAdapter 1.0.9762.7562 |
16 |
| BioCycRuleMiner | SMRUCC.genomics.Model.Metabolic.RouterAdapter 1.0.9753.40023 |
3 | |
| BioCycRuleMiner | SMRUCC.genomics.Model.Metabolic.RouterAdapter 1.0.9762.7562 |
3 | |
| BioCycSink | SMRUCC.genomics.Model.Metabolic.RouterAdapter 1.0.9753.40023 |
2 | |
| BioCycSink | SMRUCC.genomics.Model.Metabolic.RouterAdapter 1.0.9762.7562 |
2 | |
| IRouter | 代谢网络通路搜索器的统一契约:目标导向的逆向搜索 + 起点导向的定向合成搜索。 | SMRUCC.genomics.Model.Metabolic.RouterAdapter 1.0.9753.40023 |
2 |
| IRouter | 代谢网络通路搜索器的统一契约:目标导向的逆向搜索 + 起点导向的定向合成搜索。 | SMRUCC.genomics.Model.Metabolic.RouterAdapter 1.0.9762.7562 |
2 |
| MappingResult | 一次反应两侧(反应物集合 ↔ 产物集合)的原子映射结果 | SMRUCC.genomics.Model.Metabolic.RouterAdapter 1.0.9753.40023 |
5 |
| MappingResult | 一次反应两侧(反应物集合 ↔ 产物集合)的原子映射结果 | SMRUCC.genomics.Model.Metabolic.RouterAdapter 1.0.9762.7562 |
5 |
| McsSearch | 键级保守的诱导式最大公共子图搜索(贪心下界 + 带预算回溯) | SMRUCC.genomics.Model.Metabolic.RouterAdapter 1.0.9753.40023 |
5 |
| McsSearch | 键级保守的诱导式最大公共子图搜索(贪心下界 + 带预算回溯) | SMRUCC.genomics.Model.Metabolic.RouterAdapter 1.0.9762.7562 |
5 |
| MetabolicAdapter | 把 GCModeller 内部标准代谢网络(化合物 + 反应的集合)装配成 RetroPath 的 逆向合成通路搜索器。 | SMRUCC.genomics.Model.Metabolic.RouterAdapter 1.0.9753.40023 |
15 |
| MetabolicAdapter | 把 GCModeller 内部标准代谢网络(化合物 + 反应的集合)装配成 RetroPath 的 逆向合成通路搜索器。 | SMRUCC.genomics.Model.Metabolic.RouterAdapter 1.0.9762.7562 |
15 |
| MetabolicRuleMiner | SMRUCC.genomics.Model.Metabolic.RouterAdapter 1.0.9753.40023 |
3 | |
| MetabolicRuleMiner | SMRUCC.genomics.Model.Metabolic.RouterAdapter 1.0.9762.7562 |
3 | |
| MetabolicSink | SMRUCC.genomics.Model.Metabolic.RouterAdapter 1.0.9753.40023 |
2 | |
| MetabolicSink | SMRUCC.genomics.Model.Metabolic.RouterAdapter 1.0.9762.7562 |
2 |
SMRUCC.genomics.Model.Metabolic.RouterAdapter.Data
| Type | Summary | Package | Members |
|---|---|---|---|
| CompoundIndex | SMRUCC.genomics.Model.Metabolic.RouterAdapter 1.0.9753.40023 |
2 | |
| CompoundIndex | SMRUCC.genomics.Model.Metabolic.RouterAdapter 1.0.9762.7562 |
2 | |
| CompoundIndexResult | 结构索引的构建结果。 | SMRUCC.genomics.Model.Metabolic.RouterAdapter 1.0.9753.40023 |
7 |
| CompoundIndexResult | 结构索引的构建结果。 | SMRUCC.genomics.Model.Metabolic.RouterAdapter 1.0.9762.7562 |
7 |
| CompoundSeed | 结构索引的输入种子:一个待索引的化合物。 | SMRUCC.genomics.Model.Metabolic.RouterAdapter 1.0.9753.40023 |
5 |
| CompoundSeed | 结构索引的输入种子:一个待索引的化合物。 | SMRUCC.genomics.Model.Metabolic.RouterAdapter 1.0.9762.7562 |
5 |
| CompoundStructure | 一个可被 RetroPath 使用的化合物结构(净化后的 SMILES + 分子图 + 可选名称信息)。 | SMRUCC.genomics.Model.Metabolic.RouterAdapter 1.0.9753.40023 |
5 |
| CompoundStructure | 一个可被 RetroPath 使用的化合物结构(净化后的 SMILES + 分子图 + 可选名称信息)。 | SMRUCC.genomics.Model.Metabolic.RouterAdapter 1.0.9762.7562 |
5 |
| ReactionSpec | 与数据源无关的反应契约——规则挖掘引擎(RuleMiner)的唯一输入。 | SMRUCC.genomics.Model.Metabolic.RouterAdapter 1.0.9753.40023 |
10 |
| ReactionSpec | 与数据源无关的反应契约——规则挖掘引擎(RuleMiner)的唯一输入。 | SMRUCC.genomics.Model.Metabolic.RouterAdapter 1.0.9762.7562 |
10 |
| RuleMiner | SMRUCC.genomics.Model.Metabolic.RouterAdapter 1.0.9753.40023 |
13 | |
| RuleMiner | SMRUCC.genomics.Model.Metabolic.RouterAdapter 1.0.9762.7562 |
13 | |
| SinkBuilder | SMRUCC.genomics.Model.Metabolic.RouterAdapter 1.0.9753.40023 |
3 | |
| SinkBuilder | SMRUCC.genomics.Model.Metabolic.RouterAdapter 1.0.9762.7562 |
3 | |
| SinkModes | SMRUCC.genomics.Model.Metabolic.RouterAdapter 1.0.9753.40023 |
4 | |
| SinkModes | SMRUCC.genomics.Model.Metabolic.RouterAdapter 1.0.9762.7562 |
4 | |
| SmilesSanitizer | SMRUCC.genomics.Model.Metabolic.RouterAdapter 1.0.9753.40023 |
8 | |
| SmilesSanitizer | SMRUCC.genomics.Model.Metabolic.RouterAdapter 1.0.9762.7562 |
8 |
SMRUCC.genomics.Model.Metabolic.RouterAdapter.Data.RuleMiner
| Type | Summary | Package | Members |
|---|---|---|---|
| PatternEdge | 类图上的一条边:两侧键级(0 = 该侧不存在此键) | SMRUCC.genomics.Model.Metabolic.RouterAdapter 1.0.9753.40023 |
2 |
| PatternEdge | 类图上的一条边:两侧键级(0 = 该侧不存在此键) | SMRUCC.genomics.Model.Metabolic.RouterAdapter 1.0.9762.7562 |
2 |
SMRUCC.genomics.Model.MotifGraph
| Type | Summary | Package | Members |
|---|---|---|---|
| DistanceGraph | SMRUCC.genomics.Model.MotifGraph 1.0.9753.40023 |
2 | |
| DistanceGraph | SMRUCC.genomics.Model.MotifGraph 1.0.9762.7562 |
2 | |
| SequenceGraph | A machine learning vector model for motif analysis | SMRUCC.genomics.Model.MotifGraph 1.0.9753.40023 |
9 |
| SequenceGraph | A machine learning vector model for motif analysis | SMRUCC.genomics.Model.MotifGraph 1.0.9762.7562 |
5 |
SMRUCC.genomics.Model.MotifGraph.ProteinStructure
| Type | Summary | Package | Members |
|---|---|---|---|
| CDHitFamilyExport | SMRUCC.genomics.Model.MotifGraph.ProteinStructure 1.0.9753.40023 |
1 | |
| CDHitFamilyExport | SMRUCC.genomics.Model.MotifGraph.ProteinStructure 1.0.9762.7562 |
1 | |
| CreateMatrix | Create sgt embedding matrix | SMRUCC.genomics.Model.MotifGraph.ProteinStructure 1.0.9753.40023 |
2 |
| CreateMatrix | Create sgt embedding matrix | SMRUCC.genomics.Model.MotifGraph.ProteinStructure 1.0.9762.7562 |
2 |
| FamilyExports | SMRUCC.genomics.Model.MotifGraph.ProteinStructure 1.0.9753.40023 |
4 | |
| FamilyExports | SMRUCC.genomics.Model.MotifGraph.ProteinStructure 1.0.9762.7562 |
4 | |
| GenomeMetabolicEmbedding | SMRUCC.genomics.Model.MotifGraph.ProteinStructure 1.0.9753.40023 |
1 | |
| GenomeMetabolicEmbedding | SMRUCC.genomics.Model.MotifGraph.ProteinStructure 1.0.9762.7562 |
1 | |
| KmerTFIDFVectorizer | SMRUCC.genomics.Model.MotifGraph.ProteinStructure 1.0.9753.40023 |
1 | |
| KmerTFIDFVectorizer | SMRUCC.genomics.Model.MotifGraph.ProteinStructure 1.0.9762.7562 |
1 | |
| MorganFingerprint | help for make embedding a sequence to vector | SMRUCC.genomics.Model.MotifGraph.ProteinStructure 1.0.9753.40023 |
0 |
| MorganFingerprint | help for make embedding a sequence to vector | SMRUCC.genomics.Model.MotifGraph.ProteinStructure 1.0.9762.7562 |
0 |
SMRUCC.genomics.Model.MotifGraph.ProteinStructure.FamilyCluster
| Type | Summary | Package | Members |
|---|---|---|---|
| ApproxKnnBuilder | block-wise approximate nearest-neighbour builder for the streaming pipeline. | SMRUCC.genomics.Model.MotifGraph.ProteinStructure 1.0.9753.40023 |
5 |
| ApproxKnnBuilder | block-wise approximate nearest-neighbour builder for the streaming pipeline. | SMRUCC.genomics.Model.MotifGraph.ProteinStructure 1.0.9762.7562 |
5 |
| BlockLouvain | community detection stage of the streaming pipeline. | SMRUCC.genomics.Model.MotifGraph.ProteinStructure 1.0.9753.40023 |
5 |
| BlockLouvain | community detection stage of the streaming pipeline. | SMRUCC.genomics.Model.MotifGraph.ProteinStructure 1.0.9762.7562 |
5 |
| ClusteringResult | full result of the unsupervised protein family clustering pipeline. | SMRUCC.genomics.Model.MotifGraph.ProteinStructure 1.0.9753.40023 |
18 |
| ClusteringResult | full result of the unsupervised protein family clustering pipeline. | SMRUCC.genomics.Model.MotifGraph.ProteinStructure 1.0.9762.7562 |
18 |
| KmerVocabulary | Extracts kmer features from a protein sequence database and selects a top-N vocabulary used as the fixed dictionary for the TF-IDF vectorization step. | SMRUCC.genomics.Model.MotifGraph.ProteinStructure 1.0.9753.40023 |
13 |
| KmerVocabulary | Extracts kmer features from a protein sequence database and selects a top-N vocabulary used as the fixed dictionary for the TF-IDF vectorization step. | SMRUCC.genomics.Model.MotifGraph.ProteinStructure 1.0.9762.7562 |
13 |
| ProteinFamily | a single protein family discovered by the unsupervised clustering pipeline | SMRUCC.genomics.Model.MotifGraph.ProteinStructure 1.0.9753.40023 |
5 |
| ProteinFamily | a single protein family discovered by the unsupervised clustering pipeline | SMRUCC.genomics.Model.MotifGraph.ProteinStructure 1.0.9762.7562 |
5 |
| ProteinFamilyClustering | unsupervised protein family clustering pipeline. | SMRUCC.genomics.Model.MotifGraph.ProteinStructure 1.0.9753.40023 |
13 |
| ProteinFamilyClustering | unsupervised protein family clustering pipeline. | SMRUCC.genomics.Model.MotifGraph.ProteinStructure 1.0.9762.7562 |
13 |
| SparseVectorWriter | stream-friendly (coordinate list) writer / reader for the per-sequence TF-IDF sparse vectors produced by the first pass of the streaming pipeline. | SMRUCC.genomics.Model.MotifGraph.ProteinStructure 1.0.9753.40023 |
12 |
| SparseVectorWriter | stream-friendly (coordinate list) writer / reader for the per-sequence TF-IDF sparse vectors produced by the first pass of the streaming pipeline. | SMRUCC.genomics.Model.MotifGraph.ProteinStructure 1.0.9762.7562 |
12 |
| StreamingClustering | streaming orchestrator for the unsupervised protein-family clustering pipeline. | SMRUCC.genomics.Model.MotifGraph.ProteinStructure 1.0.9753.40023 |
9 |
| StreamingClustering | streaming orchestrator for the unsupervised protein-family clustering pipeline. | SMRUCC.genomics.Model.MotifGraph.ProteinStructure 1.0.9762.7562 |
9 |
| SvdBlockReducer | block-wise randomized SVD reducer for the streaming pipeline. | SMRUCC.genomics.Model.MotifGraph.ProteinStructure 1.0.9753.40023 |
5 |
| SvdBlockReducer | block-wise randomized SVD reducer for the streaming pipeline. | SMRUCC.genomics.Model.MotifGraph.ProteinStructure 1.0.9762.7562 |
5 |
SMRUCC.genomics.Model.MotifGraph.ProteinStructure.FamilyCluster.KmerVocabulary
SMRUCC.genomics.Model.MotifGraph.ProteinStructure.Kmer
SMRUCC.genomics.Model.MotifGraph.ProteinStructure.Linclust
| Type | Summary | Package | Members |
|---|---|---|---|
| CascadeFilter | SMRUCC.genomics.Model.MotifGraph.ProteinStructure 1.0.9753.40023 |
1 | |
| CascadeFilter | SMRUCC.genomics.Model.MotifGraph.ProteinStructure 1.0.9762.7562 |
1 | |
| Cluster | 单个聚类簇 | SMRUCC.genomics.Model.MotifGraph.ProteinStructure 1.0.9753.40023 |
4 |
| Cluster | 单个聚类簇 | SMRUCC.genomics.Model.MotifGraph.ProteinStructure 1.0.9762.7562 |
4 |
| ClusterExporter | SMRUCC.genomics.Model.MotifGraph.ProteinStructure 1.0.9753.40023 |
1 | |
| ClusterExporter | SMRUCC.genomics.Model.MotifGraph.ProteinStructure 1.0.9762.7562 |
1 | |
| ClusterResult | 聚类结果 | SMRUCC.genomics.Model.MotifGraph.ProteinStructure 1.0.9753.40023 |
4 |
| ClusterResult | 聚类结果 | SMRUCC.genomics.Model.MotifGraph.ProteinStructure 1.0.9762.7562 |
4 |
| FastPass | 快速过滤结果 | SMRUCC.genomics.Model.MotifGraph.ProteinStructure 1.0.9753.40023 |
10 |
| FastPass | 快速过滤结果 | SMRUCC.genomics.Model.MotifGraph.ProteinStructure 1.0.9762.7562 |
10 |
| GreedyCover | SMRUCC.genomics.Model.MotifGraph.ProteinStructure 1.0.9753.40023 |
1 | |
| GreedyCover | SMRUCC.genomics.Model.MotifGraph.ProteinStructure 1.0.9762.7562 |
1 | |
| KmerEntry | 16 字节 k-mer 记录行 | SMRUCC.genomics.Model.MotifGraph.ProteinStructure 1.0.9753.40023 |
8 |
| KmerEntry | 16 字节 k-mer 记录行 | SMRUCC.genomics.Model.MotifGraph.ProteinStructure 1.0.9762.7562 |
8 |
| KmerGroup | 一个 k-mer 组(共享同一 k-mer 的全部序列) | SMRUCC.genomics.Model.MotifGraph.ProteinStructure 1.0.9753.40023 |
2 |
| KmerGroup | 一个 k-mer 组(共享同一 k-mer 的全部序列) | SMRUCC.genomics.Model.MotifGraph.ProteinStructure 1.0.9762.7562 |
2 |
| KmerTable | SMRUCC.genomics.Model.MotifGraph.ProteinStructure 1.0.9753.40023 |
3 | |
| KmerTable | SMRUCC.genomics.Model.MotifGraph.ProteinStructure 1.0.9762.7562 |
3 | |
| Linclust | SMRUCC.genomics.Model.MotifGraph.ProteinStructure 1.0.9753.40023 |
3 | |
| Linclust | SMRUCC.genomics.Model.MotifGraph.ProteinStructure 1.0.9762.7562 |
3 | |
| LinclustOptions | Linclust 运行配置 | SMRUCC.genomics.Model.MotifGraph.ProteinStructure 1.0.9753.40023 |
7 |
| LinclustOptions | Linclust 运行配置 | SMRUCC.genomics.Model.MotifGraph.ProteinStructure 1.0.9762.7562 |
7 |
| ReducedAlphabet | SMRUCC.genomics.Model.MotifGraph.ProteinStructure 1.0.9753.40023 |
7 | |
| ReducedAlphabet | SMRUCC.genomics.Model.MotifGraph.ProteinStructure 1.0.9762.7562 |
7 | |
| RollingHash | SMRUCC.genomics.Model.MotifGraph.ProteinStructure 1.0.9753.40023 |
4 | |
| RollingHash | SMRUCC.genomics.Model.MotifGraph.ProteinStructure 1.0.9762.7562 |
4 |
SMRUCC.genomics.Model.MotifGraph.ProteinStructure.Linclust.RollingHash
SMRUCC.genomics.Model.Network.KEGG
| Type | Summary | Package | Members |
|---|---|---|---|
| CompoundSupportsEvidence | 假若直接根据KO对应的Reaction进行网络的装配的话,可能会造成生成的网络非常的密集的现象出现 因为一个reaction发生的基础是存在必须要有相应的代谢物和酶的存在 所以在这个模块之中会尝试依据代谢物是否缺失来判断某一个反应网络之中的边是否存在 | SMRUCC.genomics.Model.Network.KEGG 1.0.9753.40023 |
1 |
| CompoundSupportsEvidence | 假若直接根据KO对应的Reaction进行网络的装配的话,可能会造成生成的网络非常的密集的现象出现 因为一个reaction发生的基础是存在必须要有相应的代谢物和酶的存在 所以在这个模块之中会尝试依据代谢物是否缺失来判断某一个反应网络之中的边是否存在 | SMRUCC.genomics.Model.Network.KEGG 1.0.9762.7562 |
1 |
| GraphBackground | create background network graph model for kegg data | SMRUCC.genomics.Model.Network.KEGG 1.0.9753.40023 |
1 |
| GraphBackground | create background network graph model for kegg data | SMRUCC.genomics.Model.Network.KEGG 1.0.9762.7562 |
1 |
| KOLinks | 这个模型是从蛋白的角度来看待个体和系统模块之间的关系的 | SMRUCC.genomics.Model.Network.KEGG 1.0.9753.40023 |
7 |
| KOLinks | 这个模型是从蛋白的角度来看待个体和系统模块之间的关系的 | SMRUCC.genomics.Model.Network.KEGG 1.0.9762.7562 |
5 |
| PathwayMapNetwork | A helper module for pathway map graph object pathway as node and the edge link in this graph model is based on the KO term intersection result. | SMRUCC.genomics.Model.Network.KEGG 1.0.9753.40023 |
3 |
| PathwayMapNetwork | A helper module for pathway map graph object pathway as node and the edge link in this graph model is based on the KO term intersection result. | SMRUCC.genomics.Model.Network.KEGG 1.0.9762.7562 |
3 |
| PathwayNetwork | SMRUCC.genomics.Model.Network.KEGG 1.0.9753.40023 |
1 | |
| PathwayNetwork | SMRUCC.genomics.Model.Network.KEGG 1.0.9762.7562 |
1 | |
| SimpleBuilder | SMRUCC.genomics.Model.Network.KEGG 1.0.9753.40023 |
3 | |
| SimpleBuilder | SMRUCC.genomics.Model.Network.KEGG 1.0.9762.7562 |
3 |
SMRUCC.genomics.Model.Network.KEGG.Dunnart
| Type | Summary | Package | Members |
|---|---|---|---|
| Constraint | SMRUCC.genomics.Model.Network.KEGG 1.0.9753.40023 |
3 | |
| Constraint | SMRUCC.genomics.Model.Network.KEGG 1.0.9762.7562 |
3 | |
| Extensions | SMRUCC.genomics.Model.Network.KEGG 1.0.9753.40023 |
1 | |
| Extensions | SMRUCC.genomics.Model.Network.KEGG 1.0.9762.7562 |
1 | |
| GraphObject | json model for visualize of the cola network graph | SMRUCC.genomics.Model.Network.KEGG 1.0.9753.40023 |
5 |
| GraphObject | json model for visualize of the cola network graph | SMRUCC.genomics.Model.Network.KEGG 1.0.9762.7562 |
5 |
| Group | SMRUCC.genomics.Model.Network.KEGG 1.0.9753.40023 |
4 | |
| Group | SMRUCC.genomics.Model.Network.KEGG 1.0.9762.7562 |
4 | |
| Link | SMRUCC.genomics.Model.Network.KEGG 1.0.9753.40023 |
2 | |
| Link | SMRUCC.genomics.Model.Network.KEGG 1.0.9762.7562 |
2 | |
| Node | SMRUCC.genomics.Model.Network.KEGG 1.0.9753.40023 |
9 | |
| Node | SMRUCC.genomics.Model.Network.KEGG 1.0.9762.7562 |
9 | |
| NodeOffset | SMRUCC.genomics.Model.Network.KEGG 1.0.9753.40023 |
2 | |
| NodeOffset | SMRUCC.genomics.Model.Network.KEGG 1.0.9762.7562 |
2 |
SMRUCC.genomics.Model.Network.KEGG.GraphVisualizer
| Type | Summary | Package | Members |
|---|---|---|---|
| FunctionalNetwork | SMRUCC.genomics.Model.Network.KEGGGraphVisualizer 1.0.9753.40023 |
2 | |
| FunctionalNetwork | SMRUCC.genomics.Model.Network.KEGGGraphVisualizer 1.0.9762.7562 |
2 |
SMRUCC.genomics.Model.Network.KEGG.GraphVisualizer.PathwayMaps
| Type | Summary | Package | Members |
|---|---|---|---|
| ReferenceMapRender | SMRUCC.genomics.Model.Network.KEGGGraphVisualizer 1.0.9753.40023 |
6 | |
| ReferenceMapRender | SMRUCC.genomics.Model.Network.KEGGGraphVisualizer 1.0.9762.7562 |
6 |
SMRUCC.genomics.Model.Network.KEGG.GraphVisualizer.PathwayMaps.RenderStyles
| Type | Summary | Package | Members |
|---|---|---|---|
| BlockStyle | The default style | SMRUCC.genomics.Model.Network.KEGGGraphVisualizer 1.0.9753.40023 |
1 |
| BlockStyle | The default style | SMRUCC.genomics.Model.Network.KEGGGraphVisualizer 1.0.9762.7562 |
0 |
SMRUCC.genomics.Model.Network.KEGG.PathwayMaps
| Type | Summary | Package | Members |
|---|---|---|---|
| MapAssignment | 因为同一种代谢物或者代谢反应或者酶分子可能会出现在多个代谢途径之中 则这个模块就是通过将目标类型在代谢途径中的归属通过覆盖度进行简单计算 | SMRUCC.genomics.Model.Network.KEGG 1.0.9753.40023 |
1 |
| MapAssignment | 因为同一种代谢物或者代谢反应或者酶分子可能会出现在多个代谢途径之中 则这个模块就是通过将目标类型在代谢途径中的归属通过覆盖度进行简单计算 | SMRUCC.genomics.Model.Network.KEGG 1.0.9762.7562 |
1 |
| MaxGraphAsignment | assign of the pathway category to compounds/KO by max graph evaluation | SMRUCC.genomics.Model.Network.KEGG 1.0.9753.40023 |
1 |
| MaxGraphAsignment | assign of the pathway category to compounds/KO by max graph evaluation | SMRUCC.genomics.Model.Network.KEGG 1.0.9762.7562 |
0 |
| ReferenceMap | SMRUCC.genomics.Model.Network.KEGG 1.0.9753.40023 |
3 | |
| ReferenceMap | SMRUCC.genomics.Model.Network.KEGG 1.0.9762.7562 |
3 |
SMRUCC.genomics.Model.Network.KEGG.ReactionNetwork
| Type | Summary | Package | Members |
|---|---|---|---|
| BuilderBase | SMRUCC.genomics.Model.Network.KEGG 1.0.9753.40023 |
7 | |
| BuilderBase | SMRUCC.genomics.Model.Network.KEGG 1.0.9762.7562 |
7 | |
| EdgeFilter | SMRUCC.genomics.Model.Network.KEGG 1.0.9753.40023 |
5 | |
| EdgeFilter | SMRUCC.genomics.Model.Network.KEGG 1.0.9762.7562 |
2 | |
| Extensions | SMRUCC.genomics.Model.Network.KEGG 1.0.9753.40023 |
3 | |
| Extensions | SMRUCC.genomics.Model.Network.KEGG 1.0.9762.7562 |
3 | |
| GetGeneSymbols | SMRUCC.genomics.Model.Network.KEGG 1.0.9753.40023 |
1 | |
| GetGeneSymbols | SMRUCC.genomics.Model.Network.KEGG 1.0.9762.7562 |
1 | |
| MapCache | Mapping between the kegg compound tuple and reaction id, KO id, etc. | SMRUCC.genomics.Model.Network.KEGG 1.0.9753.40023 |
7 |
| MapCache | Mapping between the kegg compound tuple and reaction id, KO id, etc. | SMRUCC.genomics.Model.Network.KEGG 1.0.9762.7562 |
6 |
| NetworkExpansion | Contains algorithm code for KEGG compound reaction network expansion | SMRUCC.genomics.Model.Network.KEGG 1.0.9753.40023 |
1 |
| NetworkExpansion | Contains algorithm code for KEGG compound reaction network expansion | SMRUCC.genomics.Model.Network.KEGG 1.0.9762.7562 |
1 |
| ReactionClassNetwork | SMRUCC.genomics.Model.Network.KEGG 1.0.9753.40023 |
2 | |
| ReactionClassNetwork | SMRUCC.genomics.Model.Network.KEGG 1.0.9762.7562 |
2 | |
| ReactionClassTable | SMRUCC.genomics.Model.Network.KEGG 1.0.9753.40023 |
7 | |
| ReactionClassTable | SMRUCC.genomics.Model.Network.KEGG 1.0.9762.7562 |
7 | |
| ReactionLinkFilter | the given reaction should contains at least one compound on each side | SMRUCC.genomics.Model.Network.KEGG 1.0.9753.40023 |
1 |
| ReactionLinkFilter | the given reaction should contains at least one compound on each side | SMRUCC.genomics.Model.Network.KEGG 1.0.9762.7562 |
1 |
| ReactionNetworkBuilder | 这个模块是针对一组给定的特定的代谢物编号列表 生成对应的小分子代谢物互做网络图 | SMRUCC.genomics.Model.Network.KEGG 1.0.9753.40023 |
4 |
| ReactionNetworkBuilder | 这个模块是针对一组给定的特定的代谢物编号列表 生成对应的小分子代谢物互做网络图 | SMRUCC.genomics.Model.Network.KEGG 1.0.9762.7562 |
4 |
| ReactionTable | A simplify data model of KEGG reaction object. | SMRUCC.genomics.Model.Network.KEGG 1.0.9753.40023 |
13 |
| ReactionTable | A simplify data model of KEGG reaction object. | SMRUCC.genomics.Model.Network.KEGG 1.0.9762.7562 |
8 |
| SlotCompleteFilter | all compound should be exists for the required reaction model | SMRUCC.genomics.Model.Network.KEGG 1.0.9753.40023 |
1 |
| SlotCompleteFilter | all compound should be exists for the required reaction model | SMRUCC.genomics.Model.Network.KEGG 1.0.9762.7562 |
1 |
| Styles | SMRUCC.genomics.Model.Network.KEGG 1.0.9753.40023 |
1 | |
| Styles | SMRUCC.genomics.Model.Network.KEGG 1.0.9762.7562 |
1 |
SMRUCC.genomics.Model.Network.Regulons
| Type | Summary | Package | Members |
|---|---|---|---|
| Connection | the correlation connection between two genes | SMRUCC.genomics.Model.Network.Regulons 1.0.9753.40023 |
0 |
| Connection | the correlation connection between two genes | SMRUCC.genomics.Model.Network.Regulons 1.0.9762.7562 |
0 |
| CrossOmicsCorrelation | Correlation between the molecules across two omics matrix data, such as gene expression and protein abundance | SMRUCC.genomics.Model.Network.Regulons 1.0.9753.40023 |
5 |
| CrossOmicsCorrelation | Correlation between the molecules across two omics matrix data, such as gene expression and protein abundance | SMRUCC.genomics.Model.Network.Regulons 1.0.9762.7562 |
5 |
| LazyCorrelationMatrix | Correlation between the molecules inside one omics matrix data | SMRUCC.genomics.Model.Network.Regulons 1.0.9753.40023 |
3 |
| LazyCorrelationMatrix | Correlation between the molecules inside one omics matrix data | SMRUCC.genomics.Model.Network.Regulons 1.0.9762.7562 |
3 |
| LazyCrossOmicsCorrelation | Correlation between the molecules across two omics matrix data, such as gene expression and protein abundance | SMRUCC.genomics.Model.Network.Regulons 1.0.9753.40023 |
6 |
| LazyCrossOmicsCorrelation | Correlation between the molecules across two omics matrix data, such as gene expression and protein abundance | SMRUCC.genomics.Model.Network.Regulons 1.0.9762.7562 |
6 |
| TRN | SMRUCC.genomics.Model.Network.Regulons 1.0.9753.40023 |
2 | |
| TRN | SMRUCC.genomics.Model.Network.Regulons 1.0.9762.7562 |
2 |
SMRUCC.genomics.Model.Network.STRING
| Type | Summary | Package | Members |
|---|---|---|---|
| AnalysisAPI | Functional network analysis based on the STRING-db. | SMRUCC.genomics.Model.Network.STRING-db 1.0.9753.40023 |
0 |
| AnalysisAPI | Functional network analysis based on the STRING-db. | SMRUCC.genomics.Model.Network.STRING-db 1.0.9762.7562 |
0 |
| FunctionalEnrichmentNetwork | 功能富集网络 | SMRUCC.genomics.Model.Network.STRING-db 1.0.9753.40023 |
3 |
| FunctionalEnrichmentNetwork | 功能富集网络 | SMRUCC.genomics.Model.Network.STRING-db 1.0.9762.7562 |
3 |
SMRUCC.genomics.Model.Network.VirtualFootprint
| Type | Summary | Package | Members |
|---|---|---|---|
| Extensions | SMRUCC.genomics.Model.Network.VirtualFootprint 1.0.9753.40023 |
3 | |
| Extensions | SMRUCC.genomics.Model.Network.VirtualFootprint 1.0.9762.7562 |
3 | |
| IEqualsAPI | SMRUCC.genomics.Model.Network.VirtualFootprint 1.0.9753.40023 |
3 | |
| IEqualsAPI | SMRUCC.genomics.Model.Network.VirtualFootprint 1.0.9762.7562 |
3 | |
| RegPreciseRegulon | Regulons object that reconstruct from RegPrecise database by using bbh method. | SMRUCC.genomics.Model.Network.VirtualFootprint 1.0.9753.40023 |
9 |
| RegPreciseRegulon | Regulons object that reconstruct from RegPrecise database by using bbh method. | SMRUCC.genomics.Model.Network.VirtualFootprint 1.0.9762.7562 |
9 |
| RegPreciseScan | SMRUCC.genomics.Model.Network.VirtualFootprint 1.0.9753.40023 |
1 | |
| RegPreciseScan | SMRUCC.genomics.Model.Network.VirtualFootprint 1.0.9762.7562 |
1 |
SMRUCC.genomics.Model.Network.VirtualFootprint.DocumentFormat
| Type | Summary | Package | Members |
|---|---|---|---|
| BacterialRegulation | SMRUCC.genomics.Model.Network.VirtualFootprint 1.0.9753.40023 |
3 | |
| BacterialRegulation | SMRUCC.genomics.Model.Network.VirtualFootprint 1.0.9762.7562 |
3 | |
| RegulatesFootprints | 简单描述调控位点和调控因子之间的关系以及该位点在基因组上面的位置 | SMRUCC.genomics.Model.Network.VirtualFootprint 1.0.9753.40023 |
11 |
| RegulatesFootprints | 简单描述调控位点和调控因子之间的关系以及该位点在基因组上面的位置 | SMRUCC.genomics.Model.Network.VirtualFootprint 1.0.9762.7562 |
11 |
| VirtualFootprint | A motif site feature data model | SMRUCC.genomics.Model.Network.VirtualFootprint 1.0.9753.40023 |
6 |
| VirtualFootprint | A motif site feature data model | SMRUCC.genomics.Model.Network.VirtualFootprint 1.0.9762.7562 |
6 |
SMRUCC.genomics.Model.OperonMapper
| Type | Summary | Package | Members |
|---|---|---|---|
| AnnotatedOperon | SMRUCC.genomics.Model.OperonMapper 1.0.9753.40023 |
12 | |
| AnnotatedOperon | SMRUCC.genomics.Model.OperonMapper 1.0.9762.7562 |
12 | |
| ODBOperon | A row of the data in ODB dataset known_operon.download.txt | SMRUCC.genomics.Model.OperonMapper 1.0.9753.40023 |
9 |
| ODBOperon | A row of the data in ODB dataset known_operon.download.txt | SMRUCC.genomics.Model.OperonMapper 1.0.9762.7562 |
3 |
| OperonAnnotator | SMRUCC.genomics.Model.OperonMapper 1.0.9753.40023 |
2 | |
| OperonAnnotator | SMRUCC.genomics.Model.OperonMapper 1.0.9762.7562 |
2 | |
| OperonHmmer | SMRUCC.genomics.Model.OperonMapper 1.0.9753.40023 |
2 | |
| OperonHmmer | SMRUCC.genomics.Model.OperonMapper 1.0.9762.7562 |
2 | |
| OperonType | Operon的类型枚举 | SMRUCC.genomics.Model.OperonMapper 1.0.9753.40023 |
3 |
| OperonType | Operon的类型枚举 | SMRUCC.genomics.Model.OperonMapper 1.0.9762.7562 |
3 |
SMRUCC.genomics.Model.OperonMapper.ContextModel
| Type | Summary | Package | Members |
|---|---|---|---|
| FeatureScores | 存储计算得出的操纵子预测特征得分 | SMRUCC.genomics.Model.OperonMapper 1.0.9753.40023 |
11 |
| FeatureScores | 存储计算得出的操纵子预测特征得分 | SMRUCC.genomics.Model.OperonMapper 1.0.9762.7562 |
11 |
| GeneInfo | 基因信息结构,存储单个基因的坐标、方向及功能注释等信息 | SMRUCC.genomics.Model.OperonMapper 1.0.9753.40023 |
8 |
| GeneInfo | 基因信息结构,存储单个基因的坐标、方向及功能注释等信息 | SMRUCC.genomics.Model.OperonMapper 1.0.9762.7562 |
8 |
| GenomeInfo | 参考基因组信息结构,用于计算邻域保守性和系统发育距离 | SMRUCC.genomics.Model.OperonMapper 1.0.9753.40023 |
5 |
| GenomeInfo | 参考基因组信息结构,用于计算邻域保守性和系统发育距离 | SMRUCC.genomics.Model.OperonMapper 1.0.9762.7562 |
5 |
| IntergenicDistanceGroup | 基因间距离分组枚举,用于分类器的分组训练策略 论文 Results 部分指出,根据基因间距离将数据集分为三个子组能有效降低分类误差 | SMRUCC.genomics.Model.OperonMapper 1.0.9753.40023 |
7 |
| IntergenicDistanceGroup | 基因间距离分组枚举,用于分类器的分组训练策略 论文 Results 部分指出,根据基因间距离将数据集分为三个子组能有效降低分类误差 | SMRUCC.genomics.Model.OperonMapper 1.0.9762.7562 |
7 |
| OperonPredictionFeatures | 提取并计算操纵子预测所需的各种特征得分 To evaluate the contribution of selected features in operon prediction, we have calculated the numerical values of the features, And then used these values… | SMRUCC.genomics.Model.OperonMapper 1.0.9753.40023 |
14 |
| OperonPredictionFeatures | 提取并计算操纵子预测所需的各种特征得分 To evaluate the contribution of selected features in operon prediction, we have calculated the numerical values of the features, And then used these values… | SMRUCC.genomics.Model.OperonMapper 1.0.9762.7562 |
14 |
SMRUCC.genomics.Model.OperonMapper.OperonPredictor.Core
| Type | Summary | Package | Members |
|---|---|---|---|
| AdjacentPair | 相邻基因对(基因组顺序上相邻) | SMRUCC.genomics.Model.OperonMapper 1.0.9753.40023 |
6 |
| AdjacentPair | 相邻基因对(基因组顺序上相邻) | SMRUCC.genomics.Model.OperonMapper 1.0.9762.7562 |
6 |
| AnnotationIO | SMRUCC.genomics.Model.OperonMapper 1.0.9753.40023 |
6 | |
| AnnotationIO | SMRUCC.genomics.Model.OperonMapper 1.0.9762.7562 |
6 | |
| Engine | SMRUCC.genomics.Model.OperonMapper 1.0.9753.40023 |
2 | |
| Engine | SMRUCC.genomics.Model.OperonMapper 1.0.9762.7562 |
2 | |
| GeneModel | SMRUCC.genomics.Model.OperonMapper 1.0.9753.40023 |
1 | |
| GeneModel | SMRUCC.genomics.Model.OperonMapper 1.0.9762.7562 |
1 | |
| HomologySignals | SMRUCC.genomics.Model.OperonMapper 1.0.9753.40023 |
10 | |
| HomologySignals | SMRUCC.genomics.Model.OperonMapper 1.0.9762.7562 |
10 | |
| Integrator | SMRUCC.genomics.Model.OperonMapper 1.0.9753.40023 |
4 | |
| Integrator | SMRUCC.genomics.Model.OperonMapper 1.0.9762.7562 |
4 | |
| OperonInfo | 操纵子(结果对象) | SMRUCC.genomics.Model.OperonMapper 1.0.9753.40023 |
10 |
| OperonInfo | 操纵子(结果对象) | SMRUCC.genomics.Model.OperonMapper 1.0.9762.7562 |
10 |
| PairSignals | 单对的多维信号打分 | SMRUCC.genomics.Model.OperonMapper 1.0.9753.40023 |
18 |
| PairSignals | 单对的多维信号打分 | SMRUCC.genomics.Model.OperonMapper 1.0.9762.7562 |
18 |
| SignalScan | SMRUCC.genomics.Model.OperonMapper 1.0.9753.40023 |
3 | |
| SignalScan | SMRUCC.genomics.Model.OperonMapper 1.0.9762.7562 |
3 | |
| UniopModel | SMRUCC.genomics.Model.OperonMapper 1.0.9753.40023 |
9 | |
| UniopModel | SMRUCC.genomics.Model.OperonMapper 1.0.9762.7562 |
9 |
SMRUCC.genomics.ObjectQuery
| Type | Summary | Package | Members |
|---|---|---|---|
| IQueryExtensions | Extensions for object query in the GCModeller biological components | SMRUCC.genomics.Core 10.5.9753.40023 |
3 |
| IQueryExtensions | Extensions for object query in the GCModeller biological components | SMRUCC.genomics.Core 10.5.9762.7562 |
3 |
SMRUCC.genomics.ProteinModel
| Type | Summary | Package | Members |
|---|---|---|---|
| DomainModel | The simple protein domain motif model. | SMRUCC.genomics.Core 10.5.9753.40023 |
5 |
| DomainModel | The simple protein domain motif model. | SMRUCC.genomics.Core 10.5.9762.7562 |
0 |
| DomainObject | Domain identifier + Domain Location | SMRUCC.genomics.Core 10.5.9753.40023 |
8 |
| DomainObject | Domain identifier + Domain Location | SMRUCC.genomics.Core 10.5.9762.7562 |
2 |
| IMotifDomain | 一个蛋白质结构域对象的抽象模型 | SMRUCC.genomics.Core 10.5.9753.40023 |
2 |
| IMotifDomain | 一个蛋白质结构域对象的抽象模型 | SMRUCC.genomics.Core 10.5.9762.7562 |
2 |
| Protein | A type of data structure for descript the protein domain architecture distribution.(一个用于描述蛋白质结构域分布的数据结构) | SMRUCC.genomics.Core 10.5.9753.40023 |
13 |
| Protein | A type of data structure for descript the protein domain architecture distribution.(一个用于描述蛋白质结构域分布的数据结构) | SMRUCC.genomics.Core 10.5.9762.7562 |
5 |
SMRUCC.genomics.ProteinModel.ChouFasmanRules
| Type | Summary | Package | Members |
|---|---|---|---|
| AminoAcid | SMRUCC.genomics.Core 10.5.9753.40023 |
8 | |
| AminoAcid | SMRUCC.genomics.Core 10.5.9762.7562 |
8 | |
| ChouFasman | The Chou-Fasman method is a bioinformatics technique used for predicting the secondary structure of proteins. | SMRUCC.genomics.Core 10.5.9753.40023 |
6 |
| ChouFasman | The Chou-Fasman method is a bioinformatics technique used for predicting the secondary structure of proteins. | SMRUCC.genomics.Core 10.5.9762.7562 |
6 |
| ChouFasmanParameter | SMRUCC.genomics.Core 10.5.9753.40023 |
37 | |
| ChouFasmanParameter | SMRUCC.genomics.Core 10.5.9762.7562 |
37 | |
| SecondaryStructures | 蛋白质的二级结构分类 | SMRUCC.genomics.Core 10.5.9753.40023 |
8 |
| SecondaryStructures | 蛋白质的二级结构分类 | SMRUCC.genomics.Core 10.5.9762.7562 |
8 |
SMRUCC.genomics.ProteinModel.ChouFasmanRules.Rules
| Type | Summary | Package | Members |
|---|---|---|---|
| RuleAlphaHelix | SMRUCC.genomics.Core 10.5.9753.40023 |
1 | |
| RuleAlphaHelix | SMRUCC.genomics.Core 10.5.9762.7562 |
1 | |
| RuleBetaSheet | SMRUCC.genomics.Core 10.5.9753.40023 |
1 | |
| RuleBetaSheet | SMRUCC.genomics.Core 10.5.9762.7562 |
1 | |
| RuleBetaTurn | SMRUCC.genomics.Core 10.5.9753.40023 |
1 | |
| RuleBetaTurn | SMRUCC.genomics.Core 10.5.9762.7562 |
1 | |
| RuleOverlap | SMRUCC.genomics.Core 10.5.9753.40023 |
1 | |
| RuleOverlap | SMRUCC.genomics.Core 10.5.9762.7562 |
1 |
SMRUCC.genomics.SequenceModel
| Type | Summary | Package | Members |
|---|---|---|---|
| BioSequenceValidator | SMRUCC.genomics.Core 10.5.9753.40023 |
5 | |
| BioSequenceValidator | SMRUCC.genomics.Core 10.5.9762.7562 |
5 | |
| Bits | Sequence model in bytes | SMRUCC.genomics.Core 10.5.9753.40023 |
8 |
| Bits | Sequence model in bytes | SMRUCC.genomics.Core 10.5.9762.7562 |
8 |
| IPolymerSequenceModel | Sequence model for a macro biomolecule sequence. | SMRUCC.genomics.Core 10.5.9753.40023 |
1 |
| IPolymerSequenceModel | Sequence model for a macro biomolecule sequence. | SMRUCC.genomics.Core 10.5.9762.7562 |
1 |
| ISequenceBuilder | This class can be using for build a FastaSeq object. | SMRUCC.genomics.Core 10.5.9753.40023 |
3 |
| ISequenceBuilder | This class can be using for build a FastaSeq object. | SMRUCC.genomics.Core 10.5.9762.7562 |
3 |
| ISequenceModel | The biological sequence molecular model. | SMRUCC.genomics.Core 10.5.9753.40023 |
7 |
| ISequenceModel | The biological sequence molecular model. | SMRUCC.genomics.Core 10.5.9762.7562 |
5 |
| KSeqCartesianProduct | kmer sequence generator | SMRUCC.genomics.Core 10.5.9753.40023 |
1 |
| KSeqCartesianProduct | kmer sequence generator | SMRUCC.genomics.Core 10.5.9762.7562 |
1 |
| MolecularWeightCalculator | 核酸链或者多肽链分子的相对分子质量的计算工具 | SMRUCC.genomics.Core 10.5.9753.40023 |
15 |
| MolecularWeightCalculator | 核酸链或者多肽链分子的相对分子质量的计算工具 | SMRUCC.genomics.Core 10.5.9762.7562 |
15 |
| SeqTypes | SMRUCC.genomics.Core 10.5.9753.40023 |
8 | |
| SeqTypes | SMRUCC.genomics.Core 10.5.9762.7562 |
8 | |
| TypeExtensions | Extensions helper function for different type of bio-sequence. | SMRUCC.genomics.Core 10.5.9753.40023 |
13 |
| TypeExtensions | Extensions helper function for different type of bio-sequence. | SMRUCC.genomics.Core 10.5.9762.7562 |
13 |
SMRUCC.genomics.SequenceModel.FASTA
| Type | Summary | Package | Members |
|---|---|---|---|
| Extensions | SMRUCC.genomics.Core 10.5.9753.40023 |
3 | |
| Extensions | SMRUCC.genomics.Core 10.5.9762.7562 |
2 | |
| FastaFile | A FASTA file that contains multiple sequence data. | SMRUCC.genomics.Core 10.5.9753.40023 |
48 |
| FastaFile | A FASTA file that contains multiple sequence data. | SMRUCC.genomics.Core 10.5.9762.7562 |
20 |
| FastaSeq | The FASTA format file of a bimolecular sequence.(Notice that this file is only contains on sequence.) | SMRUCC.genomics.Core 10.5.9753.40023 |
41 |
| FastaSeq | The FASTA format file of a bimolecular sequence.(Notice that this file is only contains on sequence.) | SMRUCC.genomics.Core 10.5.9762.7562 |
29 |
| HeaderFormats | Fasta序列在不同的数据库之中的标题的格式的帮助函数模块 | SMRUCC.genomics.Core 10.5.9753.40023 |
4 |
| HeaderFormats | Fasta序列在不同的数据库之中的标题的格式的帮助函数模块 | SMRUCC.genomics.Core 10.5.9762.7562 |
4 |
| IAbstractFastaToken | The fasta object is a sequence model object with a specific title to identify the sequence and a sequence data property to represents the specific molecule. | SMRUCC.genomics.Core 10.5.9753.40023 |
2 |
| IAbstractFastaToken | The fasta object is a sequence model object with a specific title to identify the sequence and a sequence data property to represents the specific molecule. | SMRUCC.genomics.Core 10.5.9762.7562 |
2 |
| IFastaProvider | A fasta sequence data provider | SMRUCC.genomics.Core 10.5.9753.40023 |
2 |
| IFastaProvider | A fasta sequence data provider | SMRUCC.genomics.Core 10.5.9762.7562 |
2 |
| ISequenceProvider | This object could provide a biological sequence data through ISequenceProvider.GetSequenceData() function. | SMRUCC.genomics.Core 10.5.9753.40023 |
1 |
| ISequenceProvider | This object could provide a biological sequence data through ISequenceProvider.GetSequenceData() function. | SMRUCC.genomics.Core 10.5.9762.7562 |
1 |
| StreamIterator | 流式 FASTA 读取器:逐条读取,内存占用恒定(仅当前序列)。读取超大型的fasta文件所需要的一个数据对象 | SMRUCC.genomics.Core 10.5.9753.40023 |
14 |
| StreamIterator | 流式 FASTA 读取器:逐条读取,内存占用恒定(仅当前序列)。读取超大型的fasta文件所需要的一个数据对象 | SMRUCC.genomics.Core 10.5.9762.7562 |
12 |
| StreamWriter | A fasta stream writer, apply for write a huge fasta seqnce collection | SMRUCC.genomics.Core 10.5.9753.40023 |
4 |
| StreamWriter | A fasta stream writer, apply for write a huge fasta seqnce collection | SMRUCC.genomics.Core 10.5.9762.7562 |
0 |
SMRUCC.genomics.SequenceModel.FASTA.Reflection
| Type | Summary | Package | Members |
|---|---|---|---|
| FastaAttributeItem | SMRUCC.genomics.Core 10.5.9753.40023 |
4 | |
| FastaAttributeItem | SMRUCC.genomics.Core 10.5.9762.7562 |
4 | |
| FastaExportMethods | 對象模塊將數據庫中的一條記錄轉換為一條FASTA序列對象 | SMRUCC.genomics.Core 10.5.9753.40023 |
9 |
| FastaExportMethods | 對象模塊將數據庫中的一條記錄轉換為一條FASTA序列對象 | SMRUCC.genomics.Core 10.5.9762.7562 |
8 |
| FastaObject | 用於類型定義上的FASTA序列對象的標題格式 | SMRUCC.genomics.Core 10.5.9753.40023 |
3 |
| FastaObject | 用於類型定義上的FASTA序列對象的標題格式 | SMRUCC.genomics.Core 10.5.9762.7562 |
3 |
| FastaSequenceEntry | 自定義屬性用於指示哪一個屬性值為目標對象的序列數據 | SMRUCC.genomics.Core 10.5.9753.40023 |
0 |
| FastaSequenceEntry | 自定義屬性用於指示哪一個屬性值為目標對象的序列數據 | SMRUCC.genomics.Core 10.5.9762.7562 |
0 |
SMRUCC.genomics.SequenceModel.NucleotideModels
| Type | Summary | Package | Members |
|---|---|---|---|
| Assembly | SMRUCC.genomics.Core 10.5.9753.40023 |
4 | |
| Assembly | SMRUCC.genomics.Core 10.5.9762.7562 |
3 | |
| Bases | SMRUCC.genomics.Core 10.5.9753.40023 |
2 | |
| Bases | SMRUCC.genomics.Core 10.5.9762.7562 |
2 | |
| ChunkedNtFasta | 分块存储的FASTA序列对象,用于处理大型基因组序列,例如植物基因组,动物基因组这些序列长度超过了2GB的基因组序列 | SMRUCC.genomics.Core 10.5.9753.40023 |
9 |
| ChunkedNtFasta | 分块存储的FASTA序列对象,用于处理大型基因组序列,例如植物基因组,动物基因组这些序列长度超过了2GB的基因组序列 | SMRUCC.genomics.Core 10.5.9762.7562 |
9 |
| Contig | a model for nucleotide sequence region on genomics sequence | SMRUCC.genomics.Core 10.5.9753.40023 |
7 |
| Contig | a model for nucleotide sequence region on genomics sequence | SMRUCC.genomics.Core 10.5.9762.7562 |
3 |
| Conversion | 转换包含有普通类型的基本碱基字符,还包括有简并碱基字符 | SMRUCC.genomics.Core 10.5.9753.40023 |
8 |
| Conversion | 转换包含有普通类型的基本碱基字符,还包括有简并碱基字符 | SMRUCC.genomics.Core 10.5.9762.7562 |
8 |
| DegenerateBasesExtensions | 简并碱基 简并碱基是根据密码子的兼并性,常用一个符号代替某两个或者更多碱基。 根据密码子的兼并性,常用一个符号代替某两个或者更多碱基。例如,编译丙氨酸的 可以有4个密码子GCU\GCC\GCA\GCG,这时生物学上为了方便,用字母N指代UCAG 四个碱基,故说编译丙氨酸的密码子是GCN,其中N就是简并碱基。 通常生物学上根据蛋白质序列设计引… | SMRUCC.genomics.Core 10.5.9753.40023 |
4 |
| DegenerateBasesExtensions | 简并碱基 简并碱基是根据密码子的兼并性,常用一个符号代替某两个或者更多碱基。 根据密码子的兼并性,常用一个符号代替某两个或者更多碱基。例如,编译丙氨酸的 可以有4个密码子GCU\GCC\GCA\GCG,这时生物学上为了方便,用字母N指代UCAG 四个碱基,故说编译丙氨酸的密码子是GCN,其中N就是简并碱基。 通常生物学上根据蛋白质序列设计引… | SMRUCC.genomics.Core 10.5.9762.7562 |
4 |
| DNA | Deoxyribonucleotides NT base which consist of the DNA sequence. | SMRUCC.genomics.Core 10.5.9753.40023 |
32 |
| DNA | Deoxyribonucleotides NT base which consist of the DNA sequence. | SMRUCC.genomics.Core 10.5.9762.7562 |
32 |
| Extensions | SMRUCC.genomics.Core 10.5.9753.40023 |
7 | |
| Extensions | SMRUCC.genomics.Core 10.5.9762.7562 |
7 | |
| mRNA | SMRUCC.genomics.Core 10.5.9753.40023 |
1 | |
| mRNA | SMRUCC.genomics.Core 10.5.9762.7562 |
1 | |
| NucleicAcid | The nucleotide sequence object.(核酸序列对象) | SMRUCC.genomics.Core 10.5.9753.40023 |
32 |
| NucleicAcid | The nucleotide sequence object.(核酸序列对象) | SMRUCC.genomics.Core 10.5.9762.7562 |
19 |
| NucleicAcidStaticsProperty | NucleicAcid sequence property calculator | SMRUCC.genomics.Core 10.5.9753.40023 |
14 |
| NucleicAcidStaticsProperty | NucleicAcid sequence property calculator | SMRUCC.genomics.Core 10.5.9762.7562 |
11 |
| SegmentObject | 片段数据,包含有在目标核酸链之上的位置信息以及用户给这个片段的自定义的标签信息 | SMRUCC.genomics.Core 10.5.9753.40023 |
9 |
| SegmentObject | 片段数据,包含有在目标核酸链之上的位置信息以及用户给这个片段的自定义的标签信息 | SMRUCC.genomics.Core 10.5.9762.7562 |
7 |
| SimpleSegment | 没有更多的复杂的继承或者接口实现,只是最简单序列片段对象 | SMRUCC.genomics.Core 10.5.9753.40023 |
11 |
| SimpleSegment | 没有更多的复杂的继承或者接口实现,只是最简单序列片段对象 | SMRUCC.genomics.Core 10.5.9762.7562 |
8 |
SMRUCC.genomics.SequenceModel.NucleotideModels.Translation
| Type | Summary | Package | Members |
|---|---|---|---|
| Codon | 密码子对象 | SMRUCC.genomics.Core 10.5.9753.40023 |
14 |
| Codon | 密码子对象 | SMRUCC.genomics.Core 10.5.9762.7562 |
14 |
| GeneticCodes | http://www.ncbi.nlm.nih.gov/Taxonomy/taxonomyhome.html/index.cgi?chapter=tgencodes#SG25 | SMRUCC.genomics.Core 10.5.9753.40023 |
37 |
| GeneticCodes | http://www.ncbi.nlm.nih.gov/Taxonomy/taxonomyhome.html/index.cgi?chapter=tgencodes#SG25 | SMRUCC.genomics.Core 10.5.9762.7562 |
37 |
| NtHelper | SMRUCC.genomics.Core 10.5.9753.40023 |
1 | |
| NtHelper | SMRUCC.genomics.Core 10.5.9762.7562 |
1 | |
| TranslationTable | transl_table=1 标准密码子表 | SMRUCC.genomics.Core 10.5.9753.40023 |
5 |
| TranslationTable | transl_table=1 标准密码子表 | SMRUCC.genomics.Core 10.5.9762.7562 |
4 |
| TranslTable | Compiled by Andrzej (Anjay) Elzanowski and Jim Ostell at National Center for Biotechnology Information (NCBI), Bethesda, Maryland, U.S.A. | SMRUCC.genomics.Core 10.5.9753.40023 |
17 |
| TranslTable | Compiled by Andrzej (Anjay) Elzanowski and Jim Ostell at National Center for Biotechnology Information (NCBI), Bethesda, Maryland, U.S.A. | SMRUCC.genomics.Core 10.5.9762.7562 |
14 |
| TranslTableTextReader | SMRUCC.genomics.Core 10.5.9753.40023 |
1 | |
| TranslTableTextReader | SMRUCC.genomics.Core 10.5.9762.7562 |
1 |
SMRUCC.genomics.SequenceModel.Patterns
| Type | Summary | Package | Members |
|---|---|---|---|
| IPatternSite | SMRUCC.genomics.Core 10.5.9753.40023 |
4 | |
| IPatternSite | SMRUCC.genomics.Core 10.5.9762.7562 |
3 | |
| PatternModel | 一个经过多序列比对对齐操作的序列集合之中所得到的残基的出现频率模型,可以用这个模型来计算突变率以及SNP位点 | SMRUCC.genomics.Core 10.5.9753.40023 |
6 |
| PatternModel | 一个经过多序列比对对齐操作的序列集合之中所得到的残基的出现频率模型,可以用这个模型来计算突变率以及SNP位点 | SMRUCC.genomics.Core 10.5.9762.7562 |
1 |
| PatternsAPI | SMRUCC.genomics.Core 10.5.9753.40023 |
8 | |
| PatternsAPI | SMRUCC.genomics.Core 10.5.9762.7562 |
7 | |
| SimpleSite | SMRUCC.genomics.Core 10.5.9753.40023 |
8 | |
| SimpleSite | SMRUCC.genomics.Core 10.5.9762.7562 |
1 |
SMRUCC.genomics.SequenceModel.Patterns.Clustal
SMRUCC.genomics.SequenceModel.Patterns.Variation
| Type | Summary | Package | Members |
|---|---|---|---|
| Variations | SMRUCC.genomics.Core 10.5.9753.40023 |
18 | |
| Variations | SMRUCC.genomics.Core 10.5.9762.7562 |
18 |
SMRUCC.genomics.SequenceModel.Polypeptides
| Type | Summary | Package | Members |
|---|---|---|---|
| AminoAcid | Enumerates all of the 20 amino acids. | SMRUCC.genomics.Core 10.5.9753.40023 |
46 |
| AminoAcid | Enumerates all of the 20 amino acids. | SMRUCC.genomics.Core 10.5.9762.7562 |
46 |
| AminoAcidObjUtility | SMRUCC.genomics.Core 10.5.9753.40023 |
22 | |
| AminoAcidObjUtility | SMRUCC.genomics.Core 10.5.9762.7562 |
22 | |
| Polypeptide | Protein polypeptide sequence. | SMRUCC.genomics.Core 10.5.9753.40023 |
8 |
| Polypeptide | Protein polypeptide sequence. | SMRUCC.genomics.Core 10.5.9762.7562 |
8 |
SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper
| Type | Summary | Package | Members |
|---|---|---|---|
| CLI | Rockhopper 命令行程序。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9753.40023 |
5 |
| CLI | Rockhopper 命令行程序。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9762.7562 |
5 |
| RockhopperParameters | Rockhopper 的全部可配置运行参数。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9753.40023 |
33 |
| RockhopperParameters | Rockhopper 的全部可配置运行参数。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9762.7562 |
33 |
| RockhopperPipeline | Rockhopper 主流程。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9753.40023 |
2 |
| RockhopperPipeline | Rockhopper 主流程。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9762.7562 |
2 |
SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper.Alignment
| Type | Summary | Package | Members |
|---|---|---|---|
| Aligner | 参考依赖比对器。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9753.40023 |
19 |
| Aligner | 参考依赖比对器。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9762.7562 |
19 |
| AlignmentHit | 一次比对命中。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9753.40023 |
9 |
| AlignmentHit | 一次比对命中。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9762.7562 |
9 |
| DpResult | 动态规划比对结果。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9753.40023 |
6 |
| DpResult | 动态规划比对结果。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9762.7562 |
6 |
| FMIndex | 基于 Burrows-Wheeler 变换的 FM-index(显式哨兵实现)。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9753.40023 |
13 |
| FMIndex | 基于 Burrows-Wheeler 变换的 FM-index(显式哨兵实现)。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9762.7562 |
13 |
| IFmIndex | FM-index 接口:精确匹配统计与定位,供种子-延伸使用。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9753.40023 |
3 |
| IFmIndex | FM-index 接口:精确匹配统计与定位,供种子-延伸使用。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9762.7562 |
3 |
| SeedExtend | 质量感知的动态规划比对。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9753.40023 |
8 |
| SeedExtend | 质量感知的动态规划比对。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9762.7562 |
8 |
| SuffixArray | 后缀数组(Suffix Array)构建器。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9753.40023 |
1 |
| SuffixArray | 后缀数组(Suffix Array)构建器。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9762.7562 |
1 |
SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper.AnalysisAPI
| Type | Summary | Package | Members |
|---|---|---|---|
| DeNovolTranscript | de novo 转录本结果(transcripts.txt)的读取与转换。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9753.40023 |
1 |
| DeNovolTranscript | de novo 转录本结果(transcripts.txt)的读取与转换。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9762.7562 |
1 |
| Operon | 预测得到的一个操纵子。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9753.40023 |
6 |
| Operon | 预测得到的一个操纵子。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9762.7562 |
6 |
| RockhopperAPI | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9753.40023 |
14 | |
| RockhopperAPI | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9762.7562 |
14 | |
| Transcripts | 从 RNA-seq 数据之中分析出来的基因/转录本结构。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9753.40023 |
26 |
| Transcripts | 从 RNA-seq 数据之中分析出来的基因/转录本结构。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9762.7562 |
26 |
| TranscriptView | 外部 TSS 注释表的一行。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9753.40023 |
18 |
| TranscriptView | 外部 TSS 注释表的一行。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9762.7562 |
18 |
| TSSsAnalysis | 从分析结果之中解析出 TSS→ATG 的序列(5'UTR)、-35 区→TSS 的序列(启动子)、 TGA→TTS 的序列(3'UTR)等,用于下游 motif 分析。 所生成的 FASTA 序列文件中每条序列标题的第一个元素都是基因号。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9753.40023 |
10 |
| TSSsAnalysis | 从分析结果之中解析出 TSS→ATG 的序列(5'UTR)、-35 区→TSS 的序列(启动子)、 TGA→TTS 的序列(3'UTR)等,用于下游 motif 分析。 所生成的 FASTA 序列文件中每条序列标题的第一个元素都是基因号。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9762.7562 |
10 |
| TSSsCategory | 进行 TSS 位点的分类处理。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9753.40023 |
3 |
| TSSsCategory | 进行 TSS 位点的分类处理。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9762.7562 |
3 |
SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper.AnalysisAPI.RockhopperAPI
| Type | Summary | Package | Members |
|---|---|---|---|
| GeneStructures | 4 个序列结构集合(5'UTR / 启动子 / TSS / TTS)。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9753.40023 |
0 |
| GeneStructures | 4 个序列结构集合(5'UTR / 启动子 / TSS / TTS)。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9762.7562 |
0 |
SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper.AnalysisAPI.Transcripts
| Type | Summary | Package | Members |
|---|---|---|---|
| Categories | Figure 1 Identification of transcription start sites (TSS) in the S. | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9753.40023 |
16 |
| Categories | Figure 1 Identification of transcription start sites (TSS) in the S. | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9762.7562 |
16 |
SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper.Assembly
| Type | Summary | Package | Members |
|---|---|---|---|
| DeNovoAssembler | de novo 转录组组装器。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9753.40023 |
27 |
| DeNovoAssembler | de novo 转录组组装器。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9762.7562 |
27 |
| DeNovoIndex | 候选转录本的 BWT 索引与读段二次比对。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9753.40023 |
2 |
| DeNovoIndex | 候选转录本的 BWT 索引与读段二次比对。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9762.7562 |
2 |
| DeNovoTranscript | 一条 de novo 组装得到的转录本。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9753.40023 |
6 |
| DeNovoTranscript | 一条 de novo 组装得到的转录本。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9762.7562 |
6 |
| DeNovoTranscripts | de novo 转录本集合。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9753.40023 |
4 |
| DeNovoTranscripts | de novo 转录本集合。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9762.7562 |
4 |
SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper.Core
| Type | Summary | Package | Members |
|---|---|---|---|
| AlignmentCoverage | 单个重复实验、单个基因组(replicon)在正负链上的逐碱基覆盖度。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9753.40023 |
5 |
| AlignmentCoverage | 单个重复实验、单个基因组(replicon)在正负链上的逐碱基覆盖度。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9762.7562 |
5 |
| Condition | A Condition keeps track of the RNA-seq data in each replicate experiment for a given condition. | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9753.40023 |
12 |
| Condition | A Condition keeps track of the RNA-seq data in each replicate experiment for a given condition. | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9762.7562 |
12 |
| Gene | A Gene object represents a gene (either protein-coding or RNA). | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9753.40023 |
45 |
| Gene | A Gene object represents a gene (either protein-coding or RNA). | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9762.7562 |
45 |
| Genome | An instance of the Genome class represents a genome and its annotation, including the genome sequence, protein-coding genes, and RNA genes in the genome. | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9753.40023 |
25 |
| Genome | An instance of the Genome class represents a genome and its annotation, including the genome sequence, protein-coding genes, and RNA genes in the genome. | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9762.7562 |
25 |
| Logging | 运行期共享状态,保存 Rockhopper 执行过程中的全局参数与输出通道。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9753.40023 |
4 |
| Logging | 运行期共享状态,保存 Rockhopper 执行过程中的全局参数与输出通道。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9762.7562 |
4 |
| Operon | 一个多基因操纵子。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9753.40023 |
7 |
| Operon | 一个多基因操纵子。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9762.7562 |
7 |
| OperonGenePair | 相邻基因对的共转录证据。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9753.40023 |
7 |
| OperonGenePair | 相邻基因对的共转录证据。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9762.7562 |
7 |
| Replicate | A Replicate object represents information about a single RNA-seq experiment, including information about all reads from the experiment. | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9753.40023 |
30 |
| Replicate | A Replicate object represents information about a single RNA-seq experiment, including information about all reads from the experiment. | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9762.7562 |
30 |
| Replicon | 单个复制子(染色体/质粒)的核酸序列模型。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9753.40023 |
7 |
| Replicon | 单个复制子(染色体/质粒)的核酸序列模型。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9762.7562 |
7 |
| RNA | 极简的 RNA 区段模型:起始、终止与链方向。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9753.40023 |
0 |
| RNA | 极简的 RNA 区段模型:起始、终止与链方向。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9762.7562 |
0 |
| Transcript | 转录本(基因或预测得到的新转录本/RNA)。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9753.40023 |
21 |
| Transcript | 转录本(基因或预测得到的新转录本/RNA)。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9762.7562 |
21 |
| TranscriptExtensions | 转录本集合辅助方法。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9753.40023 |
1 |
| TranscriptExtensions | 转录本集合辅助方法。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9762.7562 |
1 |
SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper.FileIO
| Type | Summary | Package | Members |
|---|---|---|---|
| CoverageStore | AlignmentCoverage 的读写器。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9753.40023 |
2 |
| CoverageStore | AlignmentCoverage 的读写器。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9762.7562 |
2 |
| GenomeReader | 基因组目录读取器。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9753.40023 |
3 |
| GenomeReader | 基因组目录读取器。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9762.7562 |
3 |
| Read | 一条用于比对的测序读段(统一后的轻量视图,屏蔽输入格式差异)。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9753.40023 |
5 |
| Read | 一条用于比对的测序读段(统一后的轻量视图,屏蔽输入格式差异)。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9762.7562 |
5 |
| ReadFileFormat | 支持的读段文件格式。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9753.40023 |
6 |
| ReadFileFormat | 支持的读段文件格式。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9762.7562 |
6 |
| ReadsReader | 读段文件读取器。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9753.40023 |
8 |
| ReadsReader | 读段文件读取器。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9762.7562 |
8 |
| ResultWriter | Rockhopper 分析结果写出器。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9753.40023 |
3 |
| ResultWriter | Rockhopper 分析结果写出器。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9762.7562 |
3 |
| SamRecord | 一条 SAM 比对记录(字段名遵循 SAM 规范)。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9753.40023 |
15 |
| SamRecord | 一条 SAM 比对记录(字段名遵循 SAM 规范)。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9762.7562 |
15 |
| SamWriter | SAM 文件写出器。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9753.40023 |
2 |
| SamWriter | SAM 文件写出器。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9762.7562 |
2 |
| WigWriter | 生成可供基因组浏览器(IGV 等)加载的 WIG 轨道文件。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9753.40023 |
4 |
| WigWriter | 生成可供基因组浏览器(IGV 等)加载的 WIG 轨道文件。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9762.7562 |
4 |
SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper.Operons
| Type | Summary | Package | Members |
|---|---|---|---|
| OperonPrediction | 操纵子预测器。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9753.40023 |
4 |
| OperonPrediction | 操纵子预测器。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9762.7562 |
4 |
| OperonPredictionOptions | 操纵子预测参数。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9753.40023 |
4 |
| OperonPredictionOptions | 操纵子预测参数。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9762.7562 |
4 |
SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper.Quantification
| Type | Summary | Package | Members |
|---|---|---|---|
| Quantification | 表达定量流程:上四分位归一化、均值/RPKM 计算与差异表达检验。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9753.40023 |
5 |
| Quantification | 表达定量流程:上四分位归一化、均值/RPKM 计算与差异表达检验。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9762.7562 |
5 |
SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper.Regulation
| Type | Summary | Package | Members |
|---|---|---|---|
| EnrichmentRow | 富集报表的一行。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9753.40023 |
5 |
| EnrichmentRow | 富集报表的一行。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9762.7562 |
5 |
| KEGGEnrichment | 差异 TSS/TTS 基因的 KEGG 通路富集。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9753.40023 |
1 |
| KEGGEnrichment | 差异 TSS/TTS 基因的 KEGG 通路富集。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9762.7562 |
1 |
| PromoterScore | 单个 TSS 的 σ70 启动子打分结果。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9753.40023 |
10 |
| PromoterScore | 单个 TSS 的 σ70 启动子打分结果。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9762.7562 |
10 |
| Sigma70Validation | σ70 启动子验证。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9753.40023 |
11 |
| Sigma70Validation | σ70 启动子验证。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9762.7562 |
11 |
| TranscriptLoci | 单个转录本用于比较的位点信息(避免与具体转录本模型耦合)。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9753.40023 |
3 |
| TranscriptLoci | 单个转录本用于比较的位点信息(避免与具体转录本模型耦合)。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9762.7562 |
3 |
| TSSsDifferent | 一个基因在两个实验条件之间 TSS/TTS 的差异。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9753.40023 |
14 |
| TSSsDifferent | 一个基因在两个实验条件之间 TSS/TTS 的差异。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9762.7562 |
14 |
| TSSsDifferentAnalysis | 条件间 TSS/TTS 差异计算。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9753.40023 |
2 |
| TSSsDifferentAnalysis | 条件间 TSS/TTS 差异计算。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9762.7562 |
2 |
SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper.Transcription
| Type | Summary | Package | Members |
|---|---|---|---|
| GeneTypes | 基因类型(与原始实现的 GeneTypes 保持一致)。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9753.40023 |
2 |
| GeneTypes | 基因类型(与原始实现的 GeneTypes 保持一致)。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9762.7562 |
2 |
| TssCategory | TSS 的六分类(外加"未分类")。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9753.40023 |
16 |
| TssCategory | TSS 的六分类(外加"未分类")。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9762.7562 |
16 |
| TSSsCategory | TSS 位点分类器。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9753.40023 |
4 |
| TSSsCategory | TSS 位点分类器。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9762.7562 |
4 |
| TSSsInference | 基于读段覆盖分布的转录边界推断。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9753.40023 |
14 |
| TSSsInference | 基于读段覆盖分布的转录边界推断。 | SMRUCC.genomics.SequenceModel.RNA_Seq.Rockhopper 1.0.9762.7562 |
14 |
SMRUCC.genomics.SequenceModel.Slicer
| Type | Summary | Package | Members |
|---|---|---|---|
| CutSequence | Cut sequence for DNA/protein | SMRUCC.genomics.Core 10.5.9753.40023 |
9 |
| CutSequence | Cut sequence for DNA/protein | SMRUCC.genomics.Core 10.5.9762.7562 |
8 |
| GenBankSlicer | slicer for the ncbi genbank origin sequence, which is stored in the GBFF file, this slicer can be used to cut a specific sequence region from a genbank sequence file | SMRUCC.genomics.Core 10.5.9753.40023 |
1 |
| GenBankSlicer | slicer for the ncbi genbank origin sequence, which is stored in the GBFF file, this slicer can be used to cut a specific sequence region from a genbank sequence file | SMRUCC.genomics.Core 10.5.9762.7562 |
1 |
| ISlicer | A wrapper of the biological sequence region cutter, which can be used to cut a specific sequence region from a FASTA sequence or a chunked FASTA sequence | SMRUCC.genomics.Core 10.5.9753.40023 |
3 |
| ISlicer | A wrapper of the biological sequence region cutter, which can be used to cut a specific sequence region from a FASTA sequence or a chunked FASTA sequence | SMRUCC.genomics.Core 10.5.9762.7562 |
3 |
| KSeq | k-mer sequence model | SMRUCC.genomics.Core 10.5.9753.40023 |
8 |
| KSeq | k-mer sequence model | SMRUCC.genomics.Core 10.5.9762.7562 |
8 |
SMRUCC.genomics.Visualize
| Type | Summary | Package | Members |
|---|---|---|---|
| ColorMap | Entity to color mapper | SMRUCC.genomics.Visualize.Extensions 1.0.9753.40023 |
3 |
| ColorMap | Entity to color mapper | SMRUCC.genomics.Visualize.Extensions 1.0.9762.7562 |
0 |
| ColorMgr | The color manager | SMRUCC.genomics.Visualize.Extensions 1.0.9753.40023 |
7 |
| ColorMgr | The color manager | SMRUCC.genomics.Visualize.Extensions 1.0.9762.7562 |
7 |
| DEGPlot | SMRUCC.genomics.Visualize 1.0.9753.40023 |
1 | |
| DEGPlot | SMRUCC.genomics.Visualize 1.0.9762.7562 |
1 | |
| EnrichmentCategoryHeatmap | SMRUCC.genomics.Visualize 1.0.9753.40023 |
1 | |
| EnrichmentCategoryHeatmap | SMRUCC.genomics.Visualize 1.0.9762.7562 |
1 | |
| Extensions | SMRUCC.genomics.Visualize.Extensions 1.0.9753.40023 |
1 | |
| Extensions | SMRUCC.genomics.Visualize.Extensions 1.0.9762.7562 |
1 | |
| GCPlot | SMRUCC.genomics.Visualize 1.0.9753.40023 |
2 | |
| GCPlot | SMRUCC.genomics.Visualize 1.0.9762.7562 |
2 | |
| GCSkew | plotting the GC% and GC skew curve. | SMRUCC.genomics.Visualize.Extensions 1.0.9753.40023 |
9 |
| GCSkew | plotting the GC% and GC skew curve. | SMRUCC.genomics.Visualize.Extensions 1.0.9762.7562 |
9 |
| GSVADiff | the difference analysis result of two pathway | SMRUCC.genomics.Visualize 1.0.9753.40023 |
3 |
| GSVADiff | the difference analysis result of two pathway | SMRUCC.genomics.Visualize 1.0.9762.7562 |
3 |
| GSVADiffBar | SMRUCC.genomics.Visualize 1.0.9753.40023 |
1 | |
| GSVADiffBar | SMRUCC.genomics.Visualize 1.0.9762.7562 |
1 | |
| LabelTypes | SMRUCC.genomics.Visualize 1.0.9753.40023 |
5 | |
| LabelTypes | SMRUCC.genomics.Visualize 1.0.9762.7562 |
5 | |
| MapLabelLayout | SMRUCC.genomics.Visualize.Extensions 1.0.9753.40023 |
4 | |
| MapLabelLayout | SMRUCC.genomics.Visualize.Extensions 1.0.9762.7562 |
4 | |
| MapModelCommon | 绘图模型的通用基本类型结构 | SMRUCC.genomics.Visualize.Extensions 1.0.9753.40023 |
14 |
| MapModelCommon | 绘图模型的通用基本类型结构 | SMRUCC.genomics.Visualize.Extensions 1.0.9762.7562 |
13 |
| RegulationSerials | SMRUCC.genomics.Visualize 1.0.9753.40023 |
1 | |
| RegulationSerials | SMRUCC.genomics.Visualize 1.0.9762.7562 |
1 | |
| RenderingColor | SMRUCC.genomics.Visualize.Extensions 1.0.9753.40023 |
5 | |
| RenderingColor | SMRUCC.genomics.Visualize.Extensions 1.0.9762.7562 |
5 | |
| SampleColorBend | SMRUCC.genomics.Visualize 1.0.9753.40023 |
1 | |
| SampleColorBend | SMRUCC.genomics.Visualize 1.0.9762.7562 |
1 | |
| Volcano | 用来可视化差异表达基因 | SMRUCC.genomics.Visualize 1.0.9753.40023 |
1 |
| Volcano | 用来可视化差异表达基因 | SMRUCC.genomics.Visualize 1.0.9762.7562 |
1 |
| VolcanoMultiple | volcano of multiple comparision analysis result | SMRUCC.genomics.Visualize 1.0.9753.40023 |
1 |
| VolcanoMultiple | volcano of multiple comparision analysis result | SMRUCC.genomics.Visualize 1.0.9762.7562 |
1 |
SMRUCC.genomics.Visualize.CatalogProfiling
| Type | Summary | Package | Members |
|---|---|---|---|
| BubbleTerm | SMRUCC.genomics.Visualize.Extensions 1.0.9753.40023 |
7 | |
| BubbleTerm | SMRUCC.genomics.Visualize.Extensions 1.0.9762.7562 |
5 | |
| CatalogBubblePlot | SMRUCC.genomics.Visualize.Extensions 1.0.9753.40023 |
3 | |
| CatalogBubblePlot | SMRUCC.genomics.Visualize.Extensions 1.0.9762.7562 |
3 | |
| CatalogHeatMap | heatmap data of the KEGG enrichment between multiple groups data: 1. | SMRUCC.genomics.Visualize.Extensions 1.0.9753.40023 |
1 |
| CatalogHeatMap | heatmap data of the KEGG enrichment between multiple groups data: 1. | SMRUCC.genomics.Visualize.Extensions 1.0.9762.7562 |
1 |
| CatalogProfilingPlot | COG, GO, KEGG | SMRUCC.genomics.Visualize.Extensions 1.0.9753.40023 |
10 |
| CatalogProfilingPlot | COG, GO, KEGG | SMRUCC.genomics.Visualize.Extensions 1.0.9762.7562 |
6 |
| DAScorePlot | 横坐标是DA-score值,公式为DA-score=(上调物质数-下调物质数)/该通路上差异总物质数,纵坐标是代谢通路,柱形顶部点大小表示该通路上富集的差异代谢物数目。 | SMRUCC.genomics.Visualize.Extensions 1.0.9753.40023 |
0 |
| DAScorePlot | 横坐标是DA-score值,公式为DA-score=(上调物质数-下调物质数)/该通路上差异总物质数,纵坐标是代谢通路,柱形顶部点大小表示该通路上富集的差异代谢物数目。 | SMRUCC.genomics.Visualize.Extensions 1.0.9762.7562 |
0 |
| Extensions | SMRUCC.genomics.Visualize.Extensions 1.0.9753.40023 |
1 | |
| Extensions | SMRUCC.genomics.Visualize.Extensions 1.0.9762.7562 |
1 | |
| LabelDisplayStrategy | the bubble label display strategy | SMRUCC.genomics.Visualize.Extensions 1.0.9753.40023 |
3 |
| LabelDisplayStrategy | the bubble label display strategy | SMRUCC.genomics.Visualize.Extensions 1.0.9762.7562 |
3 |
| MultipleBubble | kegg enrichment bubble in multiple groups 1. | SMRUCC.genomics.Visualize.Extensions 1.0.9753.40023 |
1 |
| MultipleBubble | kegg enrichment bubble in multiple groups 1. | SMRUCC.genomics.Visualize.Extensions 1.0.9762.7562 |
1 |
| MultipleCatalogHeatmap | SMRUCC.genomics.Visualize.Extensions 1.0.9753.40023 |
2 | |
| MultipleCatalogHeatmap | SMRUCC.genomics.Visualize.Extensions 1.0.9762.7562 |
2 | |
| MultipleCategoryProfiles | SMRUCC.genomics.Visualize.Extensions 1.0.9753.40023 |
3 | |
| MultipleCategoryProfiles | SMRUCC.genomics.Visualize.Extensions 1.0.9762.7562 |
3 | |
| TreeOrder | SMRUCC.genomics.Visualize.Extensions 1.0.9753.40023 |
2 | |
| TreeOrder | SMRUCC.genomics.Visualize.Extensions 1.0.9762.7562 |
2 |
SMRUCC.genomics.Visualize.ChromosomeMap
| Type | Summary | Package | Members |
|---|---|---|---|
| ChromesomeMapAPI | This module contains the required API function for create the chromosomes map of a specific bacteria genome. | SMRUCC.genomics.Visualize.ChromosomeMap 1.0.9753.40023 |
9 |
| ChromesomeMapAPI | This module contains the required API function for create the chromosomes map of a specific bacteria genome. | SMRUCC.genomics.Visualize.ChromosomeMap 1.0.9762.7562 |
9 |
| DrawingDevice | SMRUCC.genomics.Visualize.ChromosomeMap 1.0.9753.40023 |
11 | |
| DrawingDevice | SMRUCC.genomics.Visualize.ChromosomeMap 1.0.9762.7562 |
10 | |
| PlasmidAnnotation | SMRUCC.genomics.Visualize.ChromosomeMap 1.0.9753.40023 |
6 | |
| PlasmidAnnotation | SMRUCC.genomics.Visualize.ChromosomeMap 1.0.9762.7562 |
6 | |
| RegionMap | Draw a map of the selected region | SMRUCC.genomics.Visualize.ChromosomeMap 1.0.9753.40023 |
1 |
| RegionMap | Draw a map of the selected region | SMRUCC.genomics.Visualize.ChromosomeMap 1.0.9762.7562 |
1 |
SMRUCC.genomics.Visualize.ChromosomeMap.Configuration
| Type | Summary | Package | Members |
|---|---|---|---|
| Config | 配置数据的文本文件模型,保存或者读取配置数据,请使用本对象类型来执行 | SMRUCC.genomics.Visualize.ChromosomeMap 1.0.9753.40023 |
30 |
| Config | 配置数据的文本文件模型,保存或者读取配置数据,请使用本对象类型来执行 | SMRUCC.genomics.Visualize.ChromosomeMap 1.0.9762.7562 |
1 |
| DataReader | 配置数据的数据模型,请使用Config.ToConfigurationModel()方法来初始化本数据模型对象,真正所被使用到的内存之中的配置文件的对象模型 | SMRUCC.genomics.Visualize.ChromosomeMap 1.0.9753.40023 |
20 |
| DataReader | 配置数据的数据模型,请使用Config.ToConfigurationModel()方法来初始化本数据模型对象,真正所被使用到的内存之中的配置文件的对象模型 | SMRUCC.genomics.Visualize.ChromosomeMap 1.0.9762.7562 |
2 |
| Extensions | SMRUCC.genomics.Visualize.ChromosomeMap 1.0.9753.40023 |
4 | |
| Extensions | SMRUCC.genomics.Visualize.ChromosomeMap 1.0.9762.7562 |
1 |
SMRUCC.genomics.Visualize.ChromosomeMap.DrawingDevice
| Type | Summary | Package | Members |
|---|---|---|---|
| args | 因为调用函数DrawingDevice.drawingImpl())还需要根据DrawingDevice.chrMapDrawerProcessor())的处理情况来判断结束条件 | SMRUCC.genomics.Visualize.ChromosomeMap 1.0.9753.40023 |
0 |
| args | 因为调用函数DrawingDevice.drawingImpl())还需要根据DrawingDevice.chrMapDrawerProcessor())的处理情况来判断结束条件 | SMRUCC.genomics.Visualize.ChromosomeMap 1.0.9762.7562 |
0 |
SMRUCC.genomics.Visualize.ChromosomeMap.DrawingModels
| Type | Summary | Package | Members |
|---|---|---|---|
| ChromesomeDrawingModel | Data model for described a chromosome drawing action invoked.(用于描述如何绘制一个基因组的图形数据的数据模型) | SMRUCC.genomics.Visualize.ChromosomeMap 1.0.9753.40023 |
7 |
| ChromesomeDrawingModel | Data model for described a chromosome drawing action invoked.(用于描述如何绘制一个基因组的图形数据的数据模型) | SMRUCC.genomics.Visualize.ChromosomeMap 1.0.9762.7562 |
7 |
| LabelPaddingExtensions | SMRUCC.genomics.Visualize.ChromosomeMap 1.0.9753.40023 |
2 | |
| LabelPaddingExtensions | SMRUCC.genomics.Visualize.ChromosomeMap 1.0.9762.7562 |
2 | |
| Loci | 长方形 | SMRUCC.genomics.Visualize.ChromosomeMap 1.0.9753.40023 |
5 |
| Loci | 长方形 | SMRUCC.genomics.Visualize.ChromosomeMap 1.0.9762.7562 |
5 |
| ModelColorExtensions | SMRUCC.genomics.Visualize.ChromosomeMap 1.0.9753.40023 |
1 | |
| ModelColorExtensions | SMRUCC.genomics.Visualize.ChromosomeMap 1.0.9762.7562 |
1 | |
| MotifSite | Motif位点 | SMRUCC.genomics.Visualize.ChromosomeMap 1.0.9753.40023 |
5 |
| MotifSite | Motif位点 | SMRUCC.genomics.Visualize.ChromosomeMap 1.0.9762.7562 |
4 |
| MultationPointData | 基因组上面的突变位点的绘图数据 | SMRUCC.genomics.Visualize.ChromosomeMap 1.0.9753.40023 |
5 |
| MultationPointData | 基因组上面的突变位点的绘图数据 | SMRUCC.genomics.Visualize.ChromosomeMap 1.0.9762.7562 |
4 |
| MutationTypes | 突变的类型 | SMRUCC.genomics.Visualize.ChromosomeMap 1.0.9753.40023 |
7 |
| MutationTypes | 突变的类型 | SMRUCC.genomics.Visualize.ChromosomeMap 1.0.9762.7562 |
7 |
| SegmentObject | 染色体上面的一个基因的绘图模型 | SMRUCC.genomics.Visualize.ChromosomeMap 1.0.9753.40023 |
4 |
| SegmentObject | 染色体上面的一个基因的绘图模型 | SMRUCC.genomics.Visualize.ChromosomeMap 1.0.9762.7562 |
4 |
| Site | 基因组之中的一个位点 | SMRUCC.genomics.Visualize.ChromosomeMap 1.0.9753.40023 |
7 |
| Site | 基因组之中的一个位点 | SMRUCC.genomics.Visualize.ChromosomeMap 1.0.9762.7562 |
5 |
| TextPadding | SMRUCC.genomics.Visualize.ChromosomeMap 1.0.9753.40023 |
3 | |
| TextPadding | SMRUCC.genomics.Visualize.ChromosomeMap 1.0.9762.7562 |
3 | |
| TSSs | SMRUCC.genomics.Visualize.ChromosomeMap 1.0.9753.40023 |
2 | |
| TSSs | SMRUCC.genomics.Visualize.ChromosomeMap 1.0.9762.7562 |
2 |
SMRUCC.genomics.Visualize.ChromosomeMap.FootprintMap
| Type | Summary | Package | Members |
|---|---|---|---|
| RegulationMotifSite | Drawing model and method for the footprint motifs. | SMRUCC.genomics.Visualize.ChromosomeMap 1.0.9753.40023 |
1 |
| RegulationMotifSite | Drawing model and method for the footprint motifs. | SMRUCC.genomics.Visualize.ChromosomeMap 1.0.9762.7562 |
1 |
SMRUCC.genomics.Visualize.ChromosomeMap.PlasmidMap
| Type | Summary | Package | Members |
|---|---|---|---|
| PlasmidMapDrawingModel | 全基因组图谱的绘制是线性的,而plasmid图谱则是圆环状的 | SMRUCC.genomics.Visualize.ChromosomeMap 1.0.9753.40023 |
0 |
| PlasmidMapDrawingModel | 全基因组图谱的绘制是线性的,而plasmid图谱则是圆环状的 | SMRUCC.genomics.Visualize.ChromosomeMap 1.0.9762.7562 |
0 |
SMRUCC.genomics.Visualize.ChromosomeMap.PlasmidMap.DrawingModels
SMRUCC.genomics.Visualize.Circos
| Type | Summary | Package | Members |
|---|---|---|---|
| BlastResultExtensions | SMRUCC.genomics.Visualize.Circos.Extensions 1.0.9753.40023 |
3 | |
| BlastResultExtensions | SMRUCC.genomics.Visualize.Circos.Extensions 1.0.9762.7562 |
3 | |
| CircosAPI | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
21 | |
| CircosAPI | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
20 | |
| CircosDebugger | Generates the circos debugger options | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
4 |
| CircosDebugger | Generates the circos debugger options | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
4 |
| DataExtensions | SMRUCC.genomics.Visualize.Circos.Extensions 1.0.9753.40023 |
2 | |
| DataExtensions | SMRUCC.genomics.Visualize.Circos.Extensions 1.0.9762.7562 |
2 | |
| DebugGroups | Circos script -debug_group options | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
40 |
| DebugGroups | Circos script -debug_group options | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
40 |
| Legends | SMRUCC.genomics.Visualize.Circos.Extensions 1.0.9753.40023 |
1 | |
| Legends | SMRUCC.genomics.Visualize.Circos.Extensions 1.0.9762.7562 |
1 | |
| Tools | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
4 | |
| Tools | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
4 |
SMRUCC.genomics.Visualize.Circos.Colors
| Type | Summary | Package | Members |
|---|---|---|---|
| CategoryProfiles | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
1 | |
| CategoryProfiles | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
1 | |
| CircosColor | Crcos程序的所支持的颜色 | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
11 |
| CircosColor | Crcos程序的所支持的颜色 | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
11 |
| GradientMaps | Crcos程序的所支持的颜色 | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
2 |
| GradientMaps | Crcos程序的所支持的颜色 | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
1 |
| MvyaColorProfile | A helper for assign color of myva cog result | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
2 |
| MvyaColorProfile | A helper for assign color of myva cog result | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
2 |
| NtPropsMaps | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
7 | |
| NtPropsMaps | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
7 | |
| NtPropsMapsExtensions | Maps the colors based on the nt property | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
2 |
| NtPropsMapsExtensions | Maps the colors based on the nt property | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
0 |
| PerlColor | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
1 | |
| PerlColor | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
1 |
SMRUCC.genomics.Visualize.Circos.Configurations
| Type | Summary | Package | Members |
|---|---|---|---|
| Circos | circos.conf _ / _(_)_ _ _ _ | | | | '/ / _ \/ |… | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
46 |
| Circos | circos.conf _ / _(_)_ _ _ _ | | | | '/ / _ \/ |… | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
23 |
| CircosAttribute | Alias for SimpleConfig | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
0 |
| CircosAttribute | Alias for SimpleConfig | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
0 |
| CircosRender | Invoke the circos command line tools for drawing the circos plot. | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
8 |
| CircosRender | Invoke the circos command line tools for drawing the circos plot. | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
8 |
| CircosRenderResult | The result package of a circos rendering invocation. | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
9 |
| CircosRenderResult | The result package of a circos rendering invocation. | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
9 |
| Extensions | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
9 | |
| Extensions | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
9 | |
| IdeogramInclude | The <ideogram> block defines the position, size, labels and other properties Of the segments On which data are drawn. | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
1 |
| IdeogramInclude | The <ideogram> block defines the position, size, labels and other properties Of the segments On which data are drawn. | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
0 |
SMRUCC.genomics.Visualize.Circos.Configurations.ComponentModel
| Type | Summary | Package | Members |
|---|---|---|---|
| CircosBlocks | The circos allowed top level configuration block names. | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
6 |
| CircosBlocks | The circos allowed top level configuration block names. | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
6 |
| CircosConfig | Abstract of the circos config files. | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
12 |
| CircosConfig | Abstract of the circos config files. | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
9 |
| CircosDistributed | The circos distributed includes files. | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
6 |
| CircosDistributed | The circos distributed includes files. | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
4 |
| ICircosDocNode | This object can be convert to text document by using method ICircosDocNode.Build()) | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
1 |
| ICircosDocNode | This object can be convert to text document by using method ICircosDocNode.Build()) | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
1 |
| ICircosDocument | This object can be save as a text doc for the circos plot | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
0 |
| ICircosDocument | This object can be save as a text doc for the circos plot | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
0 |
| OverwritesColors | Use Circos.chromosomes_color to change the color Of the ideograms. | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
2 |
| OverwritesColors | Use Circos.chromosomes_color to change the color Of the ideograms. | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
0 |
SMRUCC.genomics.Visualize.Circos.Configurations.Nodes
| Type | Summary | Package | Members |
|---|---|---|---|
| IdeogramBlock | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
17 | |
| IdeogramBlock | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
17 | |
| Spacing | Spacing between ideograms. | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
3 |
| Spacing | Spacing between ideograms. | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
3 |
| TickBlock | Rule unit and displaying | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
12 |
| TickBlock | Rule unit and displaying | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
12 |
| TicksBlock | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
15 | |
| TicksBlock | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
12 |
SMRUCC.genomics.Visualize.Circos.Configurations.Nodes.Plots
| Type | Summary | Package | Members |
|---|---|---|---|
| ConditionalRule | Rules are used to dynamically alter the format of a data point, based on the value of the data point (or any other property of it). | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
14 |
| ConditionalRule | Rules are used to dynamically alter the format of a data point, based on the value of the data point (or any other property of it). | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
14 |
| Connector | 可以用来表示调控关系 | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
2 |
| Connector | 可以用来表示调控关系 | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
1 |
| HeatMap | Heat maps are used for data types which associate a value with a genomic position, Or region. | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
4 |
| HeatMap | Heat maps are used for data types which associate a value with a genomic position, Or region. | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
3 |
| Highlight | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
5 | |
| Highlight | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
1 | |
| Histogram | Histograms are a type Of track that displays 2D data, which associates a value With a genomic position. | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
3 |
| Histogram | Histograms are a type Of track that displays 2D data, which associates a value With a genomic position. | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
2 |
| ITrackPlot | Abstract model of the tracks plot | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
15 |
| ITrackPlot | Abstract model of the tracks plot | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
15 |
| LinkPlot | Links are defined in <link> blocks enclosed in a <links> block. | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
9 |
| LinkPlot | Links are defined in <link> blocks enclosed in a <links> block. | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
7 |
| LinksBlock | The <links> top level block helper.(用于生成 circos 配置文件之中的顶层 <links> 块) | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
1 |
| LinksBlock | The <links> top level block helper.(用于生成 circos 配置文件之中的顶层 <links> 块) | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
1 |
| ScatterPlot | Scatter plots are useful for showing the position of a probe, such as SNP data, on the genome. | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
5 |
| ScatterPlot | Scatter plots are useful for showing the position of a probe, such as SNP data, on the genome. | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
4 |
| TextLabel | Like with other tracks, text is limited to a radial range by setting r0 And r1. | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
18 |
| TextLabel | Like with other tracks, text is limited to a radial range by setting r0 And r1. | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
5 |
| TilePlot | Tile tracks are the Circos equivalent of a genome browser. | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
6 |
| TilePlot | Tile tracks are the Circos equivalent of a genome browser. | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
5 |
| TrackPlot | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
25 | |
| TrackPlot | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
18 |
SMRUCC.genomics.Visualize.Circos.Configurations.Nodes.Plots.Lines
| Type | Summary | Package | Members |
|---|---|---|---|
| LinePlot | Line plots are useful for showing values associated with a position on the ideogram, such as sequence conservation scores, or values derived from a sliding window scan of the gen… | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
3 |
| LinePlot | Line plots are useful for showing values associated with a position on the ideogram, such as sequence conservation scores, or values derived from a sliding window scan of the gen… | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
2 |
SMRUCC.genomics.Visualize.Circos.GdiPlus
| Type | Summary | Package | Members |
|---|---|---|---|
| ChromosomeBand | 一条染色体(ideogram 区段)在圆环之上的角度布局信息 | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
7 |
| ChromosomeBand | 一条染色体(ideogram 区段)在圆环之上的角度布局信息 | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
4 |
| CircosColorResolver | 将 circos/perl 的颜色表达式解析为 .NET 的 Color 对象。 现有的 CircosColor.FromKnownColorName()) 无法解析 circos 发行版之中的 间接颜色定义(例如 vdgrey = greys-9-seq-7)以及带透明度的颜色名 (例如 red_a2 / black_a4),会导致大量颜色退化为… | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
4 |
| CircosColorResolver | 将 circos/perl 的颜色表达式解析为 .NET 的 Color 对象。 现有的 CircosColor.FromKnownColorName()) 无法解析 circos 发行版之中的 间接颜色定义(例如 vdgrey = greys-9-seq-7)以及带透明度的颜色名 (例如 red_a2 / black_a4),会导致大量颜色退化为… | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
4 |
| CircosLayout | circos 文档对象到圆环几何(角度/半径)的映射。 负责: + 按染色体的长度与 ideogram.spacing 分配角度区间 + 处理单染色体模型之中的 loopHole 缺口 + 将基因组坐标映射为角度 | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
9 |
| CircosLayout | circos 文档对象到圆环几何(角度/半径)的映射。 负责: + 按染色体的长度与 ideogram.spacing 分配角度区间 + 处理单染色体模型之中的 loopHole 缺口 + 将基因组坐标映射为角度 | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
9 |
| CircosUnits | circos 配置之中 r / p / u 等尺寸单位的解析与换算工具。 + r:相对于图像半径的比例值(例如 0.85r) + p:绝对像素值(例如 25p) + u:相对于 chromosomes_units 的基因组坐标单位(例如 1u) + dims(...):引用图像/ideogram 的尺寸表达式(例如 dims(ideogram,r… | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
7 |
| CircosUnits | circos 配置之中 r / p / u 等尺寸单位的解析与换算工具。 + r:相对于图像半径的比例值(例如 0.85r) + p:绝对像素值(例如 25p) + u:相对于 chromosomes_units 的基因组坐标单位(例如 1u) + dims(...):引用图像/ideogram 的尺寸表达式(例如 dims(ideogram,r… | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
7 |
| GdiCanvas | 封装 IGraphics,提供圆环绘图所需的高层几何辅助方法。 角度约定:0 度为正上方(12 点钟方向),顺时针方向为正。 (GDI+ 自身以 3 点钟方向为 0 度、顺时针为正,内部会自动做 -90 度的换算) | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
16 |
| GdiCanvas | 封装 IGraphics,提供圆环绘图所需的高层几何辅助方法。 角度约定:0 度为正上方(12 点钟方向),顺时针方向为正。 (GDI+ 自身以 3 点钟方向为 0 度、顺时针为正,内部会自动做 -90 度的换算) | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
13 |
| GdiRender | 内置 GDI+ 绘图引擎的渲染入口。 直接读取已经构建完成的 circos 文档对象(Circos),在 .NET 环境 之中通过 GDI+ 绘制出圆环图并输出 PNG 图像,整个过程不需要依赖外部安装的 circos 程序。 | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
2 |
| GdiRender | 内置 GDI+ 绘图引擎的渲染入口。 直接读取已经构建完成的 circos 文档对象(Circos),在 .NET 环境 之中通过 GDI+ 绘制出圆环图并输出 PNG 图像,整个过程不需要依赖外部安装的 circos 程序。 | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
2 |
| GdiRenderContext | 内置 GDI+ 绘图引擎的渲染上下文。 持有绘图设备、几何布局以及文档对象,并为各个渲染器提供统一的颜色/半径换算入口。 | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
14 |
| GdiRenderContext | 内置 GDI+ 绘图引擎的渲染上下文。 持有绘图设备、几何布局以及文档对象,并为各个渲染器提供统一的颜色/半径换算入口。 | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
8 |
| GdiRenderOptions | 内置 GDI+ 绘图引擎的画布参数。 取值优先级为:渲染参数(GdiRenderOptions.ApplyOverrides())) > 文档配置(Circos.GdiPlusImageSize) > 默认值。 | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
12 |
| GdiRenderOptions | 内置 GDI+ 绘图引擎的画布参数。 取值优先级为:渲染参数(GdiRenderOptions.ApplyOverrides())) > 文档配置(Circos.GdiPlusImageSize) > 默认值。 | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
11 |
SMRUCC.genomics.Visualize.Circos.GdiPlus.Tracks
| Type | Summary | Package | Members |
|---|---|---|---|
| IdeogramRenderer | 基因组骨架圈(ideogram / cytogenetic bands / 标签)与刻度(ticks)的绘制 | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
4 |
| IdeogramRenderer | 基因组骨架圈(ideogram / cytogenetic bands / 标签)与刻度(ticks)的绘制 | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
4 |
| LinkRenderer | 顶层 <links> 块(染色体区段之间的贝塞尔连线/缎带)的绘制 | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
3 |
| LinkRenderer | 顶层 <links> 块(染色体区段之间的贝塞尔连线/缎带)的绘制 | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
3 |
| PlotsRenderer | 各类 2D 绘图轨道(histogram / heatmap / line / scatter / tile / connector / text / highlight) 以及 <rules>、<axes>、<backgrounds> 子块的绘制。 | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
4 |
| PlotsRenderer | 各类 2D 绘图轨道(histogram / heatmap / line / scatter / tile / connector / text / highlight) 以及 <rules>、<axes>、<backgrounds> 子块的绘制。 | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
4 |
| RuleEvaluator | circos <rule> 的 condition 表达式求值。 支持形如 var(value) > 0.6、var(value) <= -0.1 的简单比较表达式。 | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
1 |
| RuleEvaluator | circos <rule> 的 condition 表达式求值。 支持形如 var(value) > 0.6、var(value) <= -0.1 的简单比较表达式。 | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
1 |
| TrackGeometry | 轨道(track)的径向几何换算:把数据值映射为画布半径。 + orientation = out:数据从内圈(r0)向外圈(r1)生长 + orientation = in:数据从外圈(r1)向内圈(r0)生长 | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
10 |
| TrackGeometry | 轨道(track)的径向几何换算:把数据值映射为画布半径。 + orientation = out:数据从内圈(r0)向外圈(r1)生长 + orientation = in:数据从外圈(r1)向内圈(r0)生长 | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
10 |
SMRUCC.genomics.Visualize.Circos.GdiPlus.Tracks.IdeogramRenderer
| Type | Summary | Package | Members |
|---|---|---|---|
| IdeogramMetrics | ideogram 的径向度量信息 | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
4 |
| IdeogramMetrics | ideogram 的径向度量信息 | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
4 |
SMRUCC.genomics.Visualize.Circos.Karyotype
| Type | Summary | Package | Members |
|---|---|---|---|
| Band | Bands are defined using band CHRNAME BANDNAME BANDLABEL START End COLOR Currently BANDNAME And BANDLABEL are Not used Colors correspond To levels Of grey To match conven… | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
8 |
| Band | Bands are defined using band CHRNAME BANDNAME BANDLABEL START End COLOR Currently BANDNAME And BANDLABEL are Not used Colors correspond To levels Of grey To match conven… | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
0 |
| ChromosomeGenerator | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
1 | |
| ChromosomeGenerator | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
1 | |
| DOOROperon | 最外层的Ideogram, | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
1 |
| DOOROperon | 最外层的Ideogram, | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
0 |
| GenomeKaryotype | The very basically genome skeleton information description.(基因组的基本框架的描述信息) | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
3 |
| GenomeKaryotype | The very basically genome skeleton information description.(基因组的基本框架的描述信息) | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
1 |
| KaryotypeEntry | The ideogram using karyotype file to define the genome skeleton information, which defines the name, size and color of chromosomes. | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
7 |
| KaryotypeEntry | The ideogram using karyotype file to define the genome skeleton information, which defines the name, size and color of chromosomes. | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
3 |
| KaryotypeExtensions | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
1 | |
| KaryotypeExtensions | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
1 | |
| KaryotypeSkeleton | The annotated genome skeleton information. | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
8 |
| KaryotypeSkeleton | The annotated genome skeleton information. | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
5 |
SMRUCC.genomics.Visualize.Circos.Karyotype.GeneObjects
SMRUCC.genomics.Visualize.Circos.TrackDatas
| Type | Summary | Package | Members |
|---|---|---|---|
| ConnectorDocument | The connector plot data document: chr start end, the connector track does not take a value, only a genomic region. | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
0 |
| ConnectorDocument | The connector plot data document: chr start end, the connector track does not take a value, only a genomic region. | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
0 |
| Extensions | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
3 | |
| Extensions | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
1 | |
| FeatureAnnotations | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
5 | |
| FeatureAnnotations | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
5 | |
| Formatting | Annotated with formatting parameters that control how the point Is drawn. | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
17 |
| Formatting | Annotated with formatting parameters that control how the point Is drawn. | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
17 |
| ITrackData | 通常是使用Object方法来生成数据文件之中的行数据的 | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
2 |
| ITrackData | 通常是使用Object方法来生成数据文件之中的行数据的 | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
2 |
| LinkData | + Finally, links are a special track type which associates two ranges together. | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
5 |
| LinkData | + Finally, links are a special track type which associates two ranges together. | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
3 |
| RegionTrackData | 这个只是用来表示基因组上面的一个区域位置 | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
0 |
| RegionTrackData | 这个只是用来表示基因组上面的一个区域位置 | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
0 |
| StackedTrackData | The exception Is a stacked histogram, which associates a list Of values With a range. | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
1 |
| StackedTrackData | The exception Is a stacked histogram, which associates a list Of values With a range. | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
0 |
| TextTrackData | The value For a text track Is interpreted As a text label (other tracks require that this field be a floating point number). | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
1 |
| TextTrackData | The value For a text track Is interpreted As a text label (other tracks require that this field be a floating point number). | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
0 |
| TrackData | Data for tracks is loaded from a plain-text file. | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
6 |
| TrackData | Data for tracks is loaded from a plain-text file. | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
2 |
| TrackDataDocument | Tracks data document generator.(使用这个对象生成data文件夹之中的数据文本文件) | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
5 |
| TrackDataDocument | Tracks data document generator.(使用这个对象生成data文件夹之中的数据文本文件) | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
5 |
| ValueTrackData | Tracks such As scatter plot, line plot, histogram Or heat map, associate a value With Each range. | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
1 |
| ValueTrackData | Tracks such As scatter plot, line plot, histogram Or heat map, associate a value With Each range. | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
0 |
SMRUCC.genomics.Visualize.Circos.TrackDatas.Highlights
| Type | Summary | Package | Members |
|---|---|---|---|
| BlastMaps | 必须是同一个物种的 | SMRUCC.genomics.Visualize.Circos.Extensions 1.0.9753.40023 |
1 |
| BlastMaps | 必须是同一个物种的 | SMRUCC.genomics.Visualize.Circos.Extensions 1.0.9762.7562 |
1 |
| GeneMark | 使用highlights来标记基因组之中的基因 | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
6 |
| GeneMark | 使用highlights来标记基因组之中的基因 | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
4 |
| GradientMappings | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
2 | |
| GradientMappings | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
2 | |
| IdentityColors | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
2 | |
| IdentityColors | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
2 | |
| MotifSites | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
2 | |
| MotifSites | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
2 |
SMRUCC.genomics.Visualize.Circos.TrackDatas.NtProps
| Type | Summary | Package | Members |
|---|---|---|---|
| GCProps | GC% calculation tools for drawing the circos elements. | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
1 |
| GCProps | GC% calculation tools for drawing the circos elements. | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
1 |
| GCSkew | G+C/G-C偏移量 | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
2 |
| GCSkew | G+C/G-C偏移量 | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
2 |
| GeneGCContent | 每一个基因的GC%的表述 | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
0 |
| GeneGCContent | 每一个基因的GC%的表述 | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
0 |
| GenomeGCContent | 整个基因组范围内的GC%变化的情况 | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
3 |
| GenomeGCContent | 整个基因组范围内的GC%变化的情况 | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
2 |
| NASegment_GC | ValueTrackData.value is GC% value. | SMRUCC.genomics.Visualize.Circos.Core 1.0.9753.40023 |
4 |
| NASegment_GC | ValueTrackData.value is GC% value. | SMRUCC.genomics.Visualize.Circos.Core 1.0.9762.7562 |
4 |
SMRUCC.genomics.Visualize.CollectionSet
| Type | Summary | Package | Members |
|---|---|---|---|
| FactorGroup | SMRUCC.genomics.Visualize.Extensions 1.0.9753.40023 |
6 | |
| FactorGroup | SMRUCC.genomics.Visualize.Extensions 1.0.9762.7562 |
2 | |
| IntersectionData | SMRUCC.genomics.Visualize.Extensions 1.0.9753.40023 |
4 | |
| IntersectionData | SMRUCC.genomics.Visualize.Extensions 1.0.9762.7562 |
3 | |
| IntersectionPlot | show venn intersection plot for more than 6 category | SMRUCC.genomics.Visualize.Extensions 1.0.9753.40023 |
3 |
| IntersectionPlot | show venn intersection plot for more than 6 category | SMRUCC.genomics.Visualize.Extensions 1.0.9762.7562 |
3 |
| UpsetData | SMRUCC.genomics.Visualize.Extensions 1.0.9753.40023 |
11 | |
| UpsetData | SMRUCC.genomics.Visualize.Extensions 1.0.9762.7562 |
5 |
SMRUCC.genomics.Visualize.Cytoscape.Automation
| Type | Summary | Package | Members |
|---|---|---|---|
| cyREST | SMRUCC.genomics.Visualize.Cytoscape.Automation 1.0.9753.40023 |
6 | |
| cyREST | SMRUCC.genomics.Visualize.Cytoscape.Automation 1.0.9762.7562 |
6 | |
| FileReference | local file reference for cytoscape automation | SMRUCC.genomics.Visualize.Cytoscape.Automation 1.0.9753.40023 |
3 |
| FileReference | local file reference for cytoscape automation | SMRUCC.genomics.Visualize.Cytoscape.Automation 1.0.9762.7562 |
3 |
| formats | SMRUCC.genomics.Visualize.Cytoscape.Automation 1.0.9753.40023 |
6 | |
| formats | SMRUCC.genomics.Visualize.Cytoscape.Automation 1.0.9762.7562 |
6 | |
| v1 | SMRUCC.genomics.Visualize.Cytoscape.Automation 1.0.9753.40023 |
2 | |
| v1 | SMRUCC.genomics.Visualize.Cytoscape.Automation 1.0.9762.7562 |
1 |
SMRUCC.genomics.Visualize.ExpressionPattern
| Type | Summary | Package | Members |
|---|---|---|---|
| ExpressionPattern | The cmeans expression cluster result | SMRUCC.genomics.Visualize 1.0.9753.40023 |
7 |
| ExpressionPattern | The cmeans expression cluster result | SMRUCC.genomics.Visualize 1.0.9762.7562 |
6 |
| PatternPlot | SMRUCC.genomics.Visualize 1.0.9753.40023 |
1 | |
| PatternPlot | SMRUCC.genomics.Visualize 1.0.9762.7562 |
1 | |
| Reader | data reader of the cmeans pattern dumps files | SMRUCC.genomics.Visualize 1.0.9753.40023 |
2 |
| Reader | data reader of the cmeans pattern dumps files | SMRUCC.genomics.Visualize 1.0.9762.7562 |
2 |
SMRUCC.genomics.Visualize.GeneticClock
| Type | Summary | Package | Members |
|---|---|---|---|
| ColorProfile | SMRUCC.genomics.Visualize 1.0.9753.40023 |
7 | |
| ColorProfile | SMRUCC.genomics.Visualize 1.0.9762.7562 |
7 | |
| ColorRender | 获取值大小梯度颜色 | SMRUCC.genomics.Visualize 1.0.9753.40023 |
10 |
| ColorRender | 获取值大小梯度颜色 | SMRUCC.genomics.Visualize 1.0.9762.7562 |
10 |
SMRUCC.genomics.Visualize.NCBIBlastResult
| Type | Summary | Package | Members |
|---|---|---|---|
| BlastVisualize | 对blastn和blastx的比对结果进行可视化操作 | SMRUCC.genomics.Visualize 1.0.9753.40023 |
10 |
| BlastVisualize | 对blastn和blastx的比对结果进行可视化操作 | SMRUCC.genomics.Visualize 1.0.9762.7562 |
10 |
| ColorSchema | Blast结果之中的hit对象的颜色映射 | SMRUCC.genomics.Visualize 1.0.9753.40023 |
5 |
| ColorSchema | Blast结果之中的hit对象的颜色映射 | SMRUCC.genomics.Visualize 1.0.9762.7562 |
5 |
| OrthologyProfile | 直系同源的数量统计结果数据模型 | SMRUCC.genomics.Visualize 1.0.9753.40023 |
4 |
| OrthologyProfile | 直系同源的数量统计结果数据模型 | SMRUCC.genomics.Visualize 1.0.9762.7562 |
3 |
| OrthologyProfiles | SMRUCC.genomics.Visualize 1.0.9753.40023 |
3 | |
| OrthologyProfiles | SMRUCC.genomics.Visualize 1.0.9762.7562 |
2 | |
| VennBesthit | SMRUCC.genomics.Visualize 1.0.9753.40023 |
1 | |
| VennBesthit | SMRUCC.genomics.Visualize 1.0.9762.7562 |
1 |
SMRUCC.genomics.Visualize.SyntenyVisualize
| Type | Summary | Package | Members |
|---|---|---|---|
| AlignmentBlock | 代表一个单独的比对块。 | SMRUCC.genomics.Visualize.SyntenyVisualize 1.0.9753.40023 |
12 |
| AlignmentBlock | 代表一个单独的比对块。 | SMRUCC.genomics.Visualize.SyntenyVisualize 1.0.9762.7562 |
12 |
| Bézier | SMRUCC.genomics.Visualize.SyntenyVisualize 1.0.9753.40023 |
3 | |
| Bézier | SMRUCC.genomics.Visualize.SyntenyVisualize 1.0.9762.7562 |
2 | |
| DeltaFile | 代表一个完整的 Delta 文件,包含文件头和所有比对块。 | SMRUCC.genomics.Visualize.SyntenyVisualize 1.0.9753.40023 |
6 |
| DeltaFile | 代表一个完整的 Delta 文件,包含文件头和所有比对块。 | SMRUCC.genomics.Visualize.SyntenyVisualize 1.0.9762.7562 |
6 |
| DeltaHeader | 代表 Delta 文件的头部信息。 | SMRUCC.genomics.Visualize.SyntenyVisualize 1.0.9753.40023 |
7 |
| DeltaHeader | 代表 Delta 文件的头部信息。 | SMRUCC.genomics.Visualize.SyntenyVisualize 1.0.9762.7562 |
7 |
| DeviceModel | SMRUCC.genomics.Visualize.SyntenyVisualize 1.0.9753.40023 |
10 | |
| DeviceModel | SMRUCC.genomics.Visualize.SyntenyVisualize 1.0.9762.7562 |
10 | |
| DrawingModel | 绘制很多个基因组之间的共线性关系可视化 | SMRUCC.genomics.Visualize.SyntenyVisualize 1.0.9753.40023 |
5 |
| DrawingModel | 绘制很多个基因组之间的共线性关系可视化 | SMRUCC.genomics.Visualize.SyntenyVisualize 1.0.9762.7562 |
5 |
| GenomeBrief | The simple abstract of the genome drawing data. | SMRUCC.genomics.Visualize.SyntenyVisualize 1.0.9753.40023 |
4 |
| GenomeBrief | The simple abstract of the genome drawing data. | SMRUCC.genomics.Visualize.SyntenyVisualize 1.0.9762.7562 |
4 |
| Line | The drawing model abstract of the ortholog relationship.(直系同源的绘图模型) | SMRUCC.genomics.Visualize.SyntenyVisualize 1.0.9753.40023 |
5 |
| Line | The drawing model abstract of the ortholog relationship.(直系同源的绘图模型) | SMRUCC.genomics.Visualize.SyntenyVisualize 1.0.9762.7562 |
3 |
| LineStyles | The link line drawing style for the ortholog between the query and bbh hit. | SMRUCC.genomics.Visualize.SyntenyVisualize 1.0.9753.40023 |
7 |
| LineStyles | The link line drawing style for the ortholog between the query and bbh hit. | SMRUCC.genomics.Visualize.SyntenyVisualize 1.0.9762.7562 |
7 |
| ModelAPI | SMRUCC.genomics.Visualize.SyntenyVisualize 1.0.9753.40023 |
3 | |
| ModelAPI | SMRUCC.genomics.Visualize.SyntenyVisualize 1.0.9762.7562 |
3 | |
| NucmerDeltaParser | 用于解析 Nucmer Delta 文件的工具类。 | SMRUCC.genomics.Visualize.SyntenyVisualize 1.0.9753.40023 |
3 |
| NucmerDeltaParser | 用于解析 Nucmer Delta 文件的工具类。 | SMRUCC.genomics.Visualize.SyntenyVisualize 1.0.9762.7562 |
3 |
| OrthologAPI | 直系同源的绘图数据模型 | SMRUCC.genomics.Visualize.SyntenyVisualize 1.0.9753.40023 |
1 |
| OrthologAPI | 直系同源的绘图数据模型 | SMRUCC.genomics.Visualize.SyntenyVisualize 1.0.9762.7562 |
1 |
| Polyline | SMRUCC.genomics.Visualize.SyntenyVisualize 1.0.9753.40023 |
3 | |
| Polyline | SMRUCC.genomics.Visualize.SyntenyVisualize 1.0.9762.7562 |
2 | |
| StraightLine | A model for drawing a straight line. | SMRUCC.genomics.Visualize.SyntenyVisualize 1.0.9753.40023 |
1 |
| StraightLine | A model for drawing a straight line. | SMRUCC.genomics.Visualize.SyntenyVisualize 1.0.9762.7562 |
0 |
| SyntenyPlotterDemo | SMRUCC.genomics.Visualize.SyntenyVisualize 1.0.9753.40023 |
1 | |
| SyntenyPlotterDemo | SMRUCC.genomics.Visualize.SyntenyVisualize 1.0.9762.7562 |
1 | |
| SyntenyRegionExtensions | SMRUCC.genomics.Visualize.SyntenyVisualize 1.0.9753.40023 |
1 | |
| SyntenyRegionExtensions | SMRUCC.genomics.Visualize.SyntenyVisualize 1.0.9762.7562 |
1 | |
| Title | 由于这里是通过html来控制标题的显示格式的,所以在这里需要注意将文本里面的<起始转义为< | SMRUCC.genomics.Visualize.SyntenyVisualize 1.0.9753.40023 |
3 |
| Title | 由于这里是通过html来控制标题的显示格式的,所以在这里需要注意将文本里面的<起始转义为< | SMRUCC.genomics.Visualize.SyntenyVisualize 1.0.9762.7562 |
1 |
SMRUCC.genomics.Visualize.SyntenyVisualize.ComparativeAlignment
| Type | Summary | Package | Members |
|---|---|---|---|
| ComparativeAlignment | SMRUCC.genomics.Visualize.SyntenyVisualize 1.0.9753.40023 |
4 | |
| ComparativeAlignment | SMRUCC.genomics.Visualize.SyntenyVisualize 1.0.9762.7562 |
4 | |
| DrawingModel | 一对多的共线性比对作图 | SMRUCC.genomics.Visualize.SyntenyVisualize 1.0.9753.40023 |
2 |
| DrawingModel | 一对多的共线性比对作图 | SMRUCC.genomics.Visualize.SyntenyVisualize 1.0.9762.7562 |
2 |
| LargeGenomeComparing | 对于很大的基因组,则直接进行画点和划线来代替原来的orf箭头以及图层区域了 | SMRUCC.genomics.Visualize.SyntenyVisualize 1.0.9753.40023 |
2 |
| LargeGenomeComparing | 对于很大的基因组,则直接进行画点和划线来代替原来的orf箭头以及图层区域了 | SMRUCC.genomics.Visualize.SyntenyVisualize 1.0.9762.7562 |
2 |
| Orthology | SMRUCC.genomics.Visualize.SyntenyVisualize 1.0.9753.40023 |
2 | |
| Orthology | SMRUCC.genomics.Visualize.SyntenyVisualize 1.0.9762.7562 |
2 |
SMRUCC.genomics.Visualize.SyntenyVisualize.ComparativeGenomics
| Type | Summary | Package | Members |
|---|---|---|---|
| DrawingDevice | SMRUCC.genomics.Visualize.SyntenyVisualize 1.0.9753.40023 |
7 | |
| DrawingDevice | SMRUCC.genomics.Visualize.SyntenyVisualize 1.0.9762.7562 |
4 | |
| DrawingModel | 比较两个基因组的差异的模型 | SMRUCC.genomics.Visualize.SyntenyVisualize 1.0.9753.40023 |
1 |
| DrawingModel | 比较两个基因组的差异的模型 | SMRUCC.genomics.Visualize.SyntenyVisualize 1.0.9762.7562 |
1 |
| GeneLink | 两个基因组之间的相互共同的基因 | SMRUCC.genomics.Visualize.SyntenyVisualize 1.0.9753.40023 |
7 |
| GeneLink | 两个基因组之间的相互共同的基因 | SMRUCC.genomics.Visualize.SyntenyVisualize 1.0.9762.7562 |
7 |
| GeneObject | SMRUCC.genomics.Visualize.SyntenyVisualize 1.0.9753.40023 |
7 | |
| GeneObject | SMRUCC.genomics.Visualize.SyntenyVisualize 1.0.9762.7562 |
7 | |
| GenomeModel | SMRUCC.genomics.Visualize.SyntenyVisualize 1.0.9753.40023 |
4 | |
| GenomeModel | SMRUCC.genomics.Visualize.SyntenyVisualize 1.0.9762.7562 |
4 | |
| ModelAPI | SMRUCC.genomics.Visualize.SyntenyVisualize 1.0.9753.40023 |
4 | |
| ModelAPI | SMRUCC.genomics.Visualize.SyntenyVisualize 1.0.9762.7562 |
4 | |
| ShellScriptAPI | SMRUCC.genomics.Visualize.SyntenyVisualize 1.0.9753.40023 |
1 | |
| ShellScriptAPI | SMRUCC.genomics.Visualize.SyntenyVisualize 1.0.9762.7562 |
1 |
SMRUCC.genomics.Visualize.SyntenyVisualize.ModelAPI
| Type | Summary | Package | Members |
|---|---|---|---|
| __colorHelper | SMRUCC.genomics.Visualize.SyntenyVisualize 1.0.9753.40023 |
1 | |
| __colorHelper | SMRUCC.genomics.Visualize.SyntenyVisualize 1.0.9762.7562 |
1 |
SMRUCC.genomics.Visualize.SyntenyVisualize.PanGenomeSynteny
| Type | Summary | Package | Members |
|---|---|---|---|
| ColorPalette | 颜色调色板,定义图中所有元素的颜色。 内置多套预设方案,也可完全自定义。 | SMRUCC.genomics.Visualize.SyntenyVisualize 1.0.9753.40023 |
19 |
| ColorPalette | 颜色调色板,定义图中所有元素的颜色。 内置多套预设方案,也可完全自定义。 | SMRUCC.genomics.Visualize.SyntenyVisualize 1.0.9762.7562 |
19 |
| ConnectionStyle | 共线性连接线的绘制样式,可通过主题对象切换。 | SMRUCC.genomics.Visualize.SyntenyVisualize 1.0.9753.40023 |
4 |
| ConnectionStyle | 共线性连接线的绘制样式,可通过主题对象切换。 | SMRUCC.genomics.Visualize.SyntenyVisualize 1.0.9762.7562 |
4 |
| Gene | 泛基因组中的基因对象。 orthology_family 字段用于在不同基因组间建立共线性桥梁。 | SMRUCC.genomics.Visualize.SyntenyVisualize 1.0.9753.40023 |
6 |
| Gene | 泛基因组中的基因对象。 orthology_family 字段用于在不同基因组间建立共线性桥梁。 | SMRUCC.genomics.Visualize.SyntenyVisualize 1.0.9762.7562 |
6 |
| SyntenyPlotter | 基因组共线性主绘图器。 接收 Dictionary(Of String, Gene()) 形式的共线性数据, 根据 SyntenyTheme 主题配置渲染 PNG 图像。 | SMRUCC.genomics.Visualize.SyntenyVisualize 1.0.9753.40023 |
6 |
| SyntenyPlotter | 基因组共线性主绘图器。 接收 Dictionary(Of String, Gene()) 形式的共线性数据, 根据 SyntenyTheme 主题配置渲染 PNG 图像。 | SMRUCC.genomics.Visualize.SyntenyVisualize 1.0.9762.7562 |
6 |
| SyntenyTheme | 绘图主题对象,集中管理所有可视化参数。 通过修改此对象可实现连接线样式切换、配色方案切换等。 | SMRUCC.genomics.Visualize.SyntenyVisualize 1.0.9753.40023 |
29 |
| SyntenyTheme | 绘图主题对象,集中管理所有可视化参数。 通过修改此对象可实现连接线样式切换、配色方案切换等。 | SMRUCC.genomics.Visualize.SyntenyVisualize 1.0.9762.7562 |
29 |
SMRUCC.Rsharp
| Type | Summary | Package | Members |
|---|---|---|---|
| ApiArgumentHelpers | REnv 5.1.3.5558 |
8 | |
| Extensions | REnv 5.1.3.5558 |
14 | |
| LICENSE | Information about the R# interpreter code module. | REnv 5.1.3.5558 |
3 |
SMRUCC.Rsharp.Development
| Type | Summary | Package | Members |
|---|---|---|---|
| AnnotationDocs | Parser of the Project assembly | REnv 5.1.3.5558 |
4 |
| ConsoleMarkdownPrinter | REnv 5.1.3.5558 |
5 | |
| ConsoleSyntaxHighlightPrinter | Print R# code with syntax highlight on the console by use ascii escape sequence | REnv 5.1.3.5558 |
3 |
| Document | R comment documentation model | REnv 5.1.3.5558 |
13 |
| FunctionDeclare | REnv 5.1.3.5558 |
7 | |
| RFileSystem | REnv 5.1.3.5558 |
3 | |
| RuntimeError | REnv 5.1.3.5558 |
2 | |
| UnixManPagePrinter | REnv 5.1.3.5558 |
2 |
SMRUCC.Rsharp.Development.CodeAnalysis
| Type | Summary | Package | Members |
|---|---|---|---|
| FunctionTree | REnv 5.1.3.5558 |
5 | |
| RlangTranslator | helper module for translate the R# code to R language | REnv 5.1.3.5558 |
2 |
| SymbolAnalysis | analysis of the static symbol reference | REnv 5.1.3.5558 |
5 |
| SymbolTypeDefine | the general definition model of the symbol or function in typescript | REnv 5.1.3.5558 |
8 |
| TypeScriptDefine | the generator module for the type script definition | REnv 5.1.3.5558 |
6 |
| TypeWriter | REnv 5.1.3.5558 |
4 |
SMRUCC.Rsharp.Development.CodeAnalysis.SymbolAnalysis
| Type | Summary | Package | Members |
|---|---|---|---|
| Context | REnv 5.1.3.5558 |
1 |
SMRUCC.Rsharp.Development.CommandLine
| Type | Summary | Package | Members |
|---|---|---|---|
| ArgumentInfo | REnv 5.1.3.5558 |
4 | |
| ShellScript | the R# shell script commandline arguments helper module | REnv 5.1.3.5558 |
8 |
SMRUCC.Rsharp.Development.Components
| Type | Summary | Package | Members |
|---|---|---|---|
| AggregateFunction | create via the aggregate function, example as: r let fx = aggregate(FUN = "max"); print(fx([1,2,3,4,5])); # [1] 5 | REnv 5.1.3.5558 |
3 |
| DotMachine | Numerical Characteristics of the Machine .Machine is a variable holding information on the numerical characteristics of the machine R is running on, such as the largest doub… | REnv 5.1.3.5558 |
7 |
| Encoder | helper for json/bencode serialization of the R# runtime object. | REnv 5.1.3.5558 |
6 |
| FileReference | REnv 5.1.3.5558 |
4 | |
| ProfileRecord | REnv 5.1.3.5558 |
8 | |
| ProgressBarFunction | REnv 5.1.3.5558 |
4 | |
| RSessionInfo | REnv 5.1.3.5558 |
14 | |
| tqdmList | REnv 5.1.3.5558 |
5 | |
| ZipFolder | open zip for read data. | REnv 5.1.3.5558 |
5 |
SMRUCC.Rsharp.Development.Configuration
| Type | Summary | Package | Members |
|---|---|---|---|
| ConfigFile | REnv 5.1.3.5558 |
10 | |
| OptionHooks | hooks for set options | REnv 5.1.3.5558 |
4 |
| Options | Data reader of ConfigFile. | REnv 5.1.3.5558 |
30 |
SMRUCC.Rsharp.Development.Package
| Type | Summary | Package | Members |
|---|---|---|---|
| CollectibleAssemblyLoadContext | https://stackoverflow.com/questions/27266907/no-appdomains-in-net-core-why | REnv 5.1.3.5558 |
2 |
| ImportsPackage | Helper methods for add .NET function into Environment target | REnv 5.1.3.5558 |
7 |
| LibDLL | REnv 5.1.3.5558 |
3 | |
| LocalPackageDatabase | REnv 5.1.3.5558 |
13 | |
| Package | The R# package module wrapper | REnv 5.1.3.5558 |
16 |
| PackageInfo | REnv 5.1.3.5558 |
8 | |
| PackageLoader | REnv 5.1.3.5558 |
3 | |
| PackageLoaderEntry | REnv 5.1.3.5558 |
5 | |
| PackageManager | 这个对象可以枚举出所有已经安装的Package对象 | REnv 5.1.3.5558 |
18 |
| zzz | R# zzz.R magic trick | REnv 5.1.3.5558 |
2 |
SMRUCC.Rsharp.Development.Package.File
| Type | Summary | Package | Members |
|---|---|---|---|
| AssemblyPack | REnv 5.1.3.5558 |
7 | |
| BlockReader | REnv 5.1.3.5558 |
10 | |
| CreatePackage | REnv 5.1.3.5558 |
9 | |
| Dependency | REnv 5.1.3.5558 |
4 | |
| DESCRIPTION | the metadata of the R# package file | REnv 5.1.3.5558 |
15 |
| ExpressionTypes | The R# expression data type | REnv 5.1.3.5558 |
54 |
| NuGetZip | REnv 5.1.3.5558 |
3 | |
| PackageLoader2 | Load R package folder 20221122 just load the R source file at here, the package module inside the .NET dll file its loading procedure is lazy, load a specific dll file unt… | REnv 5.1.3.5558 |
12 |
| PackageModel | REnv 5.1.3.5558 |
13 | |
| PackageNamespace | REnv 5.1.3.5558 |
19 | |
| PatternMatch | REnv 5.1.3.5558 |
3 | |
| Rbuildignore | file handler of .Rbuildignore | REnv 5.1.3.5558 |
2 |
| RegularMatch | REnv 5.1.3.5558 |
3 | |
| Writer | REnv 5.1.3.5558 |
31 |
SMRUCC.Rsharp.Development.Package.File.Expressions
| Type | Summary | Package | Members |
|---|---|---|---|
| RBreakControls | break/next | REnv 5.1.3.5558 |
2 |
| RExpression | the R expression writer/reader | REnv 5.1.3.5558 |
4 |
| RIf | if and else if | REnv 5.1.3.5558 |
2 |
| RJSON | JSONLiteral | REnv 5.1.3.5558 |
2 |
| RRequire | imports语句在脚本模式下可以出现在任意语句块之中,但是 imports语句在R#程序包之中只允许出现在脚本的最顶层,不允许出现在其他的语句块中 require语句可以出现在程序包之中的任意语句块之中 | REnv 5.1.3.5558 |
2 |
SMRUCC.Rsharp.Development.Package.NuGet
| Type | Summary | Package | Members |
|---|---|---|---|
| Repository | REnv 5.1.3.5558 |
3 |
SMRUCC.Rsharp.Development.Package.NuGet.metadata
| Type | Summary | Package | Members |
|---|---|---|---|
| dependency | The <dependencies> element within <metadata> contains any number of <dependency> elements that identify other packages upon which the top-level package depends. | REnv 5.1.3.5558 |
4 |
| frameworkAssembly | Framework assemblies are those that are part of the .NET framework and should already be in the global assembly cache (GAC) for any given machine. | REnv 5.1.3.5558 |
2 |
| nugetmeta | Required metadata elements Although the following elements are the minimum requirements For a package, you should consider adding the Optional metadata elements To improve… | REnv 5.1.3.5558 |
18 |
| nuspec | A .nuspec file is an XML manifest that contains package metadata. | REnv 5.1.3.5558 |
5 |
SMRUCC.Rsharp.Development.Package.NuGet.web
| Type | Summary | Package | Members |
|---|---|---|---|
| WebRequest | use nuget package repository system as R# package repository | REnv 5.1.3.5558 |
3 |
SMRUCC.Rsharp.Development.Polyglot
| Type | Summary | Package | Members |
|---|---|---|---|
| Platform | polyglot programming Polyglot programming is the practice of writing code in multiple languages to capture additional functionality and efficiency not available in a single… | REnv 5.1.3.5558 |
5 |
SMRUCC.Rsharp.Interpreter
| Type | Summary | Package | Members |
|---|---|---|---|
| Breakpoint | 一个断点的描述模型 | REnv 5.1.3.5558 |
7 |
| BreakpointStore | 断点的集合管理器 | REnv 5.1.3.5558 |
10 |
| ConsoleDebuggerFrontend | 调试器的控制台交互前端 | REnv 5.1.3.5558 |
10 |
| DebugAction | 调试动作类型 | REnv 5.1.3.5558 |
10 |
| DebugFrame | 程序在某一个暂停点上的运行时快照信息 | REnv 5.1.3.5558 |
8 |
| DebuggerContext | 调试器状态管理类 | REnv 5.1.3.5558 |
28 |
| DebugInspector | 调试器的运行时检查器 | REnv 5.1.3.5558 |
4 |
| DebugLevels | debug echo verbose level for the R# interpreter engine | REnv 5.1.3.5558 |
8 |
| ExecutableLoop | 使用for循环执行脚本语句 | REnv 5.1.3.5558 |
3 |
| Program | is a collection of the expresion object, represents the parser result of a R script file | REnv 5.1.3.5558 |
10 |
| RInterpreter | REnv 5.1.3.5558 |
40 | |
| SourceLocation | 表达式的源代码位置信息 | REnv 5.1.3.5558 |
7 |
SMRUCC.Rsharp.Interpreter.DebugInspector
| Type | Summary | Package | Members |
|---|---|---|---|
| VariableInfo | 一个变量的描述信息 | REnv 5.1.3.5558 |
4 |
SMRUCC.Rsharp.Interpreter.ExecuteEngine
| Type | Summary | Package | Members |
|---|---|---|---|
| ExecuteBreaks | Enumerations of breaks the executation of the current code closure. | REnv 5.1.3.5558 |
6 |
| Expression | An expression object model in R# language interpreter | REnv 5.1.3.5558 |
7 |
| SymbolExpression | An expression that will create a new symbol in R# environment | REnv 5.1.3.5558 |
9 |
SMRUCC.Rsharp.Interpreter.ExecuteEngine.ExpressionSymbols
| Type | Summary | Package | Members |
|---|---|---|---|
| ArgumentValue | Get commandline argument or safely get environment symbol value by name ?'name' | REnv 5.1.3.5558 |
6 |
| ExternalCommandLine | External commandline invoke @"cli" | REnv 5.1.3.5558 |
10 |
| Imports | A syntax from imports new package namespace from the external module assembly. | REnv 5.1.3.5558 |
17 |
| Require | Loading/Attaching and Listing of Packages library and require load and attach add-on packages. | REnv 5.1.3.5558 |
9 |
SMRUCC.Rsharp.Interpreter.ExecuteEngine.ExpressionSymbols.Annotation
| Type | Summary | Package | Members |
|---|---|---|---|
| AnnotationSymbol | REnv 5.1.3.5558 |
6 | |
| BreakPoint | @stop | REnv 5.1.3.5558 |
3 |
| DataDir | @datadir directory path of the /data in current package | REnv 5.1.3.5558 |
3 |
| HomeSymbol | @HOME for just get the directory path of the R# program file where it is. | REnv 5.1.3.5558 |
3 |
| HostSymbol | @HOST *.exe file path of the R# script host | REnv 5.1.3.5558 |
3 |
| Profiler | @profile 开始进行性能计数 | REnv 5.1.3.5558 |
6 |
| ScriptFolder | @dir | REnv 5.1.3.5558 |
3 |
| ScriptSymbol | @script | REnv 5.1.3.5558 |
4 |
SMRUCC.Rsharp.Interpreter.ExecuteEngine.ExpressionSymbols.Blocks
| Type | Summary | Package | Members |
|---|---|---|---|
| ContinuteFor | next | REnv 5.1.3.5558 |
4 |
| ForLoop | 在R语言之中,只有for each循环 | REnv 5.1.3.5558 |
11 |
| IfPromise | REnv 5.1.3.5558 |
1 | |
| IIfExpression | ifelse expression | REnv 5.1.3.5558 |
5 |
SMRUCC.Rsharp.Interpreter.ExecuteEngine.ExpressionSymbols.Closure
| Type | Summary | Package | Members |
|---|---|---|---|
| AcceptorClosure | func(yyy) { func2(xxx); } # will accept the closure as the first parameter # which is equals to the function invoke expression func({ func2(xxx); }, yyy); | REnv 5.1.3.5558 |
2 |
| ByRefFunctionCall | func(a) <- value | REnv 5.1.3.5558 |
6 |
| ClosureExpression | Is a kind of expression collection which consist with multiple expression lines. | REnv 5.1.3.5558 |
11 |
| DeclareLambdaFunction | 只允许简单的表达式出现在这里 并且参数也只允许出现一个 | REnv 5.1.3.5558 |
14 |
| DeclareNewFunction | Function Definition An R function object. | REnv 5.1.3.5558 |
17 |
| DeclareNewSymbol | An expressin for create a new symbol inside the runtime environment | REnv 5.1.3.5558 |
16 |
| FunctionInvoke | Invoke a function symbol call xxx(...) | REnv 5.1.3.5558 |
19 |
| TryCatchExpression | try ... catch block in R# language | REnv 5.1.3.5558 |
4 |
| UsingClosure | R using xxx as creator() { } | REnv 5.1.3.5558 |
7 |
SMRUCC.Rsharp.Interpreter.ExecuteEngine.ExpressionSymbols.DataSets
| Type | Summary | Package | Members |
|---|---|---|---|
| CreateObject | new xxx(...) | REnv 5.1.3.5558 |
8 |
| DotDotDotSymbol | ... symbol for the R function | REnv 5.1.3.5558 |
5 |
| FormulaExpression | var ~ formula | REnv 5.1.3.5558 |
10 |
| JSONLiteral | REnv 5.1.3.5558 |
6 | |
| Literal | the literal value expression in R | REnv 5.1.3.5558 |
18 |
| ModeOf | get type/get class/get mode | REnv 5.1.3.5558 |
7 |
| NamespaceFunctionSymbolReference | namespace::function(xxx) | REnv 5.1.3.5558 |
9 |
| ObjectWith | syntax implementation for with keyword | REnv 5.1.3.5558 |
5 |
| Regexp | a regular expression literal syntax | REnv 5.1.3.5558 |
6 |
| SequenceLiteral | a syntax for generate a numeric sequence: from:to step diff | REnv 5.1.3.5558 |
7 |
| StringInterpolation | A typescript liked string interpolation syntax | REnv 5.1.3.5558 |
6 |
| SymbolIndexer | get/set elements by index (X$name或者X[[name]]) | REnv 5.1.3.5558 |
14 |
| SymbolIndexers | enumerate all kinds of the symbol indexer syntax inside current R-sharp language | REnv 5.1.3.5558 |
12 |
| SymbolReference | 符号引用 | REnv 5.1.3.5558 |
6 |
| TypeOfCheck | typeof x is "export_typename" | REnv 5.1.3.5558 |
6 |
| VectorLiteral | 1. vector literal [x,y,z,...] 2. vector append [x, ...y, ...z] | REnv 5.1.3.5558 |
9 |
| VectorLoop | create a new vector data which is introduced via the perl syntax: list@name means sapply(list, x -> x$name); list@{name} means sapply(list, x -> x[[name]]); | REnv 5.1.3.5558 |
9 |
SMRUCC.Rsharp.Interpreter.ExecuteEngine.ExpressionSymbols.Operators
| Type | Summary | Package | Members |
|---|---|---|---|
| AppendOperator | append, not modify the source vector a << b | REnv 5.1.3.5558 |
4 |
| BinaryBetweenExpression | x between inside a range? x between [min, max] | REnv 5.1.3.5558 |
9 |
| BinaryExpression | a basic binary expression, example as math expression | REnv 5.1.3.5558 |
7 |
| BinaryInExpression | operator for test of left in right? | REnv 5.1.3.5558 |
10 |
| DataFrameProjection | get value of data[, selector] | REnv 5.1.3.5558 |
3 |
| DataFrameSlice | get value of data[selector, ] | REnv 5.1.3.5558 |
3 |
| DotNetObject | [x]::property, this syntax only works for the class property | REnv 5.1.3.5558 |
6 |
| IBinaryExpression | the abstract model of expression: left op right | REnv 5.1.3.5558 |
3 |
| MemberValueAssign | a[xxx] = value | REnv 5.1.3.5558 |
6 |
| NullishCoalescing | The nullish coalescing (??) operator is a logical operator that returns its right-hand side operand when its left-hand side operand is null or undefined, and otherwise returns i… | REnv 5.1.3.5558 |
7 |
| ReturnValue | returns the value from the function stack and break the executation loop of the function | REnv 5.1.3.5558 |
6 |
| StringBinaryExpression | REnv 5.1.3.5558 |
1 | |
| UnaryNot | REnv 5.1.3.5558 |
5 | |
| UnaryNumeric | REnv 5.1.3.5558 |
6 | |
| ValueAssignExpression | Set variable or tuple | REnv 5.1.3.5558 |
13 |
SMRUCC.Rsharp.Interpreter.ExecuteEngine.LINQ
| Type | Summary | Package | Members |
|---|---|---|---|
| AggregateExpression | aggregate ... into ... | REnv 5.1.3.5558 |
2 |
| BinaryExpression | the linq binary expression | REnv 5.1.3.5558 |
5 |
| DataFrameDataSet | populate by rows | REnv 5.1.3.5558 |
2 |
| DataLeftJoin | REnv 5.1.3.5558 |
8 | |
| DataSet | the linq dataset object, a helper module for iterates through the data sequence that produced by the QueryExpression | REnv 5.1.3.5558 |
0 |
| ErrorDataSet | REnv 5.1.3.5558 |
2 | |
| ExecutableContext | REnv 5.1.3.5558 |
7 | |
| Expression | the Linq expression | REnv 5.1.3.5558 |
2 |
| JointDataSet | data set result of left join | REnv 5.1.3.5558 |
1 |
| LinqKeywordExpression | the linq expression of a specific keyword | REnv 5.1.3.5558 |
2 |
| OutputProjection | data projection: SELECT <fields | REnv 5.1.3.5558 |
4 |
| PipelineKeyword | REnv 5.1.3.5558 |
2 | |
| ProjectionExpression | from ... select ... | REnv 5.1.3.5558 |
4 |
| QueryExpression | REnv 5.1.3.5558 |
4 | |
| QuerySource | REnv 5.1.3.5558 |
3 | |
| RunTimeValueExpression | 这个是为了解决R#脚本中的表达式对象与Linq脚本中的表达式对象的不兼容问题创建的 | REnv 5.1.3.5558 |
4 |
| SkipItems | REnv 5.1.3.5558 |
5 | |
| SymbolDeclare | declare a new temp symbol: LET x = ... | REnv 5.1.3.5558 |
7 |
| TakeItems | REnv 5.1.3.5558 |
5 | |
| WhereFilter | data filter: WHERE <condition | REnv 5.1.3.5558 |
3 |
SMRUCC.Rsharp.Interpreter.ExecuteEngine.LINQ.Syntax
| Type | Summary | Package | Members |
|---|---|---|---|
| StackParser | Stack parser of the Linq query expression | REnv 5.1.3.5558 |
1 |
| SyntaxImplements | REnv 5.1.3.5558 |
6 |
SMRUCC.Rsharp.Language
SMRUCC.Rsharp.Language.Syntax
| Type | Summary | Package | Members |
|---|---|---|---|
| Extensions | REnv 5.1.3.5558 |
3 | |
| Helper | REnv 5.1.3.5558 |
3 | |
| IncompleteExpression | Helper for R shell terminal multiple line editing | REnv 5.1.3.5558 |
9 |
SMRUCC.Rsharp.Language.Syntax.SyntaxParser
| Type | Summary | Package | Members |
|---|---|---|---|
| BinaryExpressionTree | REnv 5.1.3.5558 |
8 | |
| ExpressionBuilder | REnv 5.1.3.5558 |
2 | |
| ExpressionSignature | The signature determination of the given expression tokens | REnv 5.1.3.5558 |
24 |
| SyntaxBuilderOptions | Syntax tree parser configuration | REnv 5.1.3.5558 |
21 |
| SyntaxResult | The R# expression syntax build result, the result of this model could be an error or resulted expression model object. | REnv 5.1.3.5558 |
11 |
SMRUCC.Rsharp.Language.Syntax.SyntaxParser.SyntaxImplements
| Type | Summary | Package | Members |
|---|---|---|---|
| ArgumentGetters | REnv 5.1.3.5558 |
7 | |
| ClosureExpressionSyntax | REnv 5.1.3.5558 |
1 | |
| CommandLineSyntax | Commandline shell syntax tree parser | REnv 5.1.3.5558 |
1 |
| DeclareLambdaFunctionSyntax | REnv 5.1.3.5558 |
2 | |
| DeclareNewFunctionSyntax | REnv 5.1.3.5558 |
1 | |
| DeclareNewSymbolSyntax | REnv 5.1.3.5558 |
4 | |
| FunctionInvokeSyntax | REnv 5.1.3.5558 |
1 | |
| IfBranchSyntax | REnv 5.1.3.5558 |
1 | |
| LinqExpressionSyntax | REnv 5.1.3.5558 |
1 | |
| SymbolIndexerSyntax | REnv 5.1.3.5558 |
4 | |
| VectorLiteralSyntax | REnv 5.1.3.5558 |
1 |
SMRUCC.Rsharp.Language.TokenIcer
| Type | Summary | Package | Members |
|---|---|---|---|
| Escapes | common language escape model between multiple language syntax parser | REnv 5.1.3.5558 |
7 |
| IScanner | An abstract script text tokenlicer | REnv 5.1.3.5558 |
1 |
| Scanner | The token scanner | REnv 5.1.3.5558 |
13 |
| StringInterpolation | The string interpolation expression token parser | REnv 5.1.3.5558 |
3 |
| Token | the R# language token word | REnv 5.1.3.5558 |
5 |
SMRUCC.Rsharp.RDataSet
| Type | Summary | Package | Members |
|---|---|---|---|
| ByteEncoder | RData 1.0.0 |
1 | |
| Parser | Parser interface for a R file. | RData 1.0.0 |
5 |
| ParserXDR | Parser used when the integers and doubles are in XDR format. | RData 1.0.0 |
5 |
| Reader | RData 1.0.0 |
14 | |
| Writer | RData 1.0.0 |
5 |
SMRUCC.Rsharp.RDataSet.Convertor
| Type | Summary | Package | Members |
|---|---|---|---|
| AltRepConstructor | Expand an ALTREP object into a plain R vector. | RData 1.0.0 |
3 |
| AltRepConstructorExpander | RData 1.0.0 |
4 | |
| Constructor | RData 1.0.0 |
1 | |
| ConvertToR | Convert to R# object | RData 1.0.0 |
6 |
| RStreamReader | RData 1.0.0 |
6 |
SMRUCC.Rsharp.RDataSet.Flags
| Type | Summary | Package | Members |
|---|---|---|---|
| CharFlags | RData 1.0.0 |
9 | |
| FileTypes | Type of file containing a R file. | RData 1.0.0 |
11 |
| ObjectBitMask | R object attribute data mask | RData 1.0.0 |
3 |
| RdataFormats | encoding format of a R file. | RData 1.0.0 |
7 |
| RObjectType | Type of a R object. | RData 1.0.0 |
60 |
SMRUCC.Rsharp.RDataSet.Struct
| Type | Summary | Package | Members |
|---|---|---|---|
| EnvironmentValue | Value of an environment. | RData 1.0.0 |
4 |
| RData | Data contained in a R file. | RData 1.0.0 |
4 |
| RExtraInfo | Extra information. Contains the Default encoding (only In version 3). | RData 1.0.0 |
2 |
| RObjectInfo | Internal attributes of a R object. | RData 1.0.0 |
15 |
| RVersions | R versions. | RData 1.0.0 |
4 |
SMRUCC.Rsharp.RDataSet.Struct.LinkedList
| Type | Summary | Package | Members |
|---|---|---|---|
| ListNodeType | RData 1.0.0 |
7 | |
| RList | 在R数据文件之中用于存储数据的链表结构 | RData 1.0.0 |
7 |
| RObject | Representation of a R object. | RData 1.0.0 |
8 |
SMRUCC.Rsharp.Runtime
| Type | Summary | Package | Members |
|---|---|---|---|
| ClosureEnvironment | A local environment of the function closure | REnv 5.1.3.5558 |
3 |
| Environment | A R# scripting runtime context. | REnv 5.1.3.5558 |
40 |
| Extensions | REnv 5.1.3.5558 |
11 | |
| GlobalEnvironment | the global environment of the R# interpreter runtime. | REnv 5.1.3.5558 |
24 |
| graphicsPipeline | REnv 5.1.3.5558 |
5 | |
| MagicScriptSymbol | REnv 5.1.3.5558 |
11 | |
| ObjectEnvironment | helper for object with syntax implements | REnv 5.1.3.5558 |
3 |
| OutputEnvironments | A enum flag value for indicates the console output device: standard output or html display | REnv 5.1.3.5558 |
3 |
| PackageEnvironment | The package namespace | REnv 5.1.3.5558 |
6 |
| PolyglotInteropEnvironment | symbols solver for javascript/python reference to R# object | REnv 5.1.3.5558 |
3 |
| RContentOutput | R# I/O redirect and interface for Rserve http server | REnv 5.1.3.5558 |
18 |
| RExit | A signal object for make R# exit the script executation | REnv 5.1.3.5558 |
2 |
| RTypeExtensions | REnv 5.1.3.5558 |
8 | |
| RVectorExtensions | REnv 5.1.3.5558 |
16 | |
| SymbolNamespaceSolver | Package namespace environment | REnv 5.1.3.5558 |
14 |
| SymbolSet | A pool set of the R# runtime symbols | REnv 5.1.3.5558 |
11 |
SMRUCC.Rsharp.Runtime.Components
| Type | Summary | Package | Members |
|---|---|---|---|
| IAttributeReflector | REnv 5.1.3.5558 |
1 | |
| InvokeParameter | REnv 5.1.3.5558 |
18 | |
| Message | The warning message and exception message | REnv 5.1.3.5558 |
16 |
| Rscript | An Rscript source wrapper | REnv 5.1.3.5558 |
14 |
| RsharpDataObject | the R# data object with specific element data type | REnv 5.1.3.5558 |
6 |
| Symbol | The variable model in R# language | REnv 5.1.3.5558 |
18 |
| TryError | try-error | REnv 5.1.3.5558 |
5 |
| TypeCodes | The R# types (byte) | REnv 5.1.3.5558 |
25 |
| What | just enumerate the R# primitive type | REnv 5.1.3.5558 |
8 |
| WhatReader | REnv 5.1.3.5558 |
3 |
SMRUCC.Rsharp.Runtime.Components.Interface
| Type | Summary | Package | Members |
|---|---|---|---|
| IReflector | The reflection operation helper in R# language runtime | REnv 5.1.3.5558 |
1 |
| RFunction | the abstract model of these: 1. | REnv 5.1.3.5558 |
5 |
| RIndex | index start from base 1 | REnv 5.1.3.5558 |
5 |
| RNameIndex | a collection data model in R# language that indicates each element has names | REnv 5.1.3.5558 |
4 |
| RPipeline | REnv 5.1.3.5558 |
2 |
SMRUCC.Rsharp.Runtime.Internal
| Type | Summary | Package | Members |
|---|---|---|---|
| debug | REnv 5.1.3.5558 |
13 | |
| generic | Typped generic function invoke. | REnv 5.1.3.5558 |
8 |
| GenericFunction | 类型通用函数重载申明 fun(x, ...) | REnv 5.1.3.5558 |
3 |
| htmlPrinter | generates html document text from the given object | REnv 5.1.3.5558 |
3 |
| invoke | The R internal function invoke helper module | REnv 5.1.3.5558 |
8 |
| lambdaExtensions | REnv 5.1.3.5558 |
1 |
SMRUCC.Rsharp.Runtime.Internal.ConsolePrinter
| Type | Summary | Package | Members |
|---|---|---|---|
| classPrinter | Console print formatter for non System user class type | REnv 5.1.3.5558 |
1 |
| enumPrinter | REnv 5.1.3.5558 |
3 | |
| InternalToString | A delegate function for produce the data handler for build print string | REnv 5.1.3.5558 |
3 |
| printer | R# console nice print supports. | REnv 5.1.3.5558 |
11 |
| tablePrinter | R# runtime dataframe object printer | REnv 5.1.3.5558 |
4 |
SMRUCC.Rsharp.Runtime.Internal.Invokes
| Type | Summary | Package | Members |
|---|---|---|---|
| applys | REnv 5.1.3.5558 |
6 | |
| base | 在这个模块之中仅包含有最基本的数据操作函数 | REnv 5.1.3.5558 |
79 |
| bitView | REnv 5.1.3.5558 |
1 | |
| conditions | REnv 5.1.3.5558 |
1 | |
| devtools | An internal development tools | REnv 5.1.3.5558 |
9 |
| env | The r-sharp script runtime environment functions | REnv 5.1.3.5558 |
19 |
| etc | REnv 5.1.3.5558 |
10 | |
| file | File Manipulation These functions provide a low-level interface to the computer's file system. | REnv 5.1.3.5558 |
48 |
| humanReadableFormatter | REnv 5.1.3.5558 |
3 | |
| math | R# math module | REnv 5.1.3.5558 |
47 |
| NullStream | 提供一个不存储任何数据的 Stream。所有写入的数据都被丢弃,所有读取操作都返回0。 这是对类 Unix 系统上的 /dev/null 或 Windows 上的 NUL 设备的 .NET 模拟。 | REnv 5.1.3.5558 |
0 |
| ranking | REnv 5.1.3.5558 |
2 | |
| RCurl | REnv 5.1.3.5558 |
1 | |
| reflections | REnv 5.1.3.5558 |
8 | |
| RFormat | 提供与 R 语言 base::format 函数功能相似的格式化方法。 | REnv 5.1.3.5558 |
8 |
| RPInvoke | helper class for create runtime delegate type in dynamics | REnv 5.1.3.5558 |
0 |
| rust | the rust language helper | REnv 5.1.3.5558 |
7 |
| s4Methods | s4object api function exports | REnv 5.1.3.5558 |
4 |
| set | Set Operations | REnv 5.1.3.5558 |
15 |
| stddev | REnv 5.1.3.5558 |
3 | |
| stringr | the R text data helper | REnv 5.1.3.5558 |
40 |
| strings | Simulation of the Strings module | REnv 5.1.3.5558 |
13 |
| time | REnv 5.1.3.5558 |
2 | |
| utils | helper tools for the R# programming | REnv 5.1.3.5558 |
34 |
SMRUCC.Rsharp.Runtime.Internal.Invokes.base
| Type | Summary | Package | Members |
|---|---|---|---|
| PrinterOptions | REnv 5.1.3.5558 |
3 |
SMRUCC.Rsharp.Runtime.Internal.Invokes.LinqPipeline
| Type | Summary | Package | Members |
|---|---|---|---|
| dataframe_methods | some common dataframe operations | REnv 5.1.3.5558 |
6 |
| dplyr | REnv 5.1.3.5558 |
1 | |
| Group | Elements in Group.group have a common Group.key | REnv 5.1.3.5558 |
2 |
| keyIndex | get key name index for the lapply/parLapply | REnv 5.1.3.5558 |
0 |
| linq | Provides a set of static (Shared in Visual Basic) methods for querying objects that implement System.Collections.Generic.IEnumerable1. | REnv 5.1.3.5558 |
23 |
| parallelApplys | REnv 5.1.3.5558 |
2 | |
| reshape2 | REnv 5.1.3.5558 |
11 |
SMRUCC.Rsharp.Runtime.Internal.Invokes.RFormat
| Type | Summary | Package | Members |
|---|---|---|---|
| Justification | 指定字符串的对齐方式,模仿 R 的 justify 参数。 | REnv 5.1.3.5558 |
4 |
SMRUCC.Rsharp.Runtime.Internal.Invokes.utils
| Type | Summary | Package | Members |
|---|---|---|---|
| TimeSpanUnits | the data unit of the timespan value | REnv 5.1.3.5558 |
6 |
SMRUCC.Rsharp.Runtime.Internal.Object
| Type | Summary | Package | Members |
|---|---|---|---|
| CLRIterator | subclass of pipeline.pipeline model | REnv 5.1.3.5558 |
3 |
| dataframe | A data frame, a matrix-like structure whose columns may be of differing types (numeric, logical, factor and character and so on). | REnv 5.1.3.5558 |
44 |
| factor | string to integer dictionary | REnv 5.1.3.5558 |
12 |
| generator | A generator function wrapper | REnv 5.1.3.5558 |
3 |
| IdataframeReader | syntax helper for a readonly dataframe liked clr object | REnv 5.1.3.5558 |
3 |
| invalidObject | NA literal value | REnv 5.1.3.5558 |
4 |
| invisible | do not print the result object on the console unless an explicit call of the print or cat function have been invoke | REnv 5.1.3.5558 |
4 |
| list | A tuple paired list object model | REnv 5.1.3.5558 |
45 |
| margins | row or column? | REnv 5.1.3.5558 |
2 |
| matrix | all element inside the matrix has the sample data type | REnv 5.1.3.5558 |
9 |
| names | REnv 5.1.3.5558 |
9 | |
| PipeIterator | IEnumerable collection of T | REnv 5.1.3.5558 |
7 |
| pipeline | The R# data pipeline this model object is a kind of wrapper of the .net clr IEnumerable interface | REnv 5.1.3.5558 |
18 |
| reflector | REnv 5.1.3.5558 |
3 | |
| S4Object | class definition of the dynamics runtime clr object | REnv 5.1.3.5558 |
10 |
| vbObject | Proxy for VB.NET class Object | REnv 5.1.3.5558 |
9 |
| vector | REnv 5.1.3.5558 |
22 |
SMRUCC.Rsharp.Runtime.Internal.Object.baseOp
| Type | Summary | Package | Members |
|---|---|---|---|
| s4Reflector | S4 type system | REnv 5.1.3.5558 |
11 |
SMRUCC.Rsharp.Runtime.Internal.Object.baseOp.dataframeOp
SMRUCC.Rsharp.Runtime.Internal.Object.Converts
| Type | Summary | Package | Members |
|---|---|---|---|
| castList | cast R# list to Dictionary | REnv 5.1.3.5558 |
4 |
| castRaw | REnv 5.1.3.5558 |
1 | |
| IMakeDataFrame | handler for cast any clr runtime object as R# runtime dataframe object | REnv 5.1.3.5558 |
3 |
| makeDataframe | as.data.frame | REnv 5.1.3.5558 |
11 |
| makeList | REnv 5.1.3.5558 |
1 | |
| RConversion | REnv 5.1.3.5558 |
22 | |
| RCType | REnv 5.1.3.5558 |
7 |
SMRUCC.Rsharp.Runtime.Internal.Object.Linq
| Type | Summary | Package | Members |
|---|---|---|---|
| DataframeGroup | REnv 5.1.3.5558 |
3 |
SMRUCC.Rsharp.Runtime.Internal.Object.Utils
| Type | Summary | Package | Members |
|---|---|---|---|
| TableFormatter | REnv 5.1.3.5558 |
1 | |
| TableRow | table row object for save dataframe to file | REnv 5.1.3.5558 |
4 |
SMRUCC.Rsharp.Runtime.Interop
| Type | Summary | Package | Members |
|---|---|---|---|
| DefaultVectorParser | 1. 字符串类型默认使用|作为分隔符 2. 数值类型默认使用,作为分隔符 | REnv 5.1.3.5558 |
1 |
| IRType | the common model of the .NET clr type and R# runtime type | REnv 5.1.3.5558 |
3 |
| ListObjectArgumentMargin | indicates the location of ... | REnv 5.1.3.5558 |
8 |
| RApiReturnAttribute | For make compatibale with return value and exception message or R# object wrapper The .NET api is usually declare as returns object value, then we could use this attribute to let… | REnv 5.1.3.5558 |
12 |
| RArgumentList | REnv 5.1.3.5558 |
7 | |
| RByRefValueAssignAttribute | 这个参数是接受a(x) <- y操作之中的y结果值的 | REnv 5.1.3.5558 |
0 |
| RDefaultExpressionAttribute | the default string literal value of the parameter can be parsed end evaluated as R expression result. | REnv 5.1.3.5558 |
1 |
| RDefaultFunction | A template for check of the RDefaultExpressionAttribute | REnv 5.1.3.5558 |
0 |
| RDefaultValueAttribute | 这个需要在目标类型与字符串之间存在有一个隐式转换的操作符定义 param as type = "xxxxxx" | REnv 5.1.3.5558 |
3 |
| RDispose | Helper for implements using in R | REnv 5.1.3.5558 |
5 |
| REnum | VB.NET enum type wrapper in R | REnv 5.1.3.5558 |
10 |
| RGenericOverloads | RGenericOverloadsAttribute parser result | REnv 5.1.3.5558 |
4 |
| RGenericOverloadsAttribute | construct a flag that indicates that target clr function will be overloads in R# environment, the function overloads is determined based on the data type of the first parameter… | REnv 5.1.3.5558 |
4 |
| RInitializeAttribute | 如果使用sub new初始化的话,则在导入程序包的时候sub new里面的代码是不会被自动调用的 对sub new构造函数的调用只在发生实际的api调用的时候才会发生 所以才在这里使用这个属性来标记一些需要在导入程序包的时候自动化运行的代码来进行一些初始化操作 | REnv 5.1.3.5558 |
0 |
| RLazyExpressionAttribute | Tells the script host: dot not evaluate this parameter its source expression, it should pass the raw expression object to this parameter | REnv 5.1.3.5558 |
0 |
| RListObjectArgumentAttribute | 表示当前的函数参数为一个 ... 可以产生一个字典list对象值的参数列表 | REnv 5.1.3.5558 |
3 |
| RMethodArgument | The R# method argument wrapper | REnv 5.1.3.5558 |
13 |
| RMethodInfo | Use for R# package method, a wrapper for the .NET clr function MethodInfo. | REnv 5.1.3.5558 |
26 |
| ROperatorAttribute | REnv 5.1.3.5558 |
3 | |
| RPackageModuleAttribute | 标注这个程序集是一个R#程序包 | REnv 5.1.3.5558 |
0 |
| RPlotStyleCSSAttribute | 这个主要是针对plot泛型函数,因为泛型函数没有办法正常展示与绘图样式相关的函数参数,所以会需要使用这个参数来进行展示 | REnv 5.1.3.5558 |
7 |
| RRawVectorArgumentAttribute | 表示这个参数是一个数组,环境系统不应该自动调用getFirst取第一个值 | REnv 5.1.3.5558 |
8 |
| RReturn | VB.NET api to R# function invoke result wrapper, with additional warning, debug, errors messages, etc | REnv 5.1.3.5558 |
6 |
| RS4ClassGraph | An clr interface liked type define in R | REnv 5.1.3.5558 |
5 |
| RSuppressPrintAttribute | The return value will not be print on the console. | REnv 5.1.3.5558 |
1 |
| RSymbolLanguageMaskAttribute | 没有被找到的符号会被这个标记所指定的函数解析为对象参加运算 | REnv 5.1.3.5558 |
6 |
| RSymbolTextArgumentAttribute | 表示当前的这个参数的参数值可以接受文本或者未找到符号的变量名作为参数值 | REnv 5.1.3.5558 |
1 |
| RType | The type wrapper for .NET type to R# language runtime | REnv 5.1.3.5558 |
34 |
| RTypeExportAttribute | export data type to R# runtime environment | REnv 5.1.3.5558 |
4 |
| RuntimeValueLiteral | Literal of any .NET clr runtime value object | REnv 5.1.3.5558 |
6 |
SMRUCC.Rsharp.Runtime.Interop.CType
| Type | Summary | Package | Members |
|---|---|---|---|
| ICTypeDataframe | An interface for cast current .NET clr object to R# dataframe object. | REnv 5.1.3.5558 |
1 |
| ICTypeList | An interface for cast current .NET clr object to R# list object. | REnv 5.1.3.5558 |
1 |
SMRUCC.Rsharp.Runtime.Interop.Operator
| Type | Summary | Package | Members |
|---|---|---|---|
| BinaryIndex | execute a binary expression based on the value type selector | REnv 5.1.3.5558 |
8 |
| BinaryOperator | execute a binary expression | REnv 5.1.3.5558 |
6 |
| BinaryOperatorEngine | engine of binary operator in R | REnv 5.1.3.5558 |
5 |
| IBinaryOperator | Evaluate of a binary operator | REnv 5.1.3.5558 |
3 |
SMRUCC.Rsharp.Runtime.Serialize
| Type | Summary | Package | Members |
|---|---|---|---|
| bitmapBuffer | handler for gdi+ image data. | REnv 5.1.3.5558 |
4 |
| Buffer | data buffer model for run R# IPC | REnv 5.1.3.5558 |
6 |
| BufferObjects | REnv 5.1.3.5558 |
8 | |
| dataframeBuffer | REnv 5.1.3.5558 |
6 | |
| listBuffer | REnv 5.1.3.5558 |
5 | |
| messageBuffer | the error message | REnv 5.1.3.5558 |
9 |
| NullObject | REnv 5.1.3.5558 |
4 | |
| rawBuffer | a vector of raw bytes | REnv 5.1.3.5558 |
5 |
| textBuffer | utf8 text data | REnv 5.1.3.5558 |
6 |
| vectorBuffer | serialize handler for R# vector | REnv 5.1.3.5558 |
12 |
SMRUCC.Rsharp.Runtime.Vectorization
| Type | Summary | Package | Members |
|---|---|---|---|
| CLRVector | Data cast type helper for the primitive array in CLR function code | REnv 5.1.3.5558 |
13 |
| Core | Operator impl core | REnv 5.1.3.5558 |
13 |
| GetVectorElement | helper class object for make a safe vector element visiting | REnv 5.1.3.5558 |
23 |
| ObjectSet | data collection helper | REnv 5.1.3.5558 |
2 |
| op_evaluator | REnv 5.1.3.5558 |
3 | |
| typedefine | Type cache module | REnv 5.1.3.5558 |
4 |