Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
ada77eb
documentation: add docstrings (#229)
m-huertasp Feb 23, 2026
d538127
refactor: get gff through ftp instead of api calls (#229)
m-huertasp Feb 24, 2026
683d50f
documentation: add docstrings to rest of functions (#229)
m-huertasp Feb 24, 2026
e9eb510
refactor: separate parse_cds_coord into exon and cds parsers (#229)
m-huertasp Feb 24, 2026
bca9ab1
refactor: vectorized find_exon (#229)
m-huertasp Feb 24, 2026
385f3a9
refactor: add option to change ensembl release (#229)
m-huertasp Feb 24, 2026
821537a
fix: forgot to add the configuration (#229)
m-huertasp Feb 24, 2026
6efbf68
fix: indent problem (#229)
m-huertasp Feb 24, 2026
211803c
remove all references to mm10 and hg19
FerriolCalvet Feb 25, 2026
48d1378
query exons consensus mutations once
FerriolCalvet Feb 25, 2026
6dd367f
enable plotting summary with run_mutdensity
FerriolCalvet Feb 25, 2026
5c2460f
refactor: add species and genome as parameters (#229)
m-huertasp Feb 25, 2026
2998b2c
add hdp signatures decomposition
FerriolCalvet Feb 25, 2026
f665a5d
HDP decomposition and reassignment working
FerriolCalvet Feb 26, 2026
1f0650b
fix output and versions
FerriolCalvet Feb 26, 2026
2056733
fix output of masks
FerriolCalvet Feb 26, 2026
14ead08
Merge remote-tracking branch 'origin/feat/229-improve-dna2protein-bot…
FerriolCalvet Feb 26, 2026
e73286a
fix bug and adjust resources
FerriolCalvet Feb 27, 2026
f34fad9
fix bug dnds
FerriolCalvet Feb 27, 2026
437b83c
fix genome assembly def in sigprofiler
FerriolCalvet Feb 27, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions bin/panel_postprocessing_annotation.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,13 @@
import pandas as pd
import numpy as np
from itertools import product
from bgreference import hg38, hg19, mm10, mm39
from bgreference import hg38, mm39
from utils_context import transform_context
from utils_impacts import *
from read_utils import custom_na_values

assembly_name2function = {
"hg38": hg38,
"hg19": hg19,
"mm10": mm10,
"mm39": mm39
}

Expand Down Expand Up @@ -199,7 +197,7 @@ def vep2summarizedannotation_panel(VEP_output_file, all_possible_sites_annotated

@click.command()
@click.option('--vep_output_file', type=click.Path(exists=True), required=True, help='Path to the VEP output file.')
@click.option('--assembly', type=click.Choice(['hg38', 'hg19', 'mm10', 'mm39']), default='hg38', help='Genome assembly.')
@click.option('--assembly', type=click.Choice(['hg38', 'mm39']), default='hg38', help='Genome assembly.')
@click.option('--output_file', type=click.Path(), required=True, help='Path to the output annotated file.')
@click.option('--only_canonical', is_flag=True, default=False, help='Use only canonical transcripts.')
def main(vep_output_file, assembly, output_file, only_canonical):
Expand Down
Loading