b3f4c2506806e4613e69903ff92c5d869bf9d832 gperez2 Mon Jun 29 05:37:28 2026 -0700 Removing the beta tag from QuickLift on hgConvert. refs #31986 diff --git src/hg/hgConvert/hgConvert.c src/hg/hgConvert/hgConvert.c index c2d42220831..8f0fce284aa 100644 --- src/hg/hgConvert/hgConvert.c +++ src/hg/hgConvert/hgConvert.c @@ -134,34 +134,30 @@ char *selectedLabel = getCurrentGenomeLabel(liftOver->toDb); hPrintf("<div class='currentSelection' id='toGenomeLabel'>%s</div>\n", selectedLabel); /* Assembly dropdown (updates based on genome selection) */ puts("<div class='fieldRow'>\n"); puts("<span class='fieldLabel'>Assembly:</span>\n"); dbList = hGetLiftOverToDatabases(liftOver->fromDb); printAllAssemblyListHtmlParm(liftOver->toDb, dbList, "hglft_toDbSelect", TRUE, "change", onChangeToOrg); puts("</div>\n"); /* QuickLift option */ if (askAboutQuickLift) { puts("<div class='fieldRow' style='margin-top: 15px;'>\n"); cgiMakeCheckBoxWithId("doQuickLift", quickLift, "doQuickLift"); puts(" <label for='doQuickLift' title='Display tracks from the source assembly mapped onto the target assembly'>QuickLift tracks</label>\n"); - puts(" <a href='https://docs.google.com/document/d/1wecESHUpgTlE6U_Mj0OnfHeSZBrTX9hkZRN5jlJS8ZQ/edit?usp=sharing' " - "target='ucscHelp' title='QuickLift is in beta testing. Click to view more documentation about this feature.' " - "style='color:#8A2BE2;font-weight:bold;text-transform:uppercase;font-size:smaller;padding:2px " - "4px;background:lavender;border-radius:3px;text-decoration:none;margin-left:6px;'>beta</a>\n"); puts("</div>\n"); } puts("</div>\n"); /* end destination section */ puts("</div>\n"); /* end grid */ /* Submit button centered below */ puts("<div style='text-align: center; margin-top: 20px;'>\n"); cgiMakeButton(HGLFT_DO_CONVERT, "Submit"); puts("</div>\n"); /* JavaScript initialization for autocomplete with liftOver filtering */ jsInlineF( "let validTargets = new Set();\n" "\n"