ffab4ecbdda06b66cf091326108670702e498d0e hiram Fri Dec 5 11:16:22 2025 -0800 new toga click code from Michaerl Hiller for version 2 TOGA refs #35776 diff --git src/hg/hgc/togaClick.c src/hg/hgc/togaClick.c index 00a4c8c3a32..123f3246292 100644 --- src/hg/hgc/togaClick.c +++ src/hg/hgc/togaClick.c @@ -1,25 +1,25 @@ /* togaClick - click handling for TOGA tracks */ #include "common.h" #include "hgc.h" #include "togaClick.h" #include "string.h" #include "htmshell.h" #include "chromAlias.h" -struct togaDataBB *togaDataBBLoad(char **row) +struct togaDataBB *togaDataBBLoad(char **row, bits16 fieldCount) /* Load a togaData from row fetched with select * from togaData * from database. Dispose of this with togaDataFree(). */ { struct togaDataBB *ret; AllocVar(ret); ret->projection = cloneString(row[0]); ret->ref_trans_id = cloneString(row[1]); ret->ref_region = cloneString(row[2]); ret->query_region = cloneString(row[3]); ret->chain_score = cloneString(row[4]); ret->chain_synteny = cloneString(row[5]); ret->chain_flank = cloneString(row[6]); ret->chain_gl_cds_fract = cloneString(row[7]); ret->chain_loc_cds_fract = cloneString(row[8]); @@ -27,30 +27,45 @@ ret->chain_intron_cov = cloneString(row[10]); ret->status = cloneString(row[11]); ret->perc_intact_ign_M = cloneString(row[12]); ret->perc_intact_int_M = cloneString(row[13]); ret->intact_codon_prop = cloneString(row[14]); ret->ouf_prop = cloneString(row[15]); ret->mid_intact = cloneString(row[16]); ret->mid_pres = cloneString(row[17]); ret->prot_alignment = cloneString(row[18]); ret->svg_line = cloneString(row[19]); ret->ref_link = cloneString(row[20]); ret->inact_mut_html_table = cloneString(row[21]); ret->exon_ali_html = cloneString(row[22]); + + /* read two optional new items, CDSseq and frame-corrected protein */ + ret->CDSseq = NULL; + if (fieldCount >= 35) /* 0-11 are bed core fields. This fct gets a pointer starting with element 12. 12+23 = 35 */ + ret->CDSseq = cloneString(row[23]); + ret->protseqFrameCorrected = NULL; + if (fieldCount >= 36) /* 12+24 = 36 */ + ret->protseqFrameCorrected = cloneString(row[24]); + /* number and percent of mutated exons (additional data now shown for the gene loss status) */ + ret->numExonsMutated = NULL; + ret->percentExonsMutated = NULL; + if (fieldCount >= 37) /* 12+25 = 37 */ + ret->numExonsMutated = cloneString(row[25]); + if (fieldCount >= 38) /* 12+26 = 38 */ + ret->percentExonsMutated = cloneString(row[26]); return ret; } struct togaData *togaDataLoad(char **row) /* Load a togaData from row fetched with select * from togaData * from database. Dispose of this with togaDataFree(). */ { struct togaData *ret; AllocVar(ret); ret->projection = cloneString(row[0]); ret->ref_trans_id = cloneString(row[1]); ret->ref_region = cloneString(row[2]); ret->query_region = cloneString(row[3]); ret->chain_score = cloneString(row[4]); @@ -253,30 +268,42 @@ str += 10; char ch; while ((ch = *str++) != '<') { if (ch != '-') { putchar(ch); ++printed_char_num; } if (printed_char_num == 80) { printed_char_num = 0; printf("
"); } } } } +void print_with_newlines(const char *str) { + int line_length = 80; // Number of characters per line + int length = strlen(str); + int i = 0; + + while (i < length) { + /* Print up to 80 characters or the remainder of the string */ + int chars_to_print = (length - i < line_length) ? (length - i) : line_length; + printf("%.*s
", chars_to_print, &str[i]); + i += chars_to_print; + } +} void doHillerLabTOGAGeneBig(char *database, struct trackDb *tdb, char *item, char *table_name) /* Put up TOGA Gene track info. */ // To think about -> put into a single bigBed // string: HTML formatted inact mut // string: HTML formatted exon ali section { int start = cartInt(cart, "o"); int end = cartInt(cart, "t"); char *chrom = cartString(cart, "c"); char *fileName = bbiNameFromSettingOrTable(tdb, NULL, tdb->table); struct bbiFile *bbi = bigBedFileOpenAlias(hReplaceGbdb(fileName), chromAliasFindAliases); struct lm *lm = lmInit(0); struct bigBedInterval *bbList = bigBedIntervalQuery(bbi, chrom, start, end, 0, lm); @@ -286,32 +313,32 @@ { if (!(bb->start == start && bb->end == end)) continue; // our names are unique char *name = cloneFirstWordByDelimiterNoSkip(bb->rest, '\t'); boolean match = (isEmpty(name) && isEmpty(item)) || sameOk(name, item); if (!match) continue; char startBuf[16], endBuf[16]; bigBedIntervalToRow(bb, chrom, startBuf, endBuf, fields, bbi->fieldCount); break; } -printf("

Projection %s


\n", item); -struct togaDataBB *info = togaDataBBLoad(&fields[11]); // Bogdan: why 11? 0-11 are bed-like fields likely +printf("

Projection v2 %s

\n", item); +struct togaDataBB *info = togaDataBBLoad(&fields[11], bbi->fieldCount); // Bogdan: why 11? 0-11 are bed-like fields likely printf("Reference transcript: %s
", info->ref_link); printf("Genomic locus in reference: %s
\n", info->ref_region); printf("Genomic locus in query: %s
\n", info->query_region); printf("Projection classification: %s
\n", info->status); printf("Probability that query locus is orthologous: %s
\n", info->chain_score); // list of chain features (for orthology classification) printf("Show features used for ortholog probability\n"); printf("
\n"); printf("\n"); -printf("\n
\n
\n"); -htmlHorizontalLine(); +printf("\n\n"); +printf("
\n"); // show inact mut plot printf("

Visualization of inactivating mutations on exon-intron structure

\n"); -printf("%s
\n", info->svg_line); +printf("%s\n", info->svg_line); printf("
Exons shown in grey are missing (often overlap assembly gaps).\nExons shown in"); printf(" red or blue are deleted or do not align at all.\nRed indicates that the exon deletion "); printf("shifts the reading frame, while blue indicates that exon deletion(s) are framepreserving.
\n"); // GLP features printf("Show features used for transcript classification\n"); printf("
\n"); printf("\n
\n
\n"); - +if (info->numExonsMutated != NULL && info->percentExonsMutated != NULL) { + printf("
  • Number of exons with inactivating mutations: %s (%s%% of the present exons; threshold is 20%%)
  • \n", info->numExonsMutated, info->percentExonsMutated); +} +printf("\n\n"); -htmlHorizontalLine(); -printf("

    Predicted protein sequence


    \n"); +printf("
    \n"); +printf("

    Predicted protein sequence

    \n"); printf("Show protein sequence of query\n"); printf("
    \n"); // printf("{protein seq of the query without dashes or other things. Should end with *}\n"); printf(""); HLprintQueryProtSeqForAli(info->prot_alignment); -printf("\n
    \n
    \n
    \n"); +printf("\n\n
    \n"); + +if (info->protseqFrameCorrected != NULL) { + printf("Show frame-corrected protein sequence of query (potential frameshifts are masked)\n"); + printf("
    \n"); + printf(""); + print_with_newlines(info->protseqFrameCorrected); + printf("\n\n
    \n"); +} + +if (info->CDSseq != NULL) { + printf("
    \n"); + printf("

    Predicted coding (DNA) sequence

    \n"); + printf("Show coding sequence of query\n"); + printf("
    \n"); + printf(""); + print_with_newlines(info->CDSseq); + printf("\n\n
    \n"); +} // and show protein sequence -htmlHorizontalLine(); -printf("

    Protein sequence alignment


    \n"); +printf("
    \n"); +printf("

    Protein sequence alignment

    \n"); printf("Show alignment between reference and query\n"); printf("
    \n"); -printf("%s
    \n", info->prot_alignment); -printf("
    \n

    \n"); +printf("%s\n", info->prot_alignment); +printf("\n"); // show inactivating mutations if required -printf("

    List of inactivating mutations


    \n"); - +printf("
    \n"); +printf("

    List of inactivating mutations

    \n"); printf("Show inactivating mutations\n"); printf("
    \n"); printf("\n"); // init table printf("\n"); printf("\n"); printf("%s\n", info->inact_mut_html_table); printf("
    Exon numberCodon numberMutation classMutationTreated as inactivatingMutation ID
    \n"); -printf("
    \n
    \n"); +printf("\n\n"); // show exons data -htmlHorizontalLine(); -printf("

    Exon alignments


    \n"); +printf("
    \n"); +printf("

    Exon alignments

    \n"); -printf("Show exon sequences and features

    \n"); +printf("Show exon sequences and features\n"); printf("
    \n"); // printf("%s\n", info->exon_ali_string); printf("%s\n", info->exon_ali_html); -htmlHorizontalLine(); -printf("
    \n
    \n"); +printf("
    \n"); +printf("\n

    \n"); // TODO: check whether I need this hPrintf(""); hPrintf(""); hPrintf(""); printTrackHtml(tdb); // and do I need this? } void doHillerLabTOGAGene(char *database, struct trackDb *tdb, char *item, char *table_name) /* Put up TOGA Gene track info. */ { //int start = cartInt(cart, "o");