HolobiomicsLab
- 7.4k skills
- 0 followers
- 1 day ago last updated
- ▌ Normalization Method Comparative Evaluation · holobiomicslabUse when you have raw metabolomics intensity data affected by batch effects and signal drift, and need to select among multiple normalization approaches based on published comparative metrics.
- ▌ Numerical Feature Serialization And Storage · holobiomicslabUse when after computing molecular descriptors (RDKit, mordred) or featurizing chromatographic parameters (column metadata, gradient slopes, pH, additives), you have a NumPy array or list of arrays in memory that must be persisted for reproducibility, shared across pipeline stages, or archived.
- ▌ Outlier Detection Via Multivariate Distance · holobiomicslabUse when after batch normalization when you have a Metaboprep object with metabolomic feature data and need to identify samples that are statistical outliers in the high-dimensional feature space. Use it when you want to detect unusual sample profiles before downstream multivariate analyses (e.
- ▌ Pearson Correlation Coefficient Computation · holobiomicslabUse when after annotating mass-difference pairs with candidate adduct identities, compute correlations to test whether putative parent and adduct ion intensities co-vary across the imaging pixel grid. High positive correlation (with Bonferroni-corrected p-value < 0.
- ▌ Polarity Filtering In Targeted Metabolomics · holobiomicslabUse when when working with targeted LC–MS metabolomics or lipidomics data where compound targets span both positive and negative ionization modes, or when your raw .
- ▌ Rt Uncertainty Quantification And Filtering · holobiomicslabUse when you have a set of metabolite candidates with observed retention times and access to a trained DNN retention time predictor (MAE 39.2±1.2 s) or meta-learned projections between chromatographic methods.
- ▌ Scalable Network Inference High Dimensional · holobiomicslabUse when when working with feature abundance tables (rows=features, columns=samples) where the feature count exceeds 10,000 and you need to infer a network of correlations between features.
- ▌ Spearman Correlation Computation Microbiome · holobiomicslabUse when you have cross-validated predictions of metabolite abundances from a microbiome-metabolome model and need to: (1) measure predictive accuracy at the individual metabolite level; (2) aggregate performance across all metabolites to report mean SCC;
- ▌ Spectral Feature Extraction And Integration · holobiomicslabUse when when you have a base message passing neural network (e.g., chemprop) trained on molecular graphs and need to augment it with infrared spectral information to improve prediction accuracy for molecular properties.
- ▌ Spectral Vector Representation And Encoding · holobiomicslabUse when when you have a set of mass spectra (query or library) that need to be searched against a large spectral reference database, and you want to use fast approximate nearest neighbor methods rather than exhaustive pairwise comparisons.
- ▌ Spectrum Processing Throughput Benchmarking · holobiomicslabUse when when selecting a spectrum processing library for high-throughput proteomics or metabolomics workflows, or when optimizing an existing pipeline for computational efficiency. Apply this skill when you have access to representative raw MS data (e.
- ▌ String Value Construction From Tabular Data · holobiomicslabUse when you have a JSON table (e.g., protocol records with 'type', 'id', and 'description' fields) and need to create a single concatenated string value by selecting a subset of records matching a condition (e.
- ▌ Structural Identifier Completeness Checking · holobiomicslabUse when preprocessing open mass spectrometry libraries (OMSLs) or aggregated spectral datasets where structural identifiers are inconsistently populated.
- ▌ Tensor Dimension Alignment And Broadcasting · holobiomicslabUse when when implementing a multi-task deep learning model that predicts charge, isotope count, and retention time simultaneously from mass spectrometry data, and separate feature extraction branches produce tensors of different semantic dimensions that must be integrated.
- ▌ Tool Parameter Specification And Validation · holobiomicslabUse when you have a working R package (e.g., IonFlow for ionomics data analysis) that performs well in standalone R environments, but need to expose it as a reusable Galaxy tool so that non-expert users can invoke it without writing R code, while preserving parameter semantics and validating input.
- ▌ Unit Test Design For Data Structure Classes · holobiomicslabUse when when implementing a new data structure class that extends standard Python collections (e.g., collections.UserDict) and must support multiple initialization modes, operator overloading (__add__, __sub__), custom string formatting (__str__, __repr__), and validation logic.
- ▌ Visual Pattern Recognition In Spectral Data · holobiomicslabUse when after database search algorithms have scored unknown MS samples against reference species, and you need to visually inspect and confirm species assignments or identify ambiguous classifications.
- ▌ CI Pipeline Reproducibility Verification · holobiomicslabUse when you have cloned a scientific Python project (e.g., scverse/scanpy) and need to verify that your local development environment matches the CI specification before submitting contributions, or when auditing whether the published test suite executes without failures on a fresh checkout.
- ▌ Dimensionality Reduction Via Reverse Pca · holobiomicslabUse when you have a normalized single-cell expression matrix (e.g., after SCTransform) and need to compute gene-level covariance structure for pathway enrichment analysis (e.g., GESECA) rather than cell-level dimensionality reduction.
- ▌ Gene Set Enrichment Scoring Coregulation · holobiomicslabUse when you have a normalized gene expression matrix (log2-quantile normalized, filtered to high-variance genes) and a collection of annotated gene sets (e.g., Reactome, MSigDB pathways), and need to test whether specific pathways show significant coordinated expression shifts.
- ▌ Gsea Result Interpretation Visualization · holobiomicslabUse when after running fgsea() on a preranked gene list when you need to: (1) identify which pathways are most significantly enriched or depleted (lowest p-values), (2) distinguish between upregulated pathways (ES > 0) and downregulated pathways (ES < 0) within your gene set collection, (3).
- ▌ Hypothesis Weighting Statistical Control · holobiomicslabUse when when you have completed DESeq2 differential expression analysis on RNA-seq count data and obtained p-values for each gene, use IHW if you want to improve power to detect true positives beyond standard independent filtering.
- ▌ Lazy Computation Orchestration With Dask · holobiomicslabUse when your input is a spatial dataset (AnnData object with coordinate metadata) paired with a large tissue image, and you need to extract spatial features (via squidpy.im.calculate_image_features or similar operations) without loading the entire computation graph into memory.
- ▌ Linear Model Fitting For Gene Expression · holobiomicslabUse when you have a normalized gene expression matrix (genes × samples) and an experimental design with known treatment groups or conditions, and you need to estimate the effect of those conditions on expression levels while accounting for sample-to-sample variability.
- ▌ Ma Plot Visualization And Interpretation · holobiomicslabUse when after obtaining shrunken or unshrunken log fold change estimates from DESeq2 results objects, particularly when comparing multiple shrinkage estimator types (apeglm, normal, ashr) or evaluating the effect of shrinkage on fold change estimates across genes with varying expression levels.
- ▌ Marker Gene Identification By Clustering · holobiomicslabUse when you have a processed single-cell expression matrix (AnnData object) with pre-computed cluster assignments (e.g., leiden or louvain clusters in adata.obs) and want to discover which genes define each cluster's transcriptional identity.
- ▌ Memory Efficient Single Cell Computation · holobiomicslabUse when your input is a single-cell gene expression matrix too large to fit in RAM, or you are working in a resource-constrained environment (e.g., shared compute cluster, laptop with limited memory). You have constructed or loaded an AnnData object with X as a dask.array.
- ▌ Pathway Cell Type Association Validation · holobiomicslabUse when you have a multi-cluster single-cell RNA-seq dataset with cell-type annotations and you want to test whether known biological pathways (e.g., KEGG or MSigDB gene sets) show significantly elevated or differential enrichment across cell types.
- ▌ Rna Seq Differential Expression Analysis · holobiomicslabUse when you have RNA-seq read count data (from alignment tools, transcript quantification, or feature counting) organized in a count matrix with samples as columns and genes as rows, paired with sample metadata (condition, batch, treatment), and you want to test which genes show statistically.
- ▌ Electrophoretic System Parameter Specification · holobiomicslabUse when you are preparing to perform effective mobility transformation of CE-MS data and must establish the electrophoretic system's calibration context.
- ▌ Ms2 Spectrum Extraction And Consensus Building · holobiomicslabUse when when you have DDA LC-MS/MS data (mzML format) with identified chromatographic peaks at a specific m/z (e.g., 304.1131) and multiple MS2 spectra fragmented from that precursor, and you need to produce a single high-confidence MS2 spectrum for comparison against reference databases (e.
- ▌ Chromatogram Baseline Correction Preprocessing · holobiomicslabUse when you have raw or folded 2D-TIC chromatogram data (typically imported from NetCDF files into RGCxGC chromatogram objects) that exhibits baseline drift, chemical noise, or instrumental artifacts that would obscure true metabolite peaks.
- ▌ Hierarchical Clustering Parameter Optimization · holobiomicslabUse when after peak detection in GC-IMS preprocessing, when you need to group peaks across multiple samples and must decide whether euclidean distance is appropriate for your drift time and retention time coordinate space, and when you need to validate that your chosen dt_cluster_spread_ms and.
- ▌ Mass Spectrometry Matrix Background Simulation · holobiomicslabUse when when you need to create negative control or background-only reference datasets for LC/GC-MS analysis pipelines—specifically to validate peak-picking algorithms, assess false-positive rates, or simulate instrument background and matrix effects (e.
- ▌ Mass Spectrometry Tolerance Window Calibration · holobiomicslabUse when after feature extraction from raw LC-MS or GC-MS data (using XCMS, MS-Dial, or similar), when you have a feature intensity table with m/z and RT metadata and a reference compound database (known molecules list with m/z, RT, and annotation metadata), and you need to assign confidence-ranked.
- ▌ Molecular Identifier Completeness Verification · holobiomicslabUse when during MSP, MGF, JSON, or CSV file parsing when standardizing mass spectra from heterogeneous open mass spectral libraries (OMSLs).
- ▌ Spectral Batch Submission To Networking Server · holobiomicslabUse when you have deconvolved GC-MS spectra in GNPS_GC input-compatible format and want to construct a molecular network to identify relationships between unknown compounds and perform structured chemical similarity analysis.
- ▌ Spectral Library Matching And M Z Peak Ranking · holobiomicslabUse when you have raw GC-MS output in CSV format (with Component.RT, Base.Peak.MZ, Component.Area, Compound.Name, Match.Factor, and File.Name columns) and need to systematically rank putative identifications by match quality and exact mass agreement.
- ▌ Word2vec Model Inference Unknown Word Handling · holobiomicslabUse when when applying a pre-trained Word2Vec model to mass spectra at inference time (e.g., library matching or molecular networking), especially when the query spectra may contain fragment peaks or neutral losses not represented in the model's training vocabulary.
- ▌ Chimeric Spectra Classification Model Training · holobiomicslabUse when when your DDA-mode LC-MS/MS data exhibits chimeric spectra patterns that differ systematically from the reference training set used in DNMS2Purifier, or when you wish to optimize purification sensitivity/specificity for your particular instrument, ionization method, or sample matrix.
- ▌ Chromatogram And Ionization Intensity Modeling · holobiomicslabUse when when you need to simulate LC-MS/MS data for fragmentation strategy development and do not have (or wish to augment) real experimental chromatograms. Specifically: (1) you have a list of known or sampled chemical compounds with molecular formulae;
- ▌ Chromatographic Peak Detection And Integration · holobiomicslabUse when after loading centroided .mzML LC-MS data and defining a target list (compound ID, name, m/z, RT, polarity) when you need to: (1) automatically locate and integrate peaks for known compounds across multiple runs; (2) generate per-target and per-run quantitative metrics;
- ▌ Chromatographic Peak Quality Metric Evaluation · holobiomicslabUse when when processing untargeted LC-MS metabolomics data with XCMS and need to identify low-quality peak integrations that may introduce noise or bias into subsequent compound identification and quantification.
- ▌ Contrastive Learning For Cross Modal Retrieval · holobiomicslabUse when you have paired MS/MS spectra and molecular structures (SMILES or SDF format) and need to perform compound identification by retrieving the correct structure for an unknown spectrum.
- ▌ Distribution Shape Adaptation In Normalization · holobiomicslabUse when after imputation and correction, when metabolomic feature intensities exhibit heteroscedastic variance or non-normal distributions across samples.
- ▌ Domain Specific Spectrum Search Implementation · holobiomicslabUse when you have acquired one or more tandem MS/MS spectra and need to identify metabolites against a reference library filtered by biological domain (e.
- ▌ Feature Abundance Pattern Correlation Analysis · holobiomicslabUse when after initial retention-time-based feature grouping has been performed on LC-MS data but before final EIC similarity refinement.
- ▌ Feature Annotation Via Isotope Adduct Grouping · holobiomicslabUse when after peak detection and feature extraction have produced a composite feature table with m/z, retention time, and intensity values for individual samples.
- ▌ Feature Based Molecular Network Interpretation · holobiomicslabUse when you have a feature-based molecular network generated from non-targeted LC-MS/MS metabolomics data (e.
- ▌ Feature Quality Assessment By Rsd Within Class · holobiomicslabUse when after blank subtraction and background drift removal in an MS-DIAL peak list, when you need to exclude features with high within-class measurement variability. Apply this when you have replicate samples assigned to distinct classes (e.
- ▌ Feedforward Neural Network Architecture Design · holobiomicslabUse when you have preprocessed molecular structures as fixed-length feature vectors and need to establish a fair-comparison baseline model for tandem mass spectrum prediction.
- ▌ Intensity To Absolute Concentration Conversion · holobiomicslabUse when your lipidomics experiment includes spiked internal lipid standards of known concentration, and you have raw signal intensity matrices from LipidSearch or LIQUID output.
- ▌ Lipid Fingerprint Regeneration Neural Networks · holobiomicslabUse when you have MS/MS spectra with initial lipid annotations from spectral library matching (e.g., from XCMS + CAMERA or LipidIN's Expeditious Querying module) and seek to improve recall, precision, and annotation coverage.
- ▌ Machine Learning Performance Metric Evaluation · holobiomicslabUse when after training a binary MS/MS spectral classifier on labeled data, apply this skill to quantify classifier performance before deployment.
- ▌ Mass Spectra Clustering Hyperdimensional Space · holobiomicslabUse when you have large-scale MS/MS spectra datasets (hundreds of thousands to millions of spectra) in MGF format that need to be grouped by similarity, and you have access to NVIDIA GPU hardware (GTX 1080Ti or GTX 3090).
- ▌ Mass Spectrometry Peak Alignment Visualization · holobiomicslabUse when when you have aligned peak data from molecular networking (with m/z, intensity, retention time, and alignment quality metrics across multiple spectra) and need to interactively explore peak alignments under multiple filtering criteria (intensity thresholds, alignment score cutoffs, peak.
- ▌ Mass Spectrometry Reference Standard Alignment · holobiomicslabUse when you have positive- or negative-mode tunemix reference data (with known CCS values, m/z, and measured drift times) and need to establish a calibration model for converting observed drift times into CCS values for downstream feature annotation.
- ▌ Monte Carlo Dropout Uncertainty Quantification · holobiomicslabUse when when a trained Siamese neural network model makes predictions on new spectrum pairs and you need to identify and exclude high-uncertainty predictions to improve RMSE.
- ▌ Ms Ms Spectral Preprocessing And Normalization · holobiomicslabUse when you have a labelled dataset of raw MS/MS spectra annotated as 'relevant' (compounds of interest) or 'other' (reference standards or non-target compounds) and need to prepare them for supervised classifier training.
- ▌ Ms Ms Spectrum Tokenization And Representation · holobiomicslabUse when when you have raw MS/MS spectra in MSP format (or similar) with m/z–intensity peak pairs and need to prepare them for neural embedding models that require fixed-size discrete token inputs. Applies before generating dense spectral embeddings for retrieval or similarity scoring tasks.
- ▌ Multi Assay Data Integration And Harmonization · holobiomicslabUse when you have independent LC-MS assays (e.g., positive and negative ionization modes, different lipid profiling assays, or different chromatographic methods) analyzed on the same sample cohort and want to integrate them into a single discriminant or regression model without losing assay-level.
- ▌ Multi Window Mass Range Parameter Optimization · holobiomicslabUse when you observe sawtooth or discontinuous peak profiles in EICs after running tardisPeaks() on LC-MS data acquired with multiple overlapping or sequential m/z scan windows (e.g., positive and negative polarity scans, or data-independent acquisition with staggered windows).
- ▌ Multiplexed Spectra Recovery And Deconvolution · holobiomicslabUse when you have raw IM-MS data in UIMF or Agilent MassHunter .d format acquired from a multiplexed (interleaved) ion mobility experiment, and you need to recover individual, demultiplexed frames to reconstruct conventional IM-MS spectra for downstream omics analysis.
- ▌ Multivariate Statistical Analysis Metabolomics · holobiomicslabUse when when you have preprocessed non-targeted LC-MS/MS feature tables (post-merging, cleanup, blank removal, and batch correction) and seek to uncover multivariate patterns across samples, discriminate between experimental groups, or reduce dimensionality of high-dimensional metabolomic data.
- ▌ Nearest Neighbor Clustering By Mass Difference · holobiomicslabUse when processing LC-MS metabolomics studies with >10 samples where sample count and memory constraints make pairwise mass alignment infeasible.
- ▌ Network Component Identification And Filtering · holobiomicslabUse when you have a GNPS GraphML molecular network and need to isolate cohesive subsets of spectra (components) before analyzing which fragmentation patterns explain them.
- ▌ Neural Network Layer Design And Implementation · holobiomicslabUse when when replacing deprecated model components (e.
- ▌ Peak Map Rendering Retention Time Mz Intensity · holobiomicslabUse when when you have loaded mass spectrometry data (from mzML or Bruker .
- ▌ Peak Neutral Loss Occurrence Data Manipulation · holobiomicslabUse when you have aligned MS2 spectra from multiple samples and need to create a matrix representation where rows are samples and columns are MS2 peaks or neutral losses (mass differences to the precursor), with counts of occurrences.
- ▌ Percentile Feature Filtering For Normalization · holobiomicslabUse when you have a raw or pre-processed LC-MS feature table with multiple samples and need to normalize for inter-sample intensity biases before downstream statistical analysis.
- ▌ Performance Benchmarking Computational Systems · holobiomicslabUse when you have implemented or reconstructed a performance-critical computational module (e.g., an expeditious querying engine, a database lookup accelerator, or a real-time matching algorithm) and need to validate that it achieves claimed throughput targets.
- ▌ Probabilistic Topic Modeling Mass Spectrometry · holobiomicslabUse when you have preprocessed tandem mass spectrometry spectra converted into a bag-of-fragments representation (with fragments and neutral losses extracted and noise filtered) and your goal is to discover recurring fragmentation patterns or substructures across a large spectral dataset without.
- ▌ Python Class Interface Design For Ml Libraries · holobiomicslabUse when when building a machine learning library for scientific workflows where users need to: (1) prepare domain-specific data (e.
- ▌ Resolution Effect Correction Unlabeled Samples · holobiomicslabUse when when you have paired LC-MS data from both labeled (isotope-tracer dosed) and unlabeled (control) samples of the same analytes, and you want to correct FAM to true MDV while accounting for resolution effects from the mass spectrometer (especially relevant for high-resolution instruments.
- ▌ Retention Time Regression Output Specification · holobiomicslabUse when after initializing and executing a forward pass through a dual-branch RT-Transformer model (combining fingerprint and molecular graph inputs) on a batch of molecular samples, to verify that the output tensor conforms to the expected shape, data type, and numeric range for retention time.
- ▌ Ribosomally Synthesized Peptide Identification · holobiomicslabUse when you have LC-MS/MS spectral data (in MGF, mzXML, mzML, or mzData format) and corresponding genomic sequence data (raw FASTA nucleotide sequences or genome mining tool outputs like antiSMASH .final.
- ▌ Selectivity Metric Computation Chromatographic · holobiomicslabUse when after peak detection on composite mass tracks when you need to evaluate whether a detected peak represents a pure, interference-free signal on its m/z channel.
- ▌ Source Code Inspection For Preprocessing Steps · holobiomicslabUse when when you need to verify that a specific data transformation (e.g., precursor m/z zeroing, feature scaling, or field masking) is applied consistently across multiple execution workflows (training, evaluation, inference) in a codebase.
- ▌ Spectral Denoising Via Training Data Filtering · holobiomicslabUse when you have untargeted MS2 spectra from environmental or clinical samples that will be used for natural product identification (e.g., linking to BGCs via IOKR or other kernel-based methods), and you have access to a high-quality training library of annotated spectra with known structures.
- ▌ Spectral Format Conversion Mzml To Proprietary · holobiomicslabUse when after clustering features with RAMClustR and inferring molecular weights via do.findmain, when you need to perform structure elucidation or molecular formula prediction using MSFinder (for .mat format) or Sirius (for .ms format).
- ▌ Spectral Peak Frequency Threshold Optimization · holobiomicslabUse when you have MS/MS spectra with fragment frequency annotations (from consensus spectrum generation) and need to decide which fragments to retain versus remove. Trigger conditions: (1) you have replicate MS/MS spectra for the same feature with per-fragment recurrence frequencies calculated;
- ▌ Spectral Similarity Prediction Neural Networks · holobiomicslabUse when when you have paired MS/MS spectra with known structural similarity labels (Tanimoto scores from molecular fingerprints) and need to predict structural similarity for new spectrum pairs faster than fingerprint-based methods, or when you want to assess model prediction confidence per.
- ▌ Spectrum Preprocessing For Similarity Analysis · holobiomicslabUse when when you have raw MS/MS spectra with residual noise or low-intensity peaks and plan to calculate spectral entropy, entropy similarity, or perform spectral library matching.
- ▌ Statistical Hypothesis Testing Mean Comparison · holobiomicslabUse when you have computed raw or standardised correlation scores (or other link-ranking metrics) for all possible GCF-MF pairs in a dataset and want to verify that validated links (those with known strain co-occurrence or experimental confirmation) are significantly enriched at higher score values.
- ▌ Tandem Mass Spectrum Prediction Fragment Level · holobiomicslabUse when you have a molecular structure (SMILES, InChI, or chemical formula) and need to predict its collision-induced dissociation (CID) tandem mass spectrum with fragment-level resolution. Use this when chemical-formula-level predictions (e.
- ▌ Technical Replicate Reproducibility Assessment · holobiomicslabUse when you have tandem MS data with technical replicates and need to remove features showing high variability between replicates.
- ▌ Thermo Fisher Orbitrap Metadata Interpretation · holobiomicslabUse when when you have a Thermo Fisher Scientific .
- ▌ Univariate Statistical Analysis Interpretation · holobiomicslabUse when you have a preprocessed feature table from non-targeted LC-MS/MS metabolomics data (after data merging, cleanup, blank removal, and batch correction) and need to test whether individual metabolomic features show statistically significant differences between experimental groups or.
- ▌ Untargeted Metabolomics Feature Interpretation · holobiomicslabUse when you have an untargeted metabolomics feature table (m/z values, retention times, p-values from statistical testing) and need to infer which metabolic pathways are active without performing metabolite identification.
- ▌ Cohort Stratified Metabolic Performance Analysis · holobiomicslabUse when when you have uploaded a pre-analytical data table containing sample metadata, processing delay annotations (pre- and post-centrifugation times), and paired NMR metabolomic measurements for a plasma or serum cohort, and you need to determine how processing delays impact metabolite.
- ▌ Heteronuclear Homonuclear Correlation Extraction · holobiomicslabUse when you have 2D NMR spectral data from multiple samples (a large sample set) including both heteronuclear experiments (HSQC, HMBC) and homonuclear experiments (COSY), and your goal is to identify which structural features are conserved across samples, prioritize samples by scaffold similarity.
- ▌ Nmr Spectra Preprocessing And Feature Extraction · holobiomicslabUse when when you have raw or lightly processed 1D NMR spectra (¹H and/or ¹³C) from unknown organic compounds and need to extract latent spectral features prior to structure elucidation.
- ▌ Python Deep Learning Model Loading And Execution · holobiomicslabUse when when you have a pre-trained deep learning model checkpoint (saved in PyTorch format) and new 1D 1H NMR spectral data in CSV and peak-list TXT formats, and you need to generate peak-to-metabolite assignments or other structured outputs from that model without modification of model weights.
- ▌ Spectral Visualization And Result Interpretation · holobiomicslabUse when after peak clustering, network filtering, and database matching have identified candidate metabolites and their associated peak networks.
- ▌ Chromatin Accessibility Deviation Computation · holobiomicslabUse when when you have filtered ATAC-seq or DNAse-seq peak counts (after GC bias correction, sample filtering, and peak filtering) and wish to measure how strongly each annotation (motif or kmer) influences chromatin accessibility variability in each sample relative to a background expectation.
- ▌ Library Module Organization And Accessibility · holobiomicslabUse when you are building or extending a multi-module Python library for scientific computation (e.
- ▌ Methylation Region Genomic Context Assignment · holobiomicslabUse when after identifying differentially methylated bases or regions (via calculateDiffMeth() and getMethylDiff()), when you need to characterize WHERE these methylation changes occur relative to gene structure and CpG density landscapes.
- ▌ Sample Similarity Assessment From Methylation · holobiomicslabUse when after merging methylation calls across all samples using unite() to create a methylBase object, apply this skill to characterize whether replicate samples cluster together and to visualize methylation-driven separation between biological groups (e.g., test vs. control).
- ▌ Single Cell Atac Seq Dimensionality Reduction · holobiomicslabUse when after loading and preprocessing raw scATAC-seq data into an ArchR project object when you need to compute low-dimensional embeddings for clustering, UMAP/tSNE visualization, or integrated multi-omic analysis.
- ▌ Chemical Structure Representation Conversion · holobiomicslabUse when when you have .msp mass spectrometry metadata containing chemical identifiers (e.g., compound names or SMILES strings) and need to compute derived chemical properties (e.g., InChI, InChIKey, molecular formula) locally without network latency or service availability constraints.