All authors
Pavel-Kravchenko avatar

Claude Skills by Pavel-Kravchenko

github.com/Pavel-Kravchenko
208 skillsA× 206B× 1C× 10 installs13 views
Foundations ProbabilityA

Probability for Bioinformatics with NumPy

data-aipythongo
0
3
Foundations R FundamentalsA

R quick-reference for bioinformatics — syntax differences from Python, vectors, data frames, Bioconductor patterns, and statistical distributions

data-aipythonexpress
0
3
Foundations R Hypothesis Testing And NonparametricsA

R hypothesis testing and nonparametric methods: binomial test, sign test, Wilcoxon, Kruskal-Wallis, and power analysis. Use when choosing and applying statistical tests in R.

data-aipythontesting
0
3
Foundations R Regression Correlation And DiagnosticsA

R regression, correlation, and diagnostics: confidence intervals, t-tests, normality testing, Pearson/Spearman/Kendall correlation, Fisher z-transform CI.

data-aipythongo
0
3
Foundations Statistics PythonA

Statistics with Python

data-aipythongo
0
3
Generative ImagingA

Generative imaging and inverse-problem restoration workflows.

data-aipython
0
3
Genomic Foundation ModelsA

DNA/RNA sequence foundation models: embeddings, fine-tuning, and regulatory prediction.

data-aipythonexpress
0
3
Genomic Llm EmbeddingsA

DNA tokenization strategies, k-mer baselines, and pretrained sequence embeddings for genomic ML.

data-aipythongo
0
3
Genomics To Structure TriageA

Route prioritized genomic variants into AlphaFold2/3 or RoseTTAFold structural follow-up.

data-aipythongo
0
3
Graphs Dynamic ProgrammingA

Graph algorithms (BFS, DFS, Dijkstra, MST, topological sort) and dynamic programming (memoization, tabulation, knapsack, sequence alignment)

data-aipythongo
0
3
ImmunogenomicsA

V(D)J repertoire analysis, HLA typing, and neoantigen prediction pipelines.

data-aipythonrust
0
3
Linear Tree Hash StructuresA

Linked lists, stacks, queues, dynamic arrays, BST/AVL/Red-Black trees, hash tables with collision resolution, and Bloom filters

data-aipythonjava
0
3
Linux Git BashA

Linux shell commands, git workflows, bash scripting, and file encoding handling for bioinformatics data processing.

data-aipythonshell
0
3
Long Read SequencingA

Oxford Nanopore and PacBio long-read sequencing — basecalling (Dorado), QC (NanoStat), alignment (Minimap2), assembly (Flye, Hifiasm), SV calling (Sniffles2), methylation, isoform analysis

data-aipythongo
0
3
MetabolomicsA

Metabolomics analysis workflow: LC-MS data processing, metabolite identification, statistical analysis, and pathway mapping. Use when conducting metabolomics experiments.

data-aipythongo
0
3
Metagenomics AmpliconA

16S/amplicon metagenomics diversity and community analysis.

data-aipythonsql
0
3
Metagenomics ShotgunA

Shotgun metagenomics — host decontamination, Kraken2 taxonomic profiling, Bracken abundance, HUMAnN3 functional annotation, MEGAHIT assembly, MetaBAT2 binning, CheckM, MAGs, QIIME2 16S

data-aipythonbash
0
3
Network BiologyA

Biological network analysis — PPI networks from STRING, NetworkX graph metrics, Louvain community detection, GO enrichment per module, Cytoscape export, gene regulatory network inference with GENIE3

data-aipythonrust
0
3
Population Structure QcA

Population structure correction and stratification-aware QC for association studies.

data-aipythontesting
0
3
Protein Language ModelsA

ESM2 embeddings, ESMFold structure prediction, zero-shot mutation scoring, and protein design.

data-aipythongo
0
3
Python Advanced SqlA

OOP for bioinformatics classes, decorators, context managers, error handling, and SQL queries for biological databases.

data-aipythonsql
0
3
Python Bio ClassesA

Python classes for bioinformatics — designing Sequence, Gene, and ProteinRecord classes with encapsulation, dunder methods, inheritance, ABCs, and properties.

data-aipythongo
0
3
Python Bio ComprehensionsA

Python comprehensions and generators for bioinformatics — list/dict/set comprehensions, generator expressions for large sequence files, bio-specific patterns.

data-aipythonexpress
0
3
Python Bio Context ManagersA

Context managers for safe file, database, and resource handling in bioinformatics pipelines.

data-aipythonsql
0
3
Python Bio Control FlowA

Python control flow patterns specific to bioinformatics — codon iteration, frame scanning, motif search, sequence classification.

data-aipython
0
3
Python Bio Data TypesA

Python data types for bioinformatics: int, float, str, bool, None, and type conversions with biological examples. Use when learning how Python represents biological data.

data-aipythongit
0
3
Python Bio Data VisualizationA

Matplotlib and seaborn for bioinformatics figures: volcano plots, heatmaps, MA plots, genome tracks. Critical gotchas for publication-quality figures.

data-aipythongo
0
3
Python Bio Data WranglingA

Pandas patterns for bio data — missing values, duplicates, type conversion, wide/long reshaping, string parsing, apply/transform/pipe.

data-aipythongo
0
3
Python Bio DecoratorsA

Python decorator patterns for bioinformatics: timing, validation, memoization, and stacking.

data-aipython
0
3
Python Bio DictionariesA

Dictionaries and sets for bioinformatics: codon tables, nucleotide frequency, defaultdict grouping, Counter k-mers, and set operations on gene lists.

data-aipythongo
0
3
Python Bio Error HandlingA

Robust error handling for bioinformatics pipelines — custom exception hierarchy, try/except/else/finally, exception chaining, strict FASTA parsing.

data-aipythongo
0
3
Python Bio ExpressionsA

Python arithmetic, comparison, logical, and membership operators with bioinformatics applications — codon frames, GC content, quality filters.

data-aipythongo
0
3
Python Bio File OperationsA

FASTA/FASTQ/CSV parsing recipes, streaming file I/O patterns, and format-specific pitfalls for bioinformatics data files

data-aipythonexpress
0
3
Python Bio FunctionsA

Bio-specific function patterns — ORF finding, sequence analysis, mutable default trap, and functional programming idioms for bioinformatics

data-aipythonapi
0
3
Python Bio GeneratorsA

Generator patterns for streaming bioinformatics data — FASTA/FASTQ readers, sliding windows, translation pipelines, and memory-efficient sequence processing

data-aipython
0
3
Python Bio IteratorsA

Custom iterators for bioinformatics — codon iteration, k-mer generation, streaming FASTA/FASTQ, and lazy sequence processing patterns

data-aipython
0
3
Python Bio ListsA

List and tuple patterns for bioinformatics — codon splitting, gene coordinate records, named tuples, sorting by GC/length, and copy pitfalls

data-aipython
0
3
Python Bio NumpyA

NumPy for bioinformatics — vectorized operations, broadcasting for expression matrices, PWM construction, sliding-window GC with cumsum, and normalization recipes

data-aipythonexpress
0
3
Python Bio OopA

OOP patterns for bioinformatics — subscriptable sequence databases, sliceable BioSeq, callable motif scorers, __slots__ for millions of variants, and composable mixins

data-aipythondatabase
0
3
Python Bio OperatorsA

Operator pitfalls and idioms for bioinformatics — floor division for codons, modulo for reading frames, GC content precedence, and membership testing

data-aipythontesting
0
3
Python Bio PandasA

NumPy arrays and Pandas DataFrames for bioinformatics — vectorized ops, broadcasting, CPM/RPKM normalization, PWM scoring, loc/iloc, groupby, and annotation merges.

data-aipythonexpress
0
3
Python Bio Python IntroductionA

Python Introduction for Bioinformatics

data-aipythonbash
0
3
Python Bio Regular ExpressionsA

Regular expressions for biological sequence pattern matching — ORF finding, motifs, restriction sites, FASTA headers, overlapping matches

data-aipythonexpress
0
3
Python Bio SequencesA

Python string operations for biological sequences: reverse complement, codon extraction, motif scanning, FASTA parsing. Bio-specific patterns and pitfalls.

data-aipythondatabase
0
3
Python Bio SetsA

Sets and Counter for bioinformatics: gene list operations (intersection/union/difference), k-mer deduplication, and unique element tracking. Bio-specific patterns only.

data-aipython
0
3
Python Bio Sql For BioinformaticsA

Ensembl, UCSC Genome Browser, NCBI, and dbSNP are all backed by relational databases. Even locally, SQLite is a practical way to store and query gene annotations, variant tables, and expression result

data-aipythonsql
0
3
Python Bio StringsA

Python string operations for bioinformatics: reverse complement, GC content, motif finding, FASTA parsing. Bio-specific patterns and pitfalls only.

data-aipythonapi
0
3
Python Bio TuplesA

Lists and tuples for bioinformatics: codon extraction, genomic coordinate records, named tuples, and copy semantics. Bio-specific patterns only.

data-aipython
0
3
Python Bio VariablesA

Python variables and data types for bioinformatics — naming, mutability, references, numeric and string types

data-aipythongo
0
3
Python Collections RegexA

Python collections (namedtuple, defaultdict, Counter, set) and regex for bioinformatics — k-mer counting, FASTA/FASTQ streaming, restriction maps, PROSITE patterns.

data-aipythonapi
0
3