All authors
Pavel-Kravchenko avatar

Claude Skills by Pavel-Kravchenko

github.com/Pavel-Kravchenko
208 skillsA× 206B× 1C× 10 installs13 views
Advanced String StructuresA

Tries, Aho-Corasick multi-pattern matching, suffix arrays with LCP, and suffix trees for genome indexing

data-aipythongo
0
3
Ai Science Alphafold Protein DesignA

AlphaFold2/3 architecture, confidence metrics (pLDDT/PAE), structure fetching, and protein design ranking workflows

data-aipythongo
0
3
Ai Science Diffusion Generative ModelsA

Score matching, noise schedules, DDIM sampling, and DDRM inverse problems for diffusion generative models

data-aipythongit
0
3
Ai Science Enformer RegulatoryA

Enformer architecture for regulatory prediction from DNA, in-silico mutagenesis (ISM), and variant prioritization

data-aipythongo
0
3
Ai Science Epigenomic Sequence ModelsA

Borzoi vs Epiformer model selection for RNA-seq coverage vs chromatin accessibility prediction

data-aipythongo
0
3
Ai Science Esm2 EmbeddingsA

ESM2 Embeddings and ESMFold with NumPy

data-aipythontesting
0
3
Ai Science Geneformer ScgptA

Geneformer and scGPT for Single-Cell Modeling

data-aipythongo
0
3
Ai Science Genomic LlmsA

Genomic Foundation Models: Nucleotide Transformers, HyenaDNA, and Evo with NumPy

data-aipythonexpress
0
3
Ai Science Llm FinetuningC

LLM fine-tuning with HuggingFace Transformers — LoRA math, QLoRA 4-bit NF4 quantization, chat templates, SFTTrainer workflow.

data-aipython
0
3
Ai Science Llm Training SystemsA

Module T5-01B: LLM Training Systems (Tracking, Epochs, and Ablations) with Pandas

data-aipythonnode
0
3
Ai Science Splicing ModelsA

Splicing Models: SpliceAI and AlphaGenome with NumPy

data-aipythongo
0
3
Ai Science Variant To Structure ModelsA

From DNA Variants to Protein Structure: AlphaFold2, AlphaFold3, RoseTTAFold with NumPy

data-aipythongo
0
3
Ai Science Vision RagA

Module T5-02: Vision RAG with NumPy

data-aipythonexpress
0
3
Ai Science Zero Shot MutationA

Zero-Shot Mutation Effect Prediction with NumPy

data-aipythonrust
0
3
Algo Aho CorasickA

Multi-pattern string matching in O(n + m + z) via a trie augmented with KMP-style failure links.

data-aipythongo
0
3
Algo Avl TreesA

Self-balancing BST (Adelson-Velsky & Landis, 1962) guaranteeing O(log n) operations via rotation-based rebalancing.

data-aipythongo
0
3
Algo Basic AlgorithmsA

Foundational algorithms — Euclidean GCD, Newton's method for cube root — with complexity analysis and clean implementations.

data-aipythongo
0
3
Algo Bfs DfsA

Graph Traversals: BFS and DFS with Matplotlib

data-aipythongo
0
3
Algo Binary Search TreesA

BST operations, complexity, and a clean implementation with parent pointers supporting all standard operations.

data-aipythongo
0
3
Algo Comparison SortsA

Comparison-based sorting algorithms — bubble, merge, shell, quicksort — with complexity tables and implementation patterns.

data-aipythongo
0
3
Algo Complexity AnalysisA

Big O notation, complexity classes, space vs time trade-offs, and complexity analysis rules.

data-aipythongo
0
3
Algo Dfa MatchingA

DFA-based exact pattern matching: O(m|Σ|) build via prefix function, O(n) search with no backtracking.

data-aipythongo
0
3
Algo DijkstraA

Dijkstra's Algorithm: Shortest Paths in Weighted Graphs

data-aipythongo
0
3
Algo Dynamic ArraysA

Dynamic arrays: amortized O(1) append via doubling, O(n) insert/delete, and Python list internals.

data-aipythongo
0
3
Algo Graph RepresentationsA

Graph representations — adjacency matrix, adjacency list, edge list — with complexity tables, implementation patterns, and biological network use cases.

data-aipythongo
0
3
Algo Hash Tables BloomA

Hash tables (chaining vs open addressing) and Bloom filters: complexity, trade-offs, and implementation patterns.

data-aipythongo
0
3
Algo Intro MemoizationA

Top-down DP with memoization — cache recursive subproblems for exponential-to-linear speedup, @lru_cache shortcut

data-aipythongo
0
3
Algo Kmp AlgorithmA

KMP string matching — O(n+m) pattern search using failure function prefix table

data-aipythongo
0
3
Algo KnapsackA

Knapsack DP variants — 0/1, unbounded, subset sum with traceback and space optimization

data-aipythongo
0
3
Algo Linear Binary SearchA

Linear and binary search — implementations, variants (first/last occurrence), and when to use each

data-aipythongo
0
3
Algo Linear SortsA

Counting sort, radix sort, bucket sort — O(n) non-comparison sorts that bypass the Omega(n log n) lower bound

data-aipythongo
0
3
Algo Linked ListsA

Singly linked list — full implementation with head/tail pointers, insert/delete/search/reverse, complexity table

data-aipythongo
0
3
Algo Mst Kruskal PrimA

Minimum spanning trees — Kruskal's (Union-Find, O(E log E)) and Prim's (heap, O((V+E) log V)), MST clustering

data-aipythongo
0
3
Algo Naive Pattern MatchingA

Naive O(nm) brute-force string matching — sliding window baseline, when it's acceptable, motivation for KMP/Rabin-Karp

data-aipythongo
0
3
Algo Rabin KarpA

Rabin-Karp hash-based string matching — rolling hash for O(n+m) average, excels at multi-pattern search

data-aipythongo
0
3
Algo Red Black TreesA

Red-black tree — self-balancing BST with O(log n) operations, 5 invariants, insert fix-up with rotations and recoloring

data-aipythongo
0
3
Algo Sequence AlignmentA

Needleman-Wunsch global and Smith-Waterman local sequence alignment — DP table fill, traceback, scoring matrices

data-aipythongo
0
3
Algo Stacks QueuesA

Stack (LIFO) and Queue (FIFO) — array and linked-list implementations, O(1) operations, common applications

data-aipythongo
0
3
Algo Suffix ArraysA

Suffix arrays — space-efficient sorted suffix index, O(n log n) construction, O(m log n) pattern search

data-aipythongo
0
3
Algo Suffix TreesA

Suffix trees — compressed trie of all suffixes, O(m) pattern search, O(n) construction via Ukkonen's algorithm

data-aipythongo
0
3
Algo TabulationA

Bottom-up DP with tabulation — edit distance, LCS, space optimization with rolling arrays

data-aipythongo
0
3
Algo Topological SortA

Topological sort — DFS and Kahn's BFS algorithms for DAG ordering, cycle detection, critical path analysis

data-aipythongo
0
3
Algo TriesA

Prefix tree for O(m) string insert/search and O(p+k) prefix queries; ideal for autocomplete and dictionary membership.

data-aipythongo
0
3
Alphafold Structure PredictionA

AlphaFold/ESMFold structure prediction and confidence interpretation.

data-aipythongo
0
3
Atac Seq AnalysisA

ATAC-seq quality control and accessibility analysis.

data-aipython
0
3
Bio Applied Advanced NgsA

Advanced NGS: genome assembly algorithms (OLC, de Bruijn graph), k-mer theory, assembler selection table, and SPAdes/Flye/hifiasm CLI usage.

data-aipythongo
0
3
Bio Applied Assembly BinningA

Metagenomic assembly with MEGAHIT, contig binning with MetaBAT2, and MAG quality assessment with CheckM. Includes binning signals, multi-sample strategy, and MIMAG quality tiers.

data-aipythongo
0
3
Bio Applied Assembly SvA

Long-Read Assembly Structural Variants with NumPy

data-aipythongo
0
3
Bio Applied Bayesian Statistics PythonA

Bayesian statistics with PyMC: prior specification, MCMC sampling, posterior analysis, and hierarchical models for biological data. Use when applying Bayesian inference to experiments.

data-aipythonaws
0
3
Bio Applied Bio Data FormatsA

Quick reference for bioinformatics file formats — FASTA, FASTQ, SAM/BAM/CRAM, VCF, BED, GFF/GTF, BigWig, PDB, Newick — specs, coordinate systems, and parsing patterns.

data-aipythonapi
0
3