Anti-Synaptophysin antibody (200-300aa) [ZM208] (STJ180393)

SKU:
STJ180393
£161.50 - £515.50
Free Shipping
Processing The item has been added

Host: Mouse
Applications: IHC-P
Reactivity: Human
Note: STRICTLY FOR FURTHER SCIENTIFIC RESEARCH USE ONLY (RUO). MUST NOT TO BE USED IN DIAGNOSTIC OR THERAPEUTIC APPLICATIONS.
Short Description : Mouse monoclonal antibody anti-Synaptophysin (200-300aa) is suitable for use in Immunohistochemistry research applications.
Clonality : Monoclonal
Clone ID : ZM208
Conjugation: Unconjugated
Isotype: IgG1/Kappa
Formulation: Tris-HCI buffer containing stabilizing protein (BSA) and <0.1% ProClin
Purification: Affinity purified
Dilution Range: 1:100
Storage Instruction: Store at 2‐8°C for up to 24 months. Predilute: Ready to use, no reconstitution necessary. Concentrate: Use dilution range and appropriate lab‐standardized diluent. Stability after dilution: 7 days at 24°C, 3 months at 2‐8°C, 6months at ‐20°C.
Gene Symbol: SYP
Gene ID: 6855
Uniprot ID: SYPH_HUMAN
Immunogen Region: 200-300aa
Specificity: Positive control: Pancreas
Immunogen: Synthetic peptide within Human Synaptophysin aa 200-300
Tissue Specificity Expressed in the brain, with expression in the hippocampus, the neuropil in the dentate gyrus, where expression is higher in the outer half of the molecular layer than in the inner half, and in the neuropil of CA4 and CA3. Expressed in the putamen (at protein level).
Post Translational Modifications Ubiquitinated.mediated by SIAH1 or SIAH2 and leading to its subsequent proteasomal degradation. Phosphorylated by SRC.
Function Possibly involved in structural functions as organizing other membrane components or in targeting the vesicles to the plasma membrane. Involved in the regulation of short-term and long-term synaptic plasticity.
Protein Name Synaptophysin
Major Synaptic Vesicle Protein P38
Database Links Reactome: R-HSA-9662360
Cellular Localisation Cytoplasmic Vesicle
Secretory Vesicle
Synaptic Vesicle Membrane
Multi-Pass Membrane Protein
Synapse
Synaptosome
Alternative Antibody Names Anti-Synaptophysin antibody
Anti-Major Synaptic Vesicle Protein P38 antibody
Anti-SYP antibody

Information sourced from Uniprot.org

document.addEventListener("DOMContentLoaded", function () { function removeDuplicateSKUs() { let skuElements = document.querySelectorAll("[data-product-sku]"); // Log to see how many SKUs are found console.log("Found SKU Elements:", skuElements.length); if (skuElements.length > 1) { skuElements.forEach((el, index) => { if (index > 0) { el.style.display = "none"; // Hide duplicate SKUs console.log("Hiding duplicate SKU:", el.getAttribute('data-product-sku')); } }); } else { console.log("No duplicate SKUs found."); } } // Run once after page load removeDuplicateSKUs(); // Use MutationObserver to watch for changes (e.g., variant change) let observer = new MutationObserver(function (mutationsList) { mutationsList.forEach((mutation) => { if (mutation.type === "childList" || mutation.type === "subtree") { console.log("Mutation detected, checking SKUs..."); removeDuplicateSKUs(); // Reapply after variant switch } }); }); // Observe the container or the area where the SKU is rendered (e.g., `productView-rating`) let targetNode = document.querySelector(".productView-rating"); if (targetNode) { observer.observe(targetNode, { childList: true, subtree: true }); console.log("MutationObserver started to track SKU changes."); } else { console.log("ProductView-rating container not found."); } // Additionally, trigger SKU check after variant change (using variant selector) let variantSelector = document.querySelector('.product-variants select'); if (variantSelector) { variantSelector.addEventListener('change', function () { setTimeout(removeDuplicateSKUs, 1000); // Delay to ensure SKU is updated after variant change console.log("Variant changed, checking SKUs..."); }); } });