| Primary Identifier | MGI:7714615 | Allele Type | Endonuclease-mediated |
| Attribute String | Modified regulatory region | Gene | Rr350 |
| Strain of Origin | C57BL/6 | Is Recombinase | false |
| Is Wild Type | false |
| molecularNote | Hematopoietic Hba enhancer R2 ( Rr350tm1.1Mirka allele (where enhancers R1 (Rr351), Rm (Rr353), all part of super-enhancer
function showMoreInlineList(listDiv) {
jQuery(listDiv + ' ul li').each(function(index) {
if (!jQuery(this).is(":visible")) {
jQuery(this).show();
}
});
jQuery(listDiv + ' ul li.show-more').hide();
}
function applyShowMoreInlineList(listDiv, listLength) {
jQuery(listDiv + ' ul li').each(function(index) {
listLength -= jQuery(this).text().length;
if (listLength <= 0) {
jQuery(this).hide();
}
});
if (listLength <= 0) {
jQuery('', {
'class': 'show-more',
'html': jQuery('', {
'href': '#',
'title': 'Show more items',
'text': 'Show more',
'click': function(e) {
showMoreInlineList(listDiv);
e.preventDefault();
}
})
}).appendTo(listDiv + ' ul');
}
}
|