eb6de8ad5a6634621b0d522debabc0cad84a8051 hiram Mon Sep 11 15:32:03 2023 -0700 adding allGaps track per user request refs #32104 diff --git src/hg/makeDb/doc/mm10.txt src/hg/makeDb/doc/mm10.txt index cbb267d..fe73e9f 100644 --- src/hg/makeDb/doc/mm10.txt +++ src/hg/makeDb/doc/mm10.txt @@ -19184,15 +19184,39 @@ -query2bit="/hive/data/genomes/asmHubs/GCF/029/281/585/GCF_029281585.1/GCF_029281585.1.2bit" \ -querySizes="/hive/data/genomes/asmHubs/GCF/029/281/585/GCF_029281585.1/GCF_029281585.1.chrom.sizes.txt" \ \ mm10 GCF_029281585.1) > rbest.log 2>&1 grep -w real rbest.log | sed -e 's/^/ # /;' # real 270m58.663s sed -e 's/^/ # /;' fb.mm10.chainRBest.GCF_029281585.1.txt # 895198565 bases of 2818974548 (31.756%) in intersection real 1562m52.789s user 0m4.517s sys 0m2.098s ############################################################################## +## allGaps track per user request redmine 32104 - DONE - Hiram - 2023-09-11 + + mkdir /hive/data/genomes/mm10/bed/allGaps + cd /hive/data/genomes/mm10/bed/allGaps + twoBitInfo -nBed ../../mm10.p6.2bit stdout \ + | sort -k1,1 -k2,2n > mm10.p6.allGaps.bed + bedToBigBed -type=bed3 mm10.p6.allGaps.bed \ + ../../chrom.sizes.p6 mm10.p6.allGaps.bb + + ln -s `pwd`/mm10.p6.allGaps.bed /gbdb/mm10/bbi/allGaps.bb + + # all these gaps: + featureBits -countGaps mm10 mm10.p6.allGaps.bed > fb.allGaps.txt 2>&1 + # 79435853 bases of 2818974548 (2.818%) in intersection + + # standard AGP defined gap track: + featureBits -countGaps mm10 mm10.gap.bed > fb.gap.txt 2>&1 + # 79370942 bases of 2818974548 (2.816%) in intersection + + # with both, should be identical to the standard gap track: + featureBits -countGaps mm10 mm10.gap.bed mm10.p6.allGaps.bed + # 79370942 bases of 2818974548 (2.816%) in intersection + +##############################################################################