Knowledge Base
A collective list of posts from Pivotal Scientific highlighting areas of our expertise and areas of interest.
Learn how reagent licensing works in life sciences, including RUO vs IVD models
Commercial Strategy
How Reagent Licensing Works in Life Sciences (RUO vs IVD): Structures, Fees and Deal Terms
Learn how reagent licensing works in life sciences, including RUO vs IVD models
<script type='module'>
// Add your JS Code here, don't include the <script> tags
const observer = new IntersectionObserver((entries) => {
entries.forEach((entry) => {
console.log(entry);
if (entry.isIntersecting) {
entry.target.classList.add("show");
} else {
entry.target.classList.remove("show");
}
});
});
const hiddenElements = document.querySelectorAll(".hidden");
hiddenElements.forEach((el) => observer.observe(el));
</script>