Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Infer orthologous gene groups across species using OrthoFinder and ProteinOrtho. Identify orthologs, paralogs, and co-orthologs for comparative genomics and functional annotation transfer. Use when identifying gene orthologs across species or building orthogroups for evolutionary analysis.
.claude/skills/bio-comparative-genomics-ortholog-inference/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-10 | ✗→✓ | ▲ Improved | 44% | 0% |
| case-01 | ✗→✓ | ▲ Improved | 48% | 0% |
| case-02 | ✗→✓ | ▲ Improved | 32% | 0% |
| case-04 | ✓→✗ | ▼ Worse | 112% | 0% |
| case-21 | ✓→✓ | = Same ✓ | 62% | 0% |
<!--
#
#
-->
python'''Ortholog inference with OrthoFinder''' import subprocess import pandas as pd import os def run_orthofinder(proteome_dir, output_dir=None, threads=4): '''Run OrthoFinder on directory of proteomes Input: Directory with one FASTA file per species File naming: Species name derived from filename OrthoFinder performs: 1. All-vs-all DIAMOND/BLAST 2. Gene tree inference 3. Species tree inference 4. Ortholog/paralog classification ''' cmd = f'orthofinder -f {proteome_dir} -t {threads}' if output_dir: cmd += f' -o {output_dir}' # -M msa: Use MSA for gene trees (more accurate but slower) # -S diamond: Fast search (default) # -S blast: More sensitive search result = subprocess.run(cmd, shell=True, capture_output=True, text=True) # Output location if output_dir: results_dir = output_dir else: # OrthoFinder creates Results_MonDD in proteome_dir results_dir = None for d in os.listdir(proteome_dir): if d.startswith('OrthoFinder/Results_'): results_dir = os.path.join(proteome_dir, d) break return results_dir def parse_orthogroups(orthogroups_file): '''Parse OrthoFinder Orthogroups.tsv Columns: Orthogroup, Species1, Species2, ... Values: Gene IDs (comma-separated if multiple) Orthogroup types: - Single-copy: One gene per species (ideal for phylogenomics) - Multi-copy: Duplications in some lineages - Species-specific: Genes unique to one species ''' df = pd.read_csv(orthogroups_file, sep='\t') df = df.set_index('Orthogroup') orthogroups = {} for og_id, row in df.iterrows(): genes = {} for species in df.columns: cell = row[species] if pd.notna(cell) and cell: genes[species] = cell.split(', ') else: genes[species] = [] orthogroups[og_id] = genes return orthogroups def classify_orthogroups(orthogroups, species_list): '''Classify orthogroups by copy number pattern Categories: - single_copy: Exactly one gene per species (best for phylogenomics) - universal: Present in all species (possibly multicopy) - partial: Missing from some species - species_specific: Only in one species ''' classification = { 'single_copy': [], 'universal': [], 'partial': [], 'species_specific': [] } for og_id, genes in orthogroups.items(): present_in = [sp for sp in species_list if genes.get(sp)] copy_counts = [len(genes.get(sp, [])) for sp in species_list] if len(present_in) == 1: classification['species_specific'].append(og_id) elif len(present_in) == len(species_list): if all(c == 1 for c in copy_counts): classification['single_copy'].append(og_id) else: classification['universal'].append(og_id) else: classification['partial'].append(og_id) return classification def get_single_copy_orthologs(orthogroups_file): '''Extract single-copy orthologs for phylogenomics Single-copy orthologs are ideal because: - Clear 1:1 relationships - No paralogy complications - Suitable for concatenated alignments ''' df = pd.read_csv(orthogroups_file, sep='\t') df = df.set_index('Orthogroup') single_copy = [] for og_id, row in df.iterrows(): is_single = True for species in df.columns: cell = row[species] if pd.isna(cell) or cell == '': is_single = False break if ',' in str(cell): is_single = False break if is_single: single_copy.append(og_id) return df.loc[single_copy]
pythondef parse_gene_trees(gene_trees_dir): '''Load gene trees from OrthoFinder Gene trees show evolutionary history within orthogroups Duplication/loss events inferred by species tree reconciliation ''' from Bio import Phylo import glob trees = {} for tree_file in glob.glob(f'{gene_trees_dir}/*.txt'): og_id = os.path.basename(tree_file).replace('_tree.txt', '') trees[og_id] = Phylo.read(tree_file, 'newick') return trees def identify_paralogs(orthogroup, species): '''Identify in-paralogs within an orthogroup In-paralogs: Duplications after speciation (within-species) Out-paralogs: Duplications before speciation (between-species) Multiple genes from same species in an orthogroup are in-paralogs ''' genes = orthogroup.get(species, []) if len(genes) > 1: return { 'species': species, 'paralogs': genes, 'count': len(genes) } return None def find_co_orthologs(orthogroups, gene_id, species): '''Find co-orthologs of a gene Co-orthologs: Multiple genes in one species that are all orthologous to a single gene in another species Result of gene duplication after speciation ''' for og_id, genes in orthogroups.items(): if gene_id in genes.get(species, []): co_orthologs = {} for sp, sp_genes in genes.items(): if sp != species and sp_genes: co_orthologs[sp] = sp_genes return {'orthogroup': og_id, 'co_orthologs': co_orthologs} return None
pythondef run_proteinortho(proteome_files, output_prefix, threads=4): '''Run ProteinOrtho for ortholog detection Faster than OrthoFinder for many genomes Uses synteny information if available -p=blastp+: Use DIAMOND (faster) -conn: Connectivity threshold (default 0.1) ''' files_str = ' '.join(proteome_files) cmd = f'proteinortho -cpus={threads} -project={output_prefix} {files_str}' subprocess.run(cmd, shell=True) return f'{output_prefix}.proteinortho.tsv' def parse_proteinortho(ortho_file): '''Parse ProteinOrtho output Columns: # Species, Genes, Alg.-Conn., Species1, Species2, ... ''' df = pd.read_csv(ortho_file, sep='\t') orthogroups = {} for i, row in df.iterrows(): og_id = f'OG{i:06d}' n_species = row['# Species'] conn = row['Alg.-Conn.'] genes = {} for col in df.columns[3:]: val = row[col] if pd.notna(val) and val != '*': genes[col] = val.split(',') else: genes[col] = [] orthogroups[og_id] = { 'genes': genes, 'n_species': n_species, 'connectivity': conn } return orthogroups
pythondef transfer_annotation(query_gene, orthologs, annotation_db): '''Transfer functional annotation via orthology Annotation transfer guidelines: - Single-copy orthologs: High confidence transfer - Co-orthologs: Transfer to all, note potential subfunctionalization - In-paralogs: Transfer with caution (may have diverged function) Evidence codes: - IEA: Inferred from Electronic Annotation - ISO: Inferred from Sequence Orthology ''' annotations = [] for species, genes in orthologs.items(): for gene in genes: if gene in annotation_db: ann = annotation_db[gene] annotations.append({ 'source_gene': gene, 'source_species': species, 'annotation': ann, 'evidence': 'ISO' # Sequence orthology }) return annotations
<!-- AUTHOR_SIGNATURE: 9a7f3c2e-MD-BABU-MIA-2026-MSSM-SECURE -->
| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-21 | pass→pass | 16,252 | 13,679 | -16% | 1 | 1 | 0% | 3,298 | 5,345 | +62% | 0 | 0 | — |
case-22 | pass→pass | 13,232 | 10,575 | -20% | 1 | 1 | 0% | 2,850 | 4,544 | +59% | 0 | 0 | — |
case-09 | pass→pass | 12,739 | 3,056 | -76% | 1 | 1 | 0% | 2,401 | 2,943 | +23% | 0 | 0 | — |
case-10 | fail→pass | 15,307 | 8,923 | -42% | 1 | 1 | 0% | 2,888 | 4,166 | +44% | 0 | 0 | — |
case-11 | pass→pass | 14,044 | 9,142 | -35% | 1 | 1 | 0% | 2,669 | 4,011 | +50% | 0 | 0 | — |
case-12 | pass→pass | 5,187 | 1,766 | -66% | 1 | 1 | 0% | 938 | 2,662 | +184% | 0 | 0 | — |
case-17 | pass→pass | 4,145 | 1,705 | -59% | 1 | 1 | 0% | 742 | 2,672 | +260% | 0 | 0 | — |
case-18 | pass→pass | 12,943 | 3,207 | -75% | 1 | 1 | 0% | 2,339 | 2,978 | +27% | 0 | 0 | — |
case-01 | fail→pass | 13,708 | 19,036 | +39% | 1 | 1 | 0% | 2,839 | 4,192 | +48% | 0 | 0 | — |
case-02 | fail→pass | 17,190 | 12,727 | -26% | 1 | 1 | 0% | 3,746 | 4,948 | +32% | 0 | 0 | — |
case-03 | pass→pass | 10,965 | 6,085 | -45% | 1 | 1 | 0% | 2,178 | 3,554 | +63% | 0 | 0 | — |
case-04 | pass→fail | 9,168 | 9,086 | -1% | 1 | 1 | 0% | 1,945 | 4,127 | +112% | 0 | 0 | — |
case-19 | pass→pass | 5,703 | 3,838 | -33% | 1 | 1 | 0% | 1,108 | 3,030 | +173% | 0 | 0 | — |
case-05 | fail→fail | 13,201 | 5,681 | -57% | 1 | 1 | 0% | 2,515 | 3,451 | +37% | 0 | 0 | — |
case-06 | pass→pass | 5,461 | 4,053 | -26% | 1 | 1 | 0% | 957 | 3,236 | +238% | 0 | 0 | — |
case-07 | pass→pass | 12,392 | 4,464 | -64% | 1 | 1 | 0% | 2,219 | 3,139 | +41% | 0 | 0 | — |
case-08 | pass→pass | 3,928 | 4,034 | +3% | 1 | 1 | 0% | 727 | 2,815 | +287% | 0 | 0 | — |
case-13 | pass→pass | 19,592 | 7,771 | -60% | 1 | 1 | 0% | 2,217 | 4,004 | +81% | 0 | 0 | — |
case-14 | pass→pass | 7,726 | 3,004 | -61% | 1 | 1 | 0% | 1,292 | 2,922 | +126% | 0 | 0 | — |
case-15 | pass→pass | 2,169 | 1,556 | -28% | 1 | 1 | 0% | 293 | 2,569 | +777% | 0 | 0 | — |
case-16 | pass→pass | 4,632 | 2,639 | -43% | 1 | 1 | 0% | 711 | 2,799 | +294% | 0 | 0 | — |
case-20 | pass→pass | 18,034 | 17,993 | -0% | 1 | 1 | 0% | 3,673 | 5,692 | +55% | 0 | 0 | — |
DecimalAI ran this skill against gemini-3.6-flash twice over the same eval suite — once with the skill loaded and once without — and compared the two runs case by case. 22 cases were attempted. The headline lift of +9 percentage points is the difference between those two pass rates over the 22 comparable cases. 1 case got worse with the skill loaded, and it is included in that figure.
Without the skill loaded, the model failed this case. With it loaded, the same prompt on the same model passed. This is one improved case from the latest verified run; every case, including any that regressed, is in the table above.
| Model | Method | Date | Lift |
|---|---|---|---|
| gemini-3.6-flash | verified | 7/26/2026 | 0% |
Other measured skills in the registry, with their headline benchmark lift.