a58a77eaeb27e1725cafdb5b107525d7d3749041
max
Wed Jun 9 01:54:48 2021 -0700
adding more details to liftOver text, refs #27657
diff --git src/hg/hgLiftOver/hgLiftOver.c src/hg/hgLiftOver/hgLiftOver.c
index 87d1f34..c03e571 100644
--- src/hg/hgLiftOver/hgLiftOver.c
+++ src/hg/hgLiftOver/hgLiftOver.c
@@ -180,31 +180,34 @@
cgiSimpleTableFieldStart();
cgiMakeDoubleVar(HGLFT_MINBLOCKS,(keepSettings) ? minBlocks : chain->minBlocks,6);
cgiTableFieldEnd();
cgiTableRowEnd();
cgiSimpleTableRowStart();
cgiTableField("If thickStart/thickEnd is not mapped, use the closest mapped base:");
cgiSimpleTableFieldStart();
cgiMakeCheckBox(HGLFT_FUDGETHICK,(keepSettings) ? fudgeThick : (chain->fudgeThick[0]=='Y'));
cgiTableFieldEnd();
cgiTableRowEnd();
cgiTableEnd();
/* text box and two buttons (submit, reset) */
-cgiParagraph(" Paste in data (BED or chrN:start-end formats):\n");
+cgiParagraph(" Paste in data below, one position per line. You can use the "
+ "BED format (e.g. \"chr4 100000 100001\", "
+ "0-based) or the format of the position box (\"chr4:100,001-100,001\", 1-based). "
+ "See the documentation.\n");
cgiSimpleTableStart();
cgiSimpleTableRowStart();
cgiSimpleTableFieldStart();
cgiMakeTextArea(HGLFT_USERDATA_VAR, cartCgiUsualString(cart, HGLFT_USERDATA_VAR, NULL), 10, 80);
cgiTableFieldEnd();
/* right element of table is a nested table
* with two buttons stacked on top of each other */
cgiSimpleTableFieldStart();
cgiSimpleTableStart();
cgiSimpleTableRowStart();
cgiSimpleTableFieldStart();
cgiMakeSubmitButton();