Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • 2024/bielefeld-cebitec
  • l-sanfilippo/bielefeld-ce-bi-tec-temp
2 results
Show changes
Showing
with 1853 additions and 494 deletions
......@@ -2,12 +2,15 @@ import React from "react";
import ReactDOM from "react-dom/client";
import App from "./App/App";
import { BrowserRouter } from "react-router-dom";
import { LoadingProvider } from "./utils/LoadingContext";
ReactDOM.createRoot(document.getElementById("root")!).render(
<React.StrictMode>
<LoadingProvider>
<BrowserRouter basename={import.meta.env.BASE_URL}>
<App />
</BrowserRouter>
</LoadingProvider>
</React.StrictMode>,
);
......@@ -2,11 +2,9 @@
Contribution,
Description,
Engineering,
Experiments,
Home,
Attributions,
HumanPractices,
Supplementary,
Parts,
Judging,
ProDesc,
......@@ -17,11 +15,20 @@
Team,
Impressum,
Example,
igemBielefeld
igemBielefeld,
HpSidebar,
SafetySidebar
} from "./contents";
import { DescSidebar, SafetySidebar, NoSidebar, EngSide } from "./contents";
import { IBIE, JUDGEH, PRODESC, SUPH, PARTH, ENGH, HOMEH, HPH, SPONH, RESH, ATTH, CONTH, DESCH, EXPH, IMPH, NOTEH, SAFEH, TEAMH } from "./contents";
import { DescSidebar, NoSidebar, EngSide } from "./contents";
import { IBIE, JUDGEH, PRODESC, PARTH, ENGH, HOMEH, HPH, SPONH, RESH, ATTH, CONTH, DESCH, IMPH, NOTEH, SAFEH, TEAMH } from "./contents";
import { Methods } from "./contents/methods";
import { METHH } from "./headers/meth-h";
import { ConSidebar } from "./sidebars/conS";
import { iGemBielefeldSidebar } from "./sidebars/igbS";
import { JudSidebar } from "./sidebars/jugS";
import { MethSidebar } from "./sidebars/methS";
import { PartSidebar } from "./sidebars/prtS";
import { ResultSidebar } from "./sidebars/resS";
interface Base {
name: string | undefined;
......@@ -65,7 +72,7 @@ const Pages: (Page | Folder)[] = [
path: "/contribution",
component: Contribution,
header: CONTH,
navlist: NoSidebar,
navlist: ConSidebar,
},
{
name: "Description",
......@@ -91,24 +98,23 @@ const Pages: (Page | Folder)[] = [
header: HOMEH,
navlist: NoSidebar,
},
{
name: "Experiments",
title: "Experiments",
path: "/experiments",
component: Experiments,
header: EXPH,
navlist: NoSidebar,
},
{
name: "Human Practices",
title: "Human Practices",
path: "/human-practices",
component: HumanPractices,
header: HPH,
navlist: NoSidebar
navlist: HpSidebar
},
{
name: "Home",
title: "Bielefeld CeBiTec",
path: "/home",
component: Home,
header: HOMEH,
navlist: NoSidebar
},
{
name: "Home",
title: "Bielefeld CeBiTec",
......@@ -126,12 +132,12 @@ const Pages: (Page | Folder)[] = [
navlist: NoSidebar
},
{
name: "iGem Bielefeld",
title: "iGem Bielefeld",
name: "iGEM Bielefeld",
title: "iGEM Bielefeld",
path: "/igem-bielefeld",
component: igemBielefeld,
header: IBIE,
navlist: NoSidebar,
navlist: iGemBielefeldSidebar,
},
{
name: "Impressum",
......@@ -147,7 +153,15 @@ const Pages: (Page | Folder)[] = [
path: "/judging",
component: Judging,
header: JUDGEH,
navlist: NoSidebar,
navlist: JudSidebar,
},
{
name: "Materials & Methods",
title: "Materials & Methods",
path: "/materials-methods",
component: Methods,
header: METHH,
navlist: MethSidebar,
},
{
name: "Notebook",
......@@ -158,8 +172,8 @@ const Pages: (Page | Folder)[] = [
navlist: NoSidebar,
},
{
name: "Sponsores and Partners",
title: "ponsores and Partners",
name: "Sponsors & Partners",
title: "Sponsors & Partners",
path: "/partners",
component: Partners,
header: SPONH,
......@@ -171,7 +185,7 @@ const Pages: (Page | Folder)[] = [
path: "/parts",
component: Parts,
header: PARTH,
navlist: NoSidebar,
navlist: PartSidebar,
},
{
name: "Project Documentation",
......@@ -187,7 +201,7 @@ const Pages: (Page | Folder)[] = [
path: "/results",
component: Results,
header: RESH,
navlist: NoSidebar,
navlist: ResultSidebar,
},
{
name: "Biosafety",
......@@ -197,14 +211,6 @@ const Pages: (Page | Folder)[] = [
header: SAFEH,
navlist: SafetySidebar,
},
{
name: "Materials and Methods",
title: "Supplementary",
path: "/materials-methods",
component: Supplementary,
header: SUPH,
navlist: NoSidebar,
},
{
name: "Roster",
title: "Roster",
......@@ -216,13 +222,46 @@ const Pages: (Page | Folder)[] = [
];
export const NavPages: (Page | PageRef | Folder)[] = [
{
name: "Home",
title: "Bielefeld CeBiTec",
path: "/",
component: Home,
header: HOMEH,
navlist: NoSidebar,
path: "/home?=scrollTo=lpbild",
},
{
name: "Highlights",
folder: [
{
name: "Project Description",
title: "Project Description",
path: "/description?scrollTo=Abstract"
},
{
name: "Engineering",
title: "Engineering",
path: "/engineering?tab=tab-our-cycle&scrollTo=ourcycle"
},
{
name: "Materials & Methods",
title: "Materials & Methods",
path: "/materials-methods?scrollTo=introduction"
},
{
name: "Results",
title: "Results",
path: "/results?scrollTo=abstract"
},
{
name: "Parts",
title: "Parts",
path: "/parts?scrollTo=parts-collection"
},
{
name: "Judging",
title: "Judging",
path: "/judging?scrollTo=OverviewH"
},
]
},
{
name: "Team",
......@@ -231,33 +270,21 @@ export const NavPages: (Page | PageRef | Folder)[] = [
name: "Roster",
title: "Roster",
path: "/team",
component: Team,
header: TEAMH,
navlist: NoSidebar,
},
{
name: "Attributions",
title: "Attributions",
path: "/attributions",
component: Attributions,
header: ATTH,
navlist: NoSidebar,
},
{
name: "Sponsores and Partners",
title: "Sponsores and Partners",
path: "/partners",
component: Partners,
header: SPONH,
navlist: NoSidebar,
name: "Sponsors & Partners",
title: "Sponsors & Partners",
path: "/partners?scrollTo=gold",
},
{
name: "iGem Bielefeld",
title: "iGem Bielefeld",
path: "/igem-bielefeld",
component: igemBielefeld,
header: IBIE,
navlist: NoSidebar,
name: "iGEM Bielefeld",
title: "iGEM Bielefeld",
path: "/igem-bielefeld?scrollTo=bielefeld-university",
},
],
},
......@@ -267,79 +294,47 @@ export const NavPages: (Page | PageRef | Folder)[] = [
{
name: "Description",
title: "Project Description",
path: "/description",
component: Description,
header: DESCH,
navlist: DescSidebar
path: "/description?scrollTo=Abstract",
},
{
name: "Engineering",
title: "Engineering",
path: "/engineering",
component: Engineering,
header: ENGH,
navlist: EngSide ,
path: "/engineering?tab=tab-our-cycle&scrollTo=ourcycle",
},
{
name: "Biosafety",
title: "Biosafety",
path: "/safety",
component: Safety,
header: SAFEH,
navlist: SafetySidebar,
path: "/safety?scrollTo=role-in-igem",
},
{
name: "Project Documentation",
title: "Project Documentation",
path: "/project-documentation",
component: ProDesc,
header: PRODESC,
navlist: NoSidebar
},
path: "/project-documentation?scrollTo=our-meeting-protocols",
}
],
},
{
name: "Lab",
folder: [
{
name: "Experiments",
title: "Experiments",
path: "/experiments",
component: Experiments,
header: EXPH,
navlist: NoSidebar,
},
{
name: "Materials and Methods",
title: "Supplementary",
path: "/materials-methods",
component: Supplementary,
header: SUPH,
navlist: NoSidebar,
name: "Materials & Methods",
title: "Materials & Methods",
path: "/materials-methods?scrollTo=introduction",
},
{
name: "Results",
title: "Results",
path: "/results",
component: Results,
header: RESH,
navlist: NoSidebar,
path: "/results?scrollTo=abstract",
},
{
name: "Parts",
title: "Parts",
path: "/parts",
component: Parts,
header: PARTH,
navlist: NoSidebar,
path: "/parts?scrollTo=Description1H",
},
{
name: "Documentation",
name: "Notebook",
title: "Notebook",
path: "/notebook",
component: Notebook,
header: NOTEH,
navlist: NoSidebar,
path: "/notebook?scrollTo=notebookH",
},
]
},
......@@ -349,40 +344,37 @@ export const NavPages: (Page | PageRef | Folder)[] = [
{
name: "Introduction",
title: "Introduction",
path: "/human-practices?tab=intro"
path: "/human-practices?scrollTo=Introduction"
},
{
name: "Integrated Human Practices",
title: "Integrated Human Practices",
path: "/human-practices",
component: HumanPractices,
header: HPH,
navlist: NoSidebar
path: "/human-practices?scrollTo=overview-stakeholders",
},
{
name: "Feedback and Implementation",
title: "Feedback and Implementation",
path: "/human-practices?tab=feedback"
name: "Feedback & Implementation",
title: "Feedback & Implementation",
path: "/human-practices?scrollTo=Integrated Human Practices2"
},
{
name: "Public Engagement",
title: "Education and Outreach",
path: "/human-practices?tab=public"
name: "Education",
title: "Education & Outreach",
path: "/human-practices?scrollTo=Further Engagement1H"
},
{
name: "Education",
title: "Education and Outreach",
path: "/human-practices?tab=edu"
name: "Public Engagement",
title: "Education & Outreach",
path: "/human-practices?scrollTo=Further Engagement2H"
},
{
name: "Collaboration",
title: "Collaboration",
path: "/human-practices?tab=collabs"
path: "/human-practices?scrollTo=Further Engagement4H"
},
{
name: "Partnerships",
title: "Partnerships",
path: "/human-practices?tab=ships"
path: "/human-practices?scrollTo=Further Engagement5H"
},
]
},
......@@ -392,23 +384,28 @@ export const NavPages: (Page | PageRef | Folder)[] = [
{
name: "Overview",
title: "Judging",
path: "/judging?tab=overview",
path: "/judging?scrollTo=Overview",
},
{
name: "Best New Part",
name: "Best Integrated Human Practice",
title: "Judging",
path: "/judging?tab=newpart",
path: "/judging?scrollTo=best-integrated-human-practice",
},
{
name: "Safety & Security",
title: "Judging",
path: "/judging?tab=safety",
path: "/judging?scrollTo=safety-security",
},
{
name: "Best Integrated Human Practice",
name: "Best New Basic Part",
title: "Judging",
path: "/judging?tab=ihp",
},
path: "/judging?scrollTo=best-new-basic-part",
},
{
name: "Judging Session",
title: "Judging",
path: "/judging?scrollTo=judging-session",
},
]
},
{
......@@ -417,16 +414,23 @@ export const NavPages: (Page | PageRef | Folder)[] = [
{
name: "Contribution",
title: "Contribution",
path: "/contribution",
component: Contribution,
header: CONTH,
navlist: NoSidebar,
path: "/contribution?scrollTo=abstract",
},
{
name: "BFH European MeetUp",
title: "MeetUp",
path: "contribution/?tab=bfh"
}
path: "contribution/?scrollTo=bfh-european-meetup"
},
{
name: "Our Contributions",
title: "Our Contributions",
path: "contribution/?scrollTo=our-contributions"
},
{
name: "Collaborations",
title: "Collaborations",
path: "contribution/?scrollTo=our-collaborations"
},
]
},
];
......
import { createSidebar } from "../utils/createSidebar";
export function ConSidebar(){
let sidebar = createSidebar(tabs);
return(
<div className="col-2 d-none d-lg-block">
{sidebar}
</div>
)
}
const tabs = [
{tab: "Abstract"},
{ tab: "BFH European MeetUp", subtabs: ["Aftervideo", "Timeline", "About", "Posters", "Gallery", "Downloads"]},
{tab: "Our Collaborations", subtabs: ["MeetUp Guideline", "LNP Handbook"]},
{tab: "Our Contributions", subtabs: ["Biosafety & Security", "Wiki Developement"]},
{tab: "Conclusion"}
];
import { useEffect } from "react";
import { ScrollLink } from "../components/ScrollLink";
import { Highlight } from "../utils/Highlight-functions.ts";
import { openAndScroll, openAndCloseAndScroll } from "../utils/openAndScroll";
import { createSidebar } from "../utils/createSidebar";
export function DescSidebar(){
let nums = [ "del1"]
useEffect(() => {
window.addEventListener('scroll', handleScroll);
return () => window.removeEventListener('scroll', handleScroll);
}, []);
const handleScroll = () => {
for(let idx in nums){
/* console.log("We are looking at 'item' = " + nums[idx]) */
const item = nums[idx];
let ind = nums.findIndex((e) => e == item)
/* console.log("ind is: " + ind) */
let subdi = "subtitle" + ind
/* console.log("subdi is: " + subdi)
console.log("we use " + document.getElementById(item)?.id + " and " + document.getElementById(subdi)?.id) */
Highlight({el: document.getElementById(item)!}, {subtitle: document.getElementById(subdi)!});
}
/* */
}
/* console.log(nums) */
let sidebar = createSidebar(tabs);
return(
<div className="col-2 d-none d-lg-block">
<br/>
<div className="sticky-top">
<nav className="sidebar">
<div>
<a onClick={openAndCloseAndScroll({ it: "tab-Abstract", scrollTarget: "Abstract", close: ["Cystic-Fibrosis"] })}>
<div className="detail-sideitem">
<div id="parent-Abstract" className="sideitem">
<summary>Abstract</summary>
</div>
</div>
</a>
</div>
<div>
{/* Fznktioniert: <a onClick={openThem({it: "tab-Cystic-Fibrosis"})} > */}
<div className="detail-sideitem">
<div id="parent-Cystic-Fibrosis" className="sideitem">
<a onClick={openAndScroll({ it: "tab-Cystic-Fibrosis", scrollTarget: "Cystic-Fibrosis" })}><summary>Cystic Fibrosis</summary></a>
<span id="tab-Cystic-Fibrosis" className="sidesubtab" style={{display: "none"}}>
<ul>
<li><ScrollLink label="General" targetId="CF1"/></li>
<li><ScrollLink label="CFTR" targetId="CF2"/></li>
<li><ScrollLink label="ΔF508" targetId="CF3"/></li>
<li><ScrollLink label="Symptoms" targetId="CF4"/></li>
<li><ScrollLink label="Diagnosis" targetId="CF5"/></li>
<li><ScrollLink label="Treatment" targetId="CF6"/></li>
</ul>
</span>
</div>
</div>
</div>
<div>
<a onClick={openAndCloseAndScroll({it: "tab-Our-motivation", scrollTarget: "Our-motivation", close: ["Cystic-Fibrosis"]})}>
<div className="detail-sideitem">
<div id="parent-pe-systems" className="sideitem">
<summary>Our Motivation</summary>
</div>
</div>
</a>
</div>
<div>
<a onClick={openAndCloseAndScroll({it: "tab-Our-motivation", scrollTarget: "Approach", close: ["Cystic-Fibrosis"]})}>
<div className="detail-sideitem">
<div id="parent-nikase" className="sideitem">
<summary>Approach</summary>
</div>
</div>
</a>
</div>
<div>
<a onClick={openAndCloseAndScroll({it: "tab-Our-motivation", scrollTarget: "Delivery", close: ["Cystic-Fibrosis"]})}>
<div className="detail-sideitem">
<div id="parent-delivery" className="sideitem">
<summary>Delivery</summary>
</div>
</div>
</a>
</div> {/* */}
<div>
<a onClick={openAndCloseAndScroll({it: "tab-Our-motivation", scrollTarget: "Our-vision", close: ["Cystic-Fibrosis"]})}>
<div className="detail-sideitem">
<div id="parent-pegrna" className="sideitem">
<summary>Our vision</summary>
</div>
</div>
</a>
</div>
<div>
<a onClick={openAndCloseAndScroll({it: "tab-Our-motivation", scrollTarget: "References", close: ["Cystic-Fibrosis"]})}>
<div className="detail-sideitem">
<div id="parent-references" className="sideitem">
<summary>References</summary>
</div>
</div>
</a>
</div>
</nav>
<br/>
<div className="col" style={{display: "flex", alignItems: "right"}}>
<a href='#' className="backtotop">
Back to Top &#8593;
</a>
</div>
</div>
<div className="col-2 d-none d-lg-block">
{sidebar}
</div>
)
}
const tabs = [
{ tab: "Abstract" },
{tab: "Our Motivation"},
{ tab: "Cystic Fibrosis", subtabs: ["Overview", "The CFTR Protein", "F508del", "Symptoms", "Diagnosis", "Treatment"]},
{tab: "Approach", subtabs: ["Mechanism", "Delivery"]},
{tab: "Our Vision"},
{tab: "References"}
];
import { useEffect } from "react";
import { NewHighlight } from "../utils/Highlight-functions";
import { openThem } from "../utils/openThem";
import { BackUp } from "../components/Buttons";
import { useNavigation } from "../utils";
export function EngSide(){
let nums = [ "cyc1", "cyc2", "cyc3", "cyc4", "del1", "del2", "del3", "del4", "del5"]
let nums = ["rep1", "rep2", "rep3", "rep4", "rep5", "rep6", "trf1", "trf2", "trf3", "trf4", "pe1", "pe2", "pe3", "peg1", "peg2", "peg3", "peg4", "peg5",
"nic1", "nic2", "nic3", "nic4", "nic5", "nic6","del1", "del2", "del3", "del4", "del5"]
useEffect(() => {
window.addEventListener('scroll', handleScroll);
return () => window.removeEventListener('scroll', handleScroll);
}, []);
window.addEventListener("scroll", handleScroll);
return () => window.removeEventListener("scroll", handleScroll);
}, [nums]);
// Restore active tab on reload
useEffect(() => {
const params = new URLSearchParams(window.location.search);
const tabId = params.get("tab");
const subTabId = params.get("subTab");
if (tabId) {
// Find the parent element and mark it as active
const parentTab = document.querySelector(`#parent-${tabId}`);
if (parentTab) {
document.querySelectorAll(".active-sideitem").forEach((el) => el.classList.remove("active-sideitem"));
parentTab.classList.add("active-sideitem");
}
// Optionally expand the subtab if available
if (subTabId) {
const subTab = document.querySelector(`#${subTabId}`);
if (subTab) {
subTab.classList.add("highlight-subitem"); // Add a custom class for highlighting subtabs if needed
}
}
}
}, []);
const handleScroll = () => {
for(let idx in nums){
console.log("We are looking at 'item' = " + nums[idx])
/* console.log("We are looking at 'item' = " + nums[idx]) */
const item = nums[idx];
let ind = nums.findIndex((e) => e == item)
console.log("ind is: " + ind)
/* console.log("ind is: " + ind) */
let subdi = "subtitle" + ind
console.log("subdi is: " + subdi)
console.log("we use " + document.getElementById(item)?.id + " and " + document.getElementById(subdi)?.id)
/* console.log("subdi is: " + subdi)
console.log("we use " + document.getElementById(item)?.id + " and " + document.getElementById(subdi)?.id) */
NewHighlight({el: document.getElementById(item)!}, {subtitle: document.getElementById(subdi)!});
}
console.log("function HighlightCheck")
}
console.log(nums)
const {goToPageWithTabAndScroll} = useNavigation();
return(
<div className="col-2 d-none d-lg-block">
<div className="col-2 d-lg-block" >
<br/>
<div className="sticky-top">
<nav className="sidebar">
<nav className="sidebar" id="eng-sidebar">
<div>
<a onClick={openThem({it: "our-cycle", scrollToId: "ourcycle"})}>
<a onClick={openThem({it: "our-cycle", scrollToId: "our-cycle-header"})}>
<div className="detail-sideitem">
<div id="parent-our-cycle" className="sideitem active-sideitem">
<summary>Our Cycle</summary>
<summary>Our Cycles</summary>
<span id="our-cycle" className="sidesubtab" style={{display: "block"}}>
</span>
......@@ -42,47 +69,77 @@ export function EngSide(){
</a>
</div>
<div>
<a onClick={openThem({it: "proof-of-concept"})}>
<a onClick={openThem({it: "reporter", scrollToId: "reporter-header"})}>
<div className="detail-sideitem">
<div id="parent-proof-of-concept" className="sideitem">
<summary>Proof Of Concept</summary>
<span id="proof-of-concept" className="sidesubtab" style={{display: "none"}}>
<div id="parent-reporter" className="sideitem">
<summary>Reporter System</summary>
<span id="reporter" className="sidesubtab" style={{display: "none"}}>
<ul>
<a href="#"><li>Iteration 1</li></a>
<a href="#"><li>Iteration 2</li></a>
<a href="#"><li>Iteration 3</li></a>
<li><a onClick={() => goToPageWithTabAndScroll({path: "", tabId: "tab-reporter", scrollToId: "rep1head"})}>
<span id="subtitle0" className='sideitem'>Iteration 1</span>
</a></li>
<li><a onClick={() => goToPageWithTabAndScroll({path: "", tabId: "tab-reporter", scrollToId: "rep2head"})}>
<span id="subtitle1" className='sideitem'>Iteration 2</span>
</a></li>
<li><a onClick={() => goToPageWithTabAndScroll({path: "", tabId: "tab-reporter", scrollToId: "rep3head"})}>
<span id="subtitle2" className='sideitem'>Iteration 3</span>
</a></li>
<li><a onClick={() => goToPageWithTabAndScroll({path: "", tabId: "tab-reporter", scrollToId: "rep4head"})}>
<span id="subtitle3" className='sideitem'>Iteration 4</span>
</a></li>
<li><a onClick={() => goToPageWithTabAndScroll({path: "", tabId: "tab-reporter", scrollToId: "rep5head"})}>
<span id="subtitle4" className='sideitem'>Iteration 5</span>
</a></li>
<li><a onClick={() => goToPageWithTabAndScroll({path: "", tabId: "tab-reporter", scrollToId: "rep6head"})}>
<span id="subtitle5" className='sideitem'>Outlook</span>
</a></li>
</ul>
</span>
</div>
</div>
</a>
</div>
</a>
</div>
<div>
<a onClick={openThem({it: "pe-systems"})}>
<a onClick={openThem({it: "transfection", scrollToId: "transfection-header"})}>
<div className="detail-sideitem">
<div id="parent-pe-systems" className="sideitem">
<summary>PE Systems</summary>
<span id="pe-systems" className="sidesubtab" style={{display: "none"}}>
<div id="parent-transfection" className="sideitem">
<summary>Transfection</summary>
<span id="transfection" className="sidesubtab" style={{display: "none"}}>
<ul>
<a href="#"><li>Iteration 1</li></a>
<a href="#"><li>Iteration 2</li></a>
<a href="#"><li>Iteration 3</li></a>
<li><a onClick={() => goToPageWithTabAndScroll({path: "", tabId: "tab-transfection", scrollToId: "trf1head"})}>
<span id="subtitle6" className='sideitem'>Iteration 1</span>
</a></li>
<li><a onClick={() => goToPageWithTabAndScroll({path: "", tabId: "tab-transfection", scrollToId: "trf2head"})}>
<span id="subtitle7" className='sideitem'>Iteration 2</span>
</a></li>
<li><a onClick={() => goToPageWithTabAndScroll({path: "", tabId: "tab-transfection", scrollToId: "trf3head"})}>
<span id="subtitle8" className='sideitem'>Iteration 3</span>
</a></li>
<li><a onClick={() => goToPageWithTabAndScroll({path: "", tabId: "tab-transfection", scrollToId: "trf4head"})}>
<span id="subtitle9" className='sideitem'>Iteration 4</span>
</a></li>
</ul>
</span>
</div>
</div>
</a>
</a>
</div>
<div>
<a onClick={openThem({it: "nikase"})}>
<a onClick={openThem({it: "pe-systems", scrollToId: "pe-systems-header"})}>
<div className="detail-sideitem">
<div id="parent-nikase" className="sideitem">
<summary>Nikase</summary>
<span id="nikase" className="sidesubtab" style={{display: "none"}}>
<div id="parent-pe-systems" className="sideitem">
<summary>PE Systems</summary>
<span id="pe-systems" className="sidesubtab" style={{display: "none"}}>
<ul>
<a href="#"><li>Iteration 1</li></a>
<a href="#"><li>Iteration 2</li></a>
<a href="#"><li>Iteration 3</li></a>
<li><a onClick={() => goToPageWithTabAndScroll({path: "", tabId: "tab-pe-systems", scrollToId: "pe1head"})}>
<span id="subtitle10" className='sideitem'>Iteration 1</span>
</a></li>
<li><a onClick={() => goToPageWithTabAndScroll({path: "", tabId: "tab-pe-systems", scrollToId: "pe2head"})}>
<span id="subtitle11" className='sideitem'>Iteration 2</span>
</a></li>
<li><a onClick={() => goToPageWithTabAndScroll({path: "", tabId: "tab-pe-systems", scrollToId: "pe3head"})}>
<span id="subtitle12" className='sideitem'>Outlook</span>
</a></li>
</ul>
</span>
</div>
......@@ -90,15 +147,27 @@ export function EngSide(){
</a>
</div>
<div>
<a onClick={openThem({it: "pegrna"})}>
<a onClick={openThem({it: "pegrna", scrollToId: "pegrna-header"})}>
<div className="detail-sideitem">
<div id="parent-pegrna" className="sideitem">
<summary>pegRNA</summary>
<span id="pegrna" className="sidesubtab" style={{display: "none"}}>
<ul>
<a href="#"><li>Iteration 1</li></a>
<a href="#"><li>Iteration 2</li></a>
<a href="#"><li>Iteration 3</li></a>
<li><a onClick={() => goToPageWithTabAndScroll({path: "", tabId: "tab-pegrna", scrollToId: "peg1head"})}>
<span id="subtitle13" className='sideitem'>Iteration 1</span>
</a></li>
<li><a onClick={() => goToPageWithTabAndScroll({path: "", tabId: "tab-pegrna", scrollToId: "peg2head"})}>
<span id="subtitle14" className='sideitem'>Iteration 2</span>
</a></li>
<li><a onClick={() => goToPageWithTabAndScroll({path: "", tabId: "tab-pegrna", scrollToId: "peg3head"})}>
<span id="subtitle15" className='sideitem'>Iteration 3</span>
</a></li>
<li><a onClick={() => goToPageWithTabAndScroll({path: "", tabId: "tab-pegrna", scrollToId: "peg4head"})}>
<span id="subtitle16" className='sideitem'>Iteration 4</span>
</a></li>
<li><a onClick={() => goToPageWithTabAndScroll({path: "", tabId: "tab-pegrna", scrollToId: "peg5head"})}>
<span id="subtitle17" className='sideitem'>Iteration 5</span>
</a></li>
</ul>
</span>
</div>
......@@ -106,51 +175,66 @@ export function EngSide(){
</a>
</div>
<div>
<a onClick={openThem({it: "delivery"})}>
<a onClick={openThem({it: "nickase", scrollToId: "nickase-header"})}>
<div className="detail-sideitem">
<div id="parent-delivery" className="sideitem">
<summary>Delivery</summary>
<span id="delivery" className="sidesubtab" style={{display: "none"}}>
<div id="parent-nickase" className="sideitem">
<summary>Nickase</summary>
<span id="nickase" className="sidesubtab" style={{display: "none"}}>
<ul>
<li><a href="#del2">
<span id="subtitle3" className='sideitem'>Iteration 1</span>
<li><a onClick={() => goToPageWithTabAndScroll({path: "", tabId: "tab-nickase", scrollToId: "nic1head"})}>
<span id="subtitle18" className='sideitem'>Iteration 1</span>
</a></li>
<li><a onClick={() => goToPageWithTabAndScroll({path: "", tabId: "tab-nickase", scrollToId: "nic2head"})}>
<span id="subtitle19" className='sideitem'>Iteration 2</span>
</a></li>
<li><a onClick={() => goToPageWithTabAndScroll({path: "", tabId: "tab-nickase", scrollToId: "nic3head"})}>
<span id="subtitle20" className='sideitem'>Iteration 3</span>
</a></li>
<li><a href="#del2">
<span id="subtitle4" className='sideitem'>Iteration 1</span>
<li><a onClick={() => goToPageWithTabAndScroll({path: "", tabId: "tab-nickase", scrollToId: "nic4head"})}>
<span id="subtitle21" className='sideitem'>Iteration 4</span>
</a></li>
<li><a onClick={() => goToPageWithTabAndScroll({path: "", tabId: "tab-nickase", scrollToId: "nic5head"})}>
<span id="subtitle22" className='sideitem'>Iteration 5</span>
</a></li>
<li><a onClick={() => goToPageWithTabAndScroll({path: "", tabId: "tab-nickase", scrollToId: "nic6head"})}>
<span id="subtitle23" className='sideitem'>Iteration 6</span>
</a></li>
<a href="#"><li>Iteration 2</li></a>
<a href="#"><li>Iteration 3</li></a>
</ul>
</span>
</div>
</div>
</a>
</div>
</div>
<div>
<a onClick={openThem({it: "references"})}>
<a onClick={openThem({it: "delivery", scrollToId: "delivery-header"})}>
<div className="detail-sideitem">
<div id="parent-references" className="sideitem">
<summary>References</summary>
<span id="references" className="sidesubtab" style={{display: "none"}}>
<div id="parent-delivery" className="sideitem">
<summary>Delivery</summary>
<span id="delivery" className="sidesubtab" style={{display: "none"}}>
<ul>
<li><a href="#subtitle1">
<span id="" className='sideitem'>Iteration 1</span>
<li><a onClick={() => goToPageWithTabAndScroll({path: "", tabId: "tab-delivery", scrollToId: "del1head"})}>
<span id="subtitle24" className='sideitem'>Iteration 1</span>
</a></li>
<li><a onClick={() => goToPageWithTabAndScroll({path: "", tabId: "tab-delivery", scrollToId: "del2head"})}>
<span id="subtitle25" className='sideitem'>Iteration 2</span>
</a></li>
<li><a onClick={() => goToPageWithTabAndScroll({path: "", tabId: "tab-delivery", scrollToId: "del3head"})}>
<span id="subtitle26" className='sideitem'>Iteration 3</span>
</a></li>
<li><a onClick={() => goToPageWithTabAndScroll({path: "", tabId: "tab-delivery", scrollToId: "del4head"})}>
<span id="subtitle27" className='sideitem'>Iteration 4</span>
</a></li>
<li><a onClick={() => goToPageWithTabAndScroll({path: "", tabId: "tab-delivery", scrollToId: "del5head"})}>
<span id="subtitle28" className='sideitem'>Outlook</span>
</a></li>
<a href="#"><li>Iteration 2</li></a>
<a href="#"><li>Iteration 3</li></a>
</ul>
</span>
</div>
</div>
</a>
</div>
</div>
</nav>
<br/>
<div className="col" style={{display: "flex", alignItems: "right"}}>
<a href='#' className="backtotop">
Back to Top &#8593;
</a>
</div>
<BackUp></BackUp>
</div>
</div>
......@@ -160,6 +244,7 @@ export function EngSide(){
/* function SideItemEng({hesh, num}:{hesh: string; num: number}){
let subdi = "subtitle" + num
let openmore = stringToSlug(hesh)
......
import Sidebar from "../components/Sidebar";
import { createSidebar } from "../utils/createSidebar";
export function HpSidebar(){
let sidebar = createSidebar(tabs);
return(
<div className="col-2 d-none d-lg-block">
<div className="sticky-top">
<Sidebar nums={["Overview", "Timeline", "Inspiration", "Methods", "Analysis", "Reflection", "Implementation"]}></Sidebar>
</div>
{sidebar}
</div>
)
}
\ No newline at end of file
}
const tabs = [
{tab: "Abstract"},
{ tab: "Overview" },
{tab: "Introduction"},
{tab: "Integrated Human Practices", subtabs: ["Framework", "Timeline", "Feedback & Implementation", "Conclusion"]},
{tab: "Further Engagement", subtabs: [ "Education", "Public Engagement", "Entrepreneurship", "Collaborations", "Partnerships"]},
{tab: "Supplementary Material"},
// {tab: ""},
];
\ No newline at end of file
import { createSidebar } from "../utils/createSidebar";
export function iGemBielefeldSidebar(){
let sidebar = createSidebar(tabs);
return(
<div className="col-2 d-none d-lg-block">
{sidebar}
</div>
)
}
const tabs = [
{tab: "Bielefeld University"},
{ tab: "History"},
{ tab: "Steering Committee"}
];
\ No newline at end of file
import { createSidebar } from "../utils/createSidebar";
export function JudSidebar(){
let sidebar = createSidebar(tabs);
return(
<div className="col-2 d-none d-lg-block">
{sidebar}
</div>
)
}
const tabs = [
{tab: "Best Therapeutic Project"},
{tab: "Best Integrated Human Practice"},
{tab: "Safety & Security"},
{tab: "Best New Basic Part"},
{tab: "Conclusion"},
{tab: "Judging Session"}
];
import { createSidebar } from "../utils/createSidebar";
export function MethSidebar(){
let sidebar = createSidebar(tabs);
return(
<div className="col-2 d-none d-lg-block">
{sidebar}
</div>
)
}
const tabs = [
{ tab: "Introduction"},
{ tab: "Patch Clamp", subtabs: ["Background", "Principles", "Application"]},
{tab: "Cell Culture", subtabs: ["HEK Cells", "CFBE41o-", "hNECs"]},
{tab: "LNPs"}
];
export function NoSidebarSmal(){
return(
<div className="col-1 d-none d-lg-block">
</div>
)
}
\ No newline at end of file
export function NoSidebar(){
return(
<div className="col-1 d-none d-lg-block">
<div className="col-2 d-none d-lg-block">
</div>
)
}
\ No newline at end of file
import { createSidebar } from "../utils/createSidebar";
export function PartSidebar(){
let sidebar = createSidebar(tabs);
return(
<div className="col-2 d-none d-lg-block">
{sidebar}
</div>
)
}
const tabs = [
{ tab: "Description", subtabs: ["Introduction", "Prime Editor & pegRNA", "Conclusion"]},
{ tab: "Characterization", subtabs: ["Design & Functionality", "Adaptions"]},
{tab: "Experiments", subtabs: ["Cloning", "pegRNA Screening", "Nickase Assay"]},
{tab: "Parts Collection", subtabs: ["Basic Parts"]},
];
import { createSidebar } from "../utils/createSidebar";
export function ResultSidebar(){
let sidebar = createSidebar(tabs);
return(
<div className="col-2 d-none d-lg-block">
{sidebar}
</div>
)
}
const tabs = [
{ tab: "Abstract"},
{tab: "Experimental Design", subtabs: ["Proof of Concept", "PrimeGuide", "LNP Synthesis", "Primary Cell Culture", "Downstream Applications", "PreCyse Results"]},
{tab: "Supplementary Material"}
];
\ No newline at end of file
import { useEffect } from "react";
import { NewHighlight, Highlight } from "../utils/Highlight-functions";
import { ScrollLink } from "../components/ScrollLink";
import { openAndCloseAndScroll } from "../utils/openAndScroll";
export function SafetySidebar() {
let numsBig = ["RoleH", "ChecksH", "LabH", "BiosafetyH", "BiosecurityH", "BioethicsH"];
let numsSub = ["BS1", "BS2"];
import { createSidebar } from "../utils/createSidebar";
useEffect(() => {
window.addEventListener('scroll', handleScroll);
return () => window.removeEventListener('scroll', handleScroll);
}, []);
const handleScroll = () => {
for (let idx in numsSub) {
const item = numsSub[idx];
let ind = numsSub.findIndex((e) => e === item);
let subdi = "newsubtitle" + ind;
NewHighlight(
{ el: document.getElementById(item) },
{ subtitle: document.getElementById(subdi) }
);
}
for (let idx in numsBig) {
const item = numsBig[idx];
let ind = numsBig.findIndex((e) => e === item);
let subdi = "subtitle" + ind;
Highlight(
{ el: document.getElementById(item) },
{ subtitle: document.getElementById(subdi) }
);
}
};
return (
<div className="col-2 d-none d-lg-block">
<br />
<div className="sticky-top">
<nav className="sidebar">
<div>
<a
onClick={openAndCloseAndScroll({
it: "tab-Role",
scrollTarget: "Role",
close: ["Bioethics", "Biosafety", "Biosecurity"],
})}
>
<div id="subtitle0" className="detail-sideitem">
<div id="parent-Role" className="sideitem">
<summary>Role in iGem</summary>
</div>
</div>
</a>
</div>
<div>
<a
onClick={openAndCloseAndScroll({
it: "tab-Checks",
scrollTarget: "Checks",
close: ["Bioethics", "Biosafety", "Biosecurity"],
})}
>
<div id="subtitle1" className="detail-sideitem">
<div id="parent-Checks" className="sideitem">
<summary>Check-Ins</summary>
</div>
</div>
</a>
</div>
<div>
<a
onClick={openAndCloseAndScroll({
it: "tab-Lab",
scrollTarget: "Lab",
close: ["Bioethics", "Biosafety", "Biosecurity"],
})}
>
<div id="subtitle2" className="detail-sideitem">
<div id="parent-Lab" className="sideitem">
<summary>Our Lab</summary>
</div>
</div>
</a>
</div>
<div>
<div className="detail-sideitem" id="subtitle3">
<div id="parent-Biosafety" className="sideitem">
<a
onClick={openAndCloseAndScroll({
it: "tab-Biosafety",
scrollTarget: "Biosafety",
close: ["Bioethics", "Biosecurity"],
})}
>
<summary>Biosafety</summary>
</a>
<span id="tab-Biosafety" className="sidesubtab" style={{ display: "none" }}>
<ul>
<li id="newsubtitle0">
<ScrollLink label="Mechanism" targetId="BS1" />
</li>
<li id="newsubtitle1">
<ScrollLink label="Delivery" targetId="BS2" />
</li>
</ul>
</span>
</div>
</div>
</div>
<div>
<div className="detail-sideitem" id="subtitle4">
<div id="parent-Biosecurity" className="sideitem">
<a
onClick={openAndCloseAndScroll({
it: "tab-Biosecurity",
scrollTarget: "Biosecurity",
close: ["Biosafety", "Bioethics"],
})}
>
<summary>Biosecurity</summary>
</a>
<span id="tab-Biosecurity" className="sidesubtab" style={{ display: "none" }}>
<ul>
<li>
<ScrollLink label="Our Project" targetId="BSec1" />
</li>
<li>
<ScrollLink label="Risk Assesment" targetId="BSec2" />
</li>
<li>
<ScrollLink label="Managing Risks" targetId="BSec3" />
</li>
</ul>
</span>
</div>
</div>
</div>
<div>
<div className="detail-sideitem" id="subtitle5">
<div id="parent-Bioethics" className="sideitem">
<a
onClick={openAndCloseAndScroll({
it: "tab-Bioethics",
scrollTarget: "Bioethics",
close: ["Biosafety", "Biosecurity"],
})}
>
<summary>Bioethics</summary>
</a>
<span id="tab-Bioethics" className="sidesubtab" style={{ display: "none" }}>
<ul>
<li>
<ScrollLink label="Gene Therapy" targetId="BE1" />
</li>
<li>
<ScrollLink label="Primary Cells" targetId="BE2" />
</li>
<li>
<ScrollLink label="Consent and Guidelines" targetId="BE3" />
</li>
</ul>
</span>
</div>
</div>
</div>
</nav>
<br />
<div className="col" style={{ display: "flex", alignItems: "right" }}>
<a href="#" className="backtotop">
Back to Top &#8593;
</a>
export function SafetySidebar(){
let sidebar = createSidebar(tabs);
return(
<div className="col-2 d-none d-lg-block">
{sidebar}
</div>
</div>
</div>
);
}
)}
const tabs = [
{ tab: "Role" },
{ tab: "Biosafety", subtabs: ["Mechanism", "Delivery"] },
{ tab: "Biosecurity", subtabs: ["Our Project", "Risk Assessment", "Managing Risks"] },
{ tab: "Bioethics", subtabs: ["Gene Therapy", "Primary Cells", "Consent and Guidelines"] },
{ tab: "Check-Ins"},
{ tab: "Our Lab" },
];
\ No newline at end of file
import BibtexParser from "../components/makeSources";
export default function ScoComSources(){
return (
<div>
<BibtexParser bibtexSources={bibtexSources} />
</div>
);
}
const bibtexSources = [
`@article{
doi:10.1073/pnas.1213273110,
author = {Baruch Fischhoff },
title = {The sciences of science communication},
journal = {Proceedings of the National Academy of Sciences},
volume = {110},
number = {supplement\_3},
pages = {14033-14039},
year = {2013},
doi = {10.1073/pnas.1213273110},
URL = {https://www.pnas.org/doi/abs/10.1073/pnas.1213273110},
eprint = {https://www.pnas.org/doi/pdf/10.1073/pnas.1213273110},
}`
]
import BibtexParser from "../components/makeSources";
export default function DescSources(){
return (
<div>
<BibtexParser bibtexSources={bibtexSources} />
</div>
)
}
const bibtexSources = [
`
@article{Rodrigues_2008,
title = {Cystic fibrosis and neonatal screening},
author = {
Rodrigues, Roberta and Gabetta, Carmen S. and Pedro, Karla P. and Valdetaro,
Fabio and Fernandes, Maria I. M. and Magalhães, Patrícia K. R. and Januário,
José N. and Maciel, Léa M. Z.
},
year = 2008,
journal = {Cadernos de Saúde Pública},
publisher = {SciELO},
volume = 24,
number = {suppl 4},
pages = {s592--s602},
doi = {10.1590/S0102-311X2008001600002},
url = {https://doi.org/10.1590/S0102-311X2008001600002}
}`,`
@article{genes11040401,
title = {
The Impact of the CFTR Gene Discovery on Cystic Fibrosis Diagnosis,
Counseling, and Preventive Therapy
},
author = {Farrell, Philip M. and Rock, Michael J. and Baker, Mei W.},
year = 2020,
journal = {Genes},
volume = 11,
number = 4,
doi = {10.3390/genes11040401},
issn = {2073-4425},
url = {https://www.mdpi.com/2073-4425/11/4/401},
article-number = 401,
pubmedid = 32276344
}`,`
@article{zgzugzuzk,
title = {
CFTR Modulators: The Changing Face of Cystic Fibrosis in the Era of Precision
Medicine
},
author = {Lopes-Pacheco, Miquéias},
year = 2020,
journal = {Frontiers in Pharmacology},
volume = 10,
doi = {10.3389/fphar.2019.01662},
issn = {1663-9812},
url = {
https://www.frontiersin.org/journals/pharmacology/articles/10.3389/fphar.2019.01662
}
}`,`
@misc{clinicaltrialsarena2024,
title = {Cystic fibrosis: global clinic trials landscape and treatments},
author = {Novotech},
year = 2024,
url = {
https://www.clinicaltrialsarena.com/sponsored/cystic-fibrosis-global-clinical-trials-landscape-and-treatments/
},
note = {Zugriff am 23. September 2024}
}`,`
@misc{MSDmanual2024internet,
title = {Mukoviszidose (zystische Fibrose, CF)},
author = {Gregory Sawicki},
year = 2023,
url = {
https://www.msdmanuals.com/de-de/heim/gesundheitsprobleme-von-kindern/mukoviszidose/mukoviszidose-zystische-fibrose-cf​
},
note = {Zugriff am 23. September 2024}
}`,`
@misc{patient2024internet,
title = {Zahlen, Daten und Fakten für Patienten und Angehörige},
author = {M. Burkhart, L. Nährlich},
year = 2022,
url = {
https://www.muko.info/fileadmin/user_upload/was_wir_tun/register/berichtsbaende/patientenberichtsband.pdf​
},
note = {Zugriff am 23. September 2024}
}`,`
@book{Baird2022,
title = {
Dorothy Hansine Andersen: The Life and Times of the Pioneering
Physician-Scientist Who Identified Cystic Fibrosis
},
author = {Baird, John Scott},
year = 2022,
publisher = {Springer International Publishing},
doi = {10.1007/978-3-030-87484-1},
isbn = 9783030874841,
url = {http://dx.doi.org/10.1007/978-3-030-87484-1}
}`,`
@book{Ballmann2008-bt,
title = {CF-Manual},
author = {Ballmann, Manfred and Smaczny, Christina},
year = 2008,
language = {de}
}`,`
@article{article,
title = {CFTR: folding, misfolding and correcting the ΔF508 conformational defect},
author = {Lukacs, Gergely L.; Verkman, A. S.},
year = 2012,
month = 2,
journal = {Trends in molecular medicine},
volume = {{18(2)}},
pages = {81--91},
doi = {10.1016/j.molmed.2011.10.003}
}`,`
@misc{muko1internet2024,
title = {Was ist Mukoviszidose/ Cystische Fibrose (CF)?},
author = {Mukoviszidose e.V.},
year = 2024,
url = {https://www.muko.info/mukoviszidose/ueber-die-erkrankung​},
note = {Zugriff am 23. September 2024}
}`,`
@misc{muko2internet2024,
title = {Was ist Mukoviszidose/ Cystische Fibrose (CF)?},
author = {Mukoviszidose e.V.},
year = 2024,
url = {https://www.muko.info/mukoviszidose/ueber-die-erkrankung/ursache​},
note = {Zugriff am 23. September 2024}
}`,`
@article{CFTRchannel2013,
title = {The CFTR ion channel: gating, regulation, and anion permeation},
author = {Hwang, Tzyh-Chang and Kirk, Kevin L.},
year = 2013,
journal = {Cold Spring Harbor Perspectives in Medicine},
publisher = {Cold Spring Harbor Laboratory Press},
volume = 3,
number = 1,
pages = {a009498},
doi = {10.1101/cshperspect.a009498}
}`,`
@article{CFTRfunction2008,
title = {CFTR Function and Prospects for Therapy},
author = {Riordan, John R.},
year = 2008,
journal = {Annual Review of Biochemistry},
publisher = {Annual Reviews},
volume = 77,
number = 1,
pages = {701--26},
doi = {10.1146/annurev.biochem.75.103004.142532}
}`,`
@article{ABCprotein2006,
title = {
The ABC protein turned chloride channel whose failure causes cystic fibrosis
},
author = {Gadsby, D.; Vergani, P. & Csanády, L.},
year = 2006,
journal = {Nature},
publisher = {Nature},
volume = 440,
number = 1,
pages = {477--483},
doi = {https://doi.org/10.1038/nature04712}
}`,`
@article{Sheppard1999,
title = {Structure and function of the CFTR chloride channel},
author = {Sheppard, David N. and Welsh, Michael J.},
year = 1999,
journal = {Physiological Reviews},
publisher = {American Physiological Society},
volume = 79,
number = {1 Suppl},
pages = {S23--S45},
doi = {10.1152/physrev.1999.79.1.S23}
}
`,`
@article{article,
title = {
Unravelling the Regions of Mutant F508del-CFTR More Susceptible to the Action
of Four Cystic Fibrosis Correctors
},
author = {Amico, Giulia; Brandas, Chiara; Moran, Oscar; Baroni, Debora},
year = 2019,
month = 1,
journal = {International Journal of Molecular Sciences},
volume = {{20(21)}},
pages = 5463,
doi = {10.3390/ijms20215463}
}`,`
@misc{cff2024digestive,
title = {Managing CF: Digestive Tract},
author = {Cystic Fibrosis Foundation},
year = 2024,
url = {https://www.cff.org/managing-cf/digestive-tract},
note = {Zugriff am 2. Dezember 2024}
}`,`
@misc{mukoleitlinien2024internet,
title = {
Mukoviszidose (Cystische Fibrose): Ernährung und exokrine
Pankreasinsuffizienz
},
author = {M. Stern, H. Ellemunter, B. Palm, H.-G. Posselt, C. Smaczny},
year = 2011,
url = {
https://www.muko.info/fileadmin/user_upload/was_wir_tun/leitlinien/LL_S1_mukoviszidose_ernaehrung_exokrine_pankreasinsuffizienz.pdf​
},
note = {Zugriff am 25. September 2024}
}`,`
@misc{CFF42024internet,
title = {The Digestive Tract},
author = {Cystic Fibrosis Foundation},
year = 2024,
url = {https://www.cff.org/managing-cf/digestive-tract​},
note = {Zugriff am 25. September 2024}
}`,`
@misc{muko2024therapie,
title = {Therapie der Mukoviszidose},
author = {Mukoviszidose e.V.},
year = 2024,
url = {https://www.muko.info/mukoviszidose/therapie-der-mukoviszidose#c1571},
note = {Zugriff am 2. Dezember 2024}
}
`,`
@misc{ncbi2024cf,
title = {Cystic Fibrosis: The Basics},
author = {National Center for Biotechnology Information (NCBI)},
year = 2024,
url = {https://www.ncbi.nlm.nih.gov/books/NBK279303/},
note = {Zugriff am 2. Dezember 2024}
}`,`
@article{DeLisle2013,
title = {The Cystic Fibrosis Intestine},
author = {De Lisle, R. C. and Borowitz, D.},
year = 2013,
month = jun,
journal = {Cold Spring Harbor Perspectives in Medicine},
publisher = {Cold Spring Harbor Laboratory},
volume = 3,
number = 9,
pages = {a009753-a009753},
doi = {10.1101/cshperspect.a009753},
issn = {2157-1422},
url = {http://dx.doi.org/10.1101/cshperspect.a009753}
}`,`
@misc{gesundheit2024leber,
title = {Die Funktionen der Leber},
author = {Gesundheit.gv.at},
year = 2024,
url = {https://www.gesundheit.gv.at/krankheiten/leber/funktion.html},
note = {Zugriff am 2. Dezember 2024}
}`,`
@misc{cfuk2024body,
title = {How Does Cystic Fibrosis Affect the Body?},
author = {Cystic Fibrosis Trust},
year = 2024,
url = {
https://www.cysticfibrosis.org.uk/what-is-cystic-fibrosis/how-does-cystic-fibrosis-affect-the-body
},
note = {Zugriff am 2. Dezember 2024}
}`,`
@misc{ncbi2024glossary,
title = {Glossary of Gene Therapy Terms},
author = {National Center for Biotechnology Information (NCBI)},
year = 2024,
url = {https://www.ncbi.nlm.nih.gov/books/NBK556086/},
note = {Zugriff am 2. Dezember 2024}
}`,`
@misc{CFT2024internet,
title = {Fertility and cystic fibrosis},
author = {Cystic Fibrosis Trust},
year = 2024,
url = {
https://www.cysticfibrosis.org.uk/what-is-cystic-fibrosis/how-does-cystic-fibrosis-affect-the-body/symptoms-of-cystic-fibrosis/fertility
},
note = {Zugriff am 25. September 2024}
}`,`
@misc{CFSource2024internet,
title = {Abnehmende Lungenfunktion als Leitsymptom bei CF},
author = {CF Source},
year = 2023,
url = {http://www.cfsource.at/de/cystische-fibrose/symptome/lunge​},
note = {Zugriff am 25. September 2024}
}`,`
@article{Rowe2005,
title = {Cystic Fibrosis},
author = {Rowe, Steven M. and Miller, Stacey and Sorscher, Eric J.},
year = 2005,
month = may,
journal = {New England Journal of Medicine},
publisher = {Massachusetts Medical Society},
volume = 352,
number = 19,
pages = {1992-2001},
doi = {10.1056/nejmra043184},
issn = {1533-4406},
url = {http://dx.doi.org/10.1056/NEJMra043184}
}`,`
@article{OSULLIVAN20091891,
title = {Cystic fibrosis},
author = {O'Sullivan, Brian and Freedman, Steven},
year = 2009,
journal = {The Lancet},
volume = 373,
number = 9678,
pages = {1891--1904},
doi = {https://doi.org/10.1016/S0140-6736(09)60327-5},
issn = {0140-6736},
url = {https://www.sciencedirect.com/science/article/pii/S0140673609603275}
}`,`
@misc{Muko62024internet,
title = {Mukoviszidose: Medikamente und Behandlung},
author = {Lungen Informationsdienst},
year = 2023,
url = {https://www.lungeninformationsdienst.de/krankheiten/mukoviszidose/therapie​},
note = {Zugriff am 25. September 2024}
}`,`
@book{Lambrechts_2023,
title = {Musculoskeletal Abnormalities Caused by Cystic Fibrosis},
author = {Lambrechts, Mark},
year = 2023,
month = mar,
booktitle = {Advances in Skeletal Muscle Health and Disease},
publisher = {IntechOpen},
doi = {10.5772/intechopen.104591},
isbn = 9781803562735,
issn = {2631-8261},
url = {http://dx.doi.org/10.5772/intechopen.104591}
}`,`
@misc{Anatomy2024internet,
title = {Anatomy, Skin (Integument), Epidermis},
author = {Yousef, H., Alhajj, M., Fakoya AO, et al.},
year = 2024,
url = {https://www.ncbi.nlm.nih.gov/books/NBK470464/},
note = {Zugriff am 25. September2024}
}`,`
@article{Wenk_2010,
title = {Cystic Fibrosis Presenting With Dermatitis},
author = {Wenk, Kurt S. and Higgins, Kristen B. and Greer, Kenneth E.},
year = 2010,
month = feb,
journal = {Archives of Dermatology},
publisher = {American Medical Association (AMA)},
volume = 146,
number = 2,
doi = {10.1001/archdermatol.2009.361},
issn = {0003-987X},
url = {http://dx.doi.org/10.1001/archdermatol.2009.361}
}`,`
@article{DAE193172,
title = {Cystic Fibrosis},
author = {Naehrig, Susanne and Chao, Cho-Ming and Naehrlich, Lutz},
year = 2017,
journal = {Dtsch Arztebl International},
volume = 114,
number = {33-34},
pages = {564--574},
doi = {10.3238/arztebl.2017.0564},
url = {https://www.aerzteblatt.de/int/article.asp?id=193172},
eprint = {https://www.aerzteblatt.de/pdf.asp?id=193172}
}`,`
@article{Guta2021,
title = {
Global Burden of Anxiety and Depression among Cystic Fibrosis Patient:
Systematic Review and Meta-Analysis
},
author = {
Guta, Mistire Teshome and Tekalign, Tiwabwork and Awoke, Nefsu and Fite,
Robera Olana and Dendir, Getahun and Lenjebo, Tsegaye Lolaso
},
year = 2021,
month = jul,
journal = {International Journal of Chronic Diseases},
publisher = {Hindawi Limited},
volume = 2021,
pages = {1-9},
doi = {10.1155/2021/6708865},
issn = {2356-6981},
url = {http://dx.doi.org/10.1155/2021/6708865},
editor = {Rao, Kosagi S. Jagannatha}
}`,`
@book{Behrhorst2020,
title = {Mental Health in Cystic Fibrosis},
author = {Behrhorst, Kathryn L. and Everhart, Robin S. and Schechter, Michael S.},
year = 2020,
booktitle = {Cystic Fibrosis},
publisher = {Springer International Publishing},
pages = {429-447},
doi = {10.1007/978-3-030-42382-7_21},
isbn = 9783030423827,
issn = {2197-7380},
url = {http://dx.doi.org/10.1007/978-3-030-42382-7_21}
}`,`
@article{Southern01,
title = {Newborn screening for cystic fibrosis},
author = {Southern, KW, Mérelle, MME, Dankert‐Roelse, JE, and Nagelkerke, A},
year = 2009,
journal = {Cochrane Database of Systematic Reviews},
publisher = {John Wiley & Sons, Ltd},
number = 1,
doi = {10.1002/14651858.CD001402.pub2},
issn = {1465-1858},
url = {https://doi.org//10.1002/14651858.CD001402.pub2},
keywords = {
*Neonatal Screening; Cystic Fibrosis [*diagnosis]; Humans; Infant, Newborn;
Quality of Life; Randomized Controlled Trials as Topic; Survival Analysis
}
}`,`
@book{Paracchini2012,
title = {
Cystic Fibrosis Newborn Screening: Distribution of Blood Immunoreactive
Trypsinogen Concentrations in Hypertrypsinemic Neonates
},
author = {
Paracchini, Valentina and Seia, Manuela and Raimondi, Sara and Costantino,
Lucy and Capasso, Patrizia and Porcaro, Luigi and Colombo, Carla and
Coviello, Domenico A. and Mariani, Tiziana and Manzoni, Emanuela and
Sangiovanni, Monica and Corbetta, Carlo
},
year = 2012,
booktitle = {JIMD Reports - Case and Research Reports, 2012/1},
publisher = {Springer Berlin Heidelberg},
address = {Berlin, Heidelberg},
pages = {17--23},
doi = {10.1007/8904_2011_55},
isbn = {978-3-642-25752-0},
url = {https://doi.org/10.1007/8904_2011_55},
abstract = {
The IRT screening test for the use in diagnosing newborns with CF has a high
sensitivity but is not very specific resulting in a large number of screened
positive infants found to have a normal sweat test. The aim of this study was
to analyze the differences in b-IRT levels among different groups of newborns
positive to NBS.
}
}`,`
@article{Barben2006,
title = {A survey of newborn screening for cystic fibrosis in Europe},
author = {
Barben, Jürg and Southern, Kevin W. and Greaves, David A. and Heaf, Annick and
Dodge, Michael J.
},
year = 2006,
journal = {Journal of Cystic Fibrosis},
volume = 5,
number = 3,
pages = {143--148},
doi = {10.1016/j.jcf.2006.05.008},
url = {
https://www.cysticfibrosisjournal.com/article/S1569-1993(06)00073-7/fulltext
}
}`,`
@misc{cff2024newborn,
title = {Newborn Screening for CF},
author = {Cystic Fibrosis Foundation},
year = 2024,
url = {https://www.cff.org/intro-cf/newborn-screening-cf},
note = {Zugriff am 2. Dezember 2024}
}
`,`
@article{genes11040401,
title = {
The Impact of the CFTR Gene Discovery on Cystic Fibrosis Diagnosis,
Counseling, and Preventive Therapy
},
author = {Farrell, Philip M. and Rock, Michael J. and Baker, Mei W.},
year = 2020,
journal = {Genes},
volume = 11,
number = 4,
doi = {10.3390/genes11040401},
issn = {2073-4425},
url = {https://www.mdpi.com/2073-4425/11/4/401},
article-number = 401,
pubmedid = 32276344
}`,`
@article{farrell2020impact,
title = {The impact of the CFTR gene discovery on cystic fibrosis diagnosis, counseling, and preventive therapy},
author = {Farrell, Philip M and Rock, Michael J and Baker, Mei W},
year = 2020,
journal = {Genes},
publisher = {MDPI},
volume = 11,
number = 4,
pages = 401
}`,`
@article{REISMAN1988632,
title = {Role of conventional physiotherapy in cystic fibrosis},
author = {Reisman, John J. and Rivington-Law, Betty and Corey, Mary and Marcotte, Jacques and Wannamaker, Eleanor and Harcourt, Dawn and Levison, Henry},
year = 1988,
journal = {The Journal of Pediatrics},
volume = 113,
number = 4,
pages = {632--636},
doi = {https://doi.org/10.1016/S0022-3476(88)80370-6},
issn = {0022-3476},
url = {https://www.sciencedirect.com/science/article/pii/S0022347688803706}
}`,`
@article{Wainwright2015,
title = {Lumacaftor–ivacaftor in patients with cystic fibrosis homozygous for Phe508del CFTR},
author = {Wainwright, Claire E and Elborn, J Stuart and Ramsey, Bonnie W and Marigowda, Girish and Huang, Xinxin and Cipolli, Marco and Colombo, Carlo and Davies, Jane C and De Boeck, Kris and Flume, Patrick A and others},
year = 2015,
journal = {New England Journal of Medicine},
publisher = {Massachusetts Medical Society},
volume = 373,
number = 3,
pages = {220--231},
doi = {10.1056/NEJMoa1409547}
}`,`
@article{Geller658,
title = {Aerosol Antibiotics in Cystic Fibrosis},
author = {Geller, David E},
year = 2009,
journal = {Respiratory Care},
publisher = {Respiratory Care},
volume = 54,
number = 5,
pages = {658--670},
url = {https://rc.rcjournal.com/content/54/5/658},
ssn = {0020-1324},
eprint = {https://rc.rcjournal.com/content/54/5/658.full.pdf}
}`,`
@article{Tummler2016,
title = {Therapie der Mukoviszidose mit CFTR-Modulatoren},
author = {Tümmler, B.},
year = 2016,
journal = {Pneumologie},
publisher = {Georg Thieme Verlag KG},
volume = 70,
number = 3,
pages = {301--313},
doi = {10.1055/s-0042-100607},
issn = {0934-8387},
url = {https://www.thieme-connect.com/products/ejournals/pdf/10.1055/s-0042-100607.pdf}
}`,`
@misc{MukoTrikafta2024internet,
title = {Kaftrio (Trikafta) – Triple-Therapie für Mukoviszidose (CF)},
author = {Mukoviszidose e.V.},
year = 2024,
url = {https://www.muko.info/mukoviszidose/therapie-der-mukoviszidose/kaftrio-trikafta​},
note = {Zugriff am 07. August 2024}
}
`,`
@misc{muko2024therapie,
title = {Therapie der Mukoviszidose},
author = {Mukoviszidose e.V.},
year = 2024,
url = {https://www.muko.info/mukoviszidose/therapie-der-mukoviszidose},
note = {Zugriff am 7. August 2024}
}`,`
@article{Jia2023,
title = {Cystic Fibrosis Modulator Therapies},
author = {Jia, Shijing and Taylor-Cousar, Jennifer L.},
year = 2023,
journal = {Annual Review of Medicine},
volume = 74,
pages = {413--426},
doi = {10.1146/annurev-med-042921-021447},
url = {https://doi.org/10.1146/annurev-med-042921-021447}
}`,`
@article{Tuemmler2016,
title = {Therapie der Mukoviszidose mit CFTR-Modulatoren},
author = {Tümmler, Burkhard},
year = 2016,
journal = {Pneumologie},
volume = 70,
number = 5,
pages = {301--313},
doi = {10.1055/s-0042-100607},
url = {
https://www.thieme-connect.com/products/ejournals/html/10.1055/s-0042-100607
}
}`,`
@article{doihbjhb,
title = {New drugs in cystic fibrosis: what has changed in the last decade?},
author = {
Roda, Juliana and Pinto-Silva, Catarina and Silva, Iris A.I. and Maia, Carla and
Almeida, Susana and Ferreira, Ricardo and Oliveira, Guiomar
},
year = 2022,
journal = {Therapeutic Advances in Chronic Disease},
volume = 13,
pages = 20406223221098136,
doi = {10.1177/20406223221098136},
url = {https://doi.org/10.1177/20406223221098136},
note = {PMID: 35620188},
eprint = {https://doi.org/10.1177/20406223221098136}
}`,`
@misc{cff2024antibiotics,
title = {Managing CF: Antibiotics},
author = {Cystic Fibrosis Foundation},
year = 2024,
url = {https://www.cff.org/managing-cf/antibiotics},
note = {Zugriff am 7. August 2024}
}`,`
@misc{ema2024tobi,
title = {Tobi Podhaler: EPAR - Summary for the Public},
author = {European Medicines Agency (EMA)},
year = 2024,
url = {https://www.ema.europa.eu/en/medicines/human/EPAR/tobi-podhaler},
note = {Zugriff am 7. August 2024}
}`,`
@misc{muko2024pankreas,
title = {Pankreasinsuffizienz und Enzymsubstitution},
author = {Mukoviszidose e.V.},
year = 2024,
url = {
https://www.muko.info/mitwirken/arbeitskreise-und-arbeitsgemeinschaften/ak-ernaehrung/ernaehrungstherapie-bei-mukoviszidose/pankreasinsuffizienz-und-enzymsubstitution
},
note = {Zugriff am 7. August 2024}
}`,`
@article{hjbhjgj,
title = {Search-and-replace genome editing without double-strand breaks or donor DNA},
author = {Anzalone, Andrew V. and Randolph, Peyton B. and Davis, Jessie R. and Sousa, Alexander A. and Koblan, Luke W. and Levy, Jonathan M. and Chen, Peter J. and Wilson, Christopher and Newby, Gregory A. and Raguram, Aditya and Liu, David R.},
year = 2019,
journal = {Nature},
volume = 576,
number = 7785,
pages = {149--157},
doi = {10.1038/s41586-019-1711-4}
}
`,`
@article{ivpeoamldim2022,
title = {In vivo prime editing of a metabolic liver disease in mice},
author = {
Böck D, Rothgangl T, Villiger L, Schmidheini L, Matsushita M, Mathis N,
Ioannidi E, Rimann N, Grisch-Chan HM, Kreutzer S, Kontarakis Z, Kopf M, Thöny
B, Schwank G
},
year = 2022,
journal = {PupMed},
volume = 14,
number = 1,
pages = {eabl9238},
doi = {10.1126/scitranslmed.abl9238},
url = {https://pmc.ncbi.nlm.nih.gov/articles/PMC7614134/}
}`,`
@article{CasX_enzymes_comprise_a_distinct_family_of_RNA-guided_genome_editors,
title = {CasX enzymes comprise a distinct family of RNA-guided genome editors},
author = {Liu, Jun-Jie and Orlova, Natalia and Oakes, Benjamin L. and Ma, Enbo and Spinner, Hannah B. and Baney, Katherine L. M. and Chuck, Jonathan and Tan, Dan and Knott, Gavin J. and Harrington, Lucas B. and Al-Shayeb, Basem and Wagner, Alexander and Brötzmann, Julian and Staahl, Brett T. and Taylor, Kian L. and Desmarais, John and Nogales, Eva and Doudna, Jennifer A.},
year = 2019,
journal = {Nature},
volume = 566,
number = 7743,
pages = 218,
doi = {10.1038/s41586-019-0908-x}
}`,`
@article{Fanzor_is_a_eukaryotic_programmable_RNA-guided_endonuclease,
title = {Fanzor is a eukaryotic programmable RNA-guided endonuclease},
author = {Saito, Makoto and Xu, Peiyu and Faure, Guilhem and Maguire, Samantha and Kannan, Soumya and Altae-Tran, Han and Vo, Sam and Desimone, AnAn and Macrae, Rhiannon K. and Zhang, Feng},
year = 2023,
journal = {Nature},
volume = 620,
number = 7974,
pages = 660,
doi = {10.1038/s41586-023-06356-2}
}
`,`
@article{Ma2024,
title = {A Perspective of Lipid Nanoparticles for RNA Delivery},
author = {Ma, Yutian and Li, Shiyao and Lin, Xin and Chen, Yupeng},
year = 2024,
journal = {Exploration},
volume = 4,
number = 1,
pages = 20230147,
doi = {10.1002/EXP.20230147},
url = {https://onlinelibrary.wiley.com/doi/10.1002/EXP.20230147}
}`,`
@article{Sahay2021,
title = {Lipid nanoparticles for mRNA delivery},
author = {Sahay, Gaurav and Querbes, Jordan and Gupta, Amit K. and Stanton-Maxey, Benjamin Z. and Davis, Mark E. and Szoka, Frank C. and Anderson, Daniel G.},
year = 2021,
journal = {Nature Reviews Materials},
volume = 6,
pages = {1078--1094},
doi = {10.1038/s41578-021-00358-0},
url = {https://www.nature.com/articles/s41578-021-00358-0}
}
`,`
@article{NEARY2024812,
title = {
Nebulised delivery of RNA formulations to the lungs: From aerosol to cytosol
},
author = {Neary, Michael T. and Mulder, Lianne M. and Kowalski, Piotr S. and MacLoughlin, Ronan and Crean, Abina M. and Ryan, Katie B.},
year = 2024,
journal = {Journal of Controlled Release},
volume = 366,
pages = {812--833},
doi = {https://doi.org/10.1016/j.jconrel.2023.12.012},
issn = {0168-3659},
url = {https://www.sciencedirect.com/science/article/pii/S0168365923007964}
}`,`
@article{WANG2024105547,
title = {
The optimization strategies of LNP-mRNA formulations: Development and
challenges for further application
},
author = {Wang, Sizhen and Guo, Beibei and Wang, Huan and Yang, Feng},
year = 2024,
journal = {Journal of Drug Delivery Science and Technology},
volume = 95,
pages = 105547,
doi = {https://doi.org/10.1016/j.jddst.2024.105547},
issn = {1773-2247},
url = {https://www.sciencedirect.com/science/article/pii/S1773224724002156}
}`,`
@article{TAHA2022345,
title = {
Delivery of CRISPR-Cas tools for in vivo genome editing therapy: Trends and
challenges
},
author = {Taha, Eman A. and Lee, Joseph and Hotta, Akitsu},
year = 2022,
journal = {Journal of Controlled Release},
volume = 342,
pages = {345--361},
doi = {https://doi.org/10.1016/j.jconrel.2022.01.013},
issn = {0168-3659},
url = {https://www.sciencedirect.com/science/article/pii/S016836592200027X}
}`,`
@article{LOPRESTI2022819,
title = {
The replacement of helper lipids with charged alternatives in lipid
nanoparticles facilitates targeted mRNA delivery to the spleen and lungs
},
author = {
LoPresti, Samuel T. and Arral, Mariah L. and Chaudhary, Namit and Whitehead, Kathryn A.
},
year = 2022,
journal = {Journal of Controlled Release},
volume = 345,
pages = {819--831},
doi = {https://doi.org/10.1016/j.jconrel.2022.03.046},
issn = {0168-3659},
url = {https://www.sciencedirect.com/science/article/pii/S0168365922001808}
}`,`
@article{pharmaceutics15030772,
title = {
Recent Progress of Lipid Nanoparticles-Based Lipophilic Drug Delivery: Focus
on Surface Modifications
},
author = {
Seo, Yoseph and Lim, Hayeon and Park, Hyunjun and Yu, Jiyun and An, Jeongyun
and Yoo, Hah Young and Lee, Taek
},
year = 2023,
journal = {Pharmaceutics},
volume = 15,
number = 3,
doi = {10.3390/pharmaceutics15030772},
issn = {1999-4923},
url = {https://www.mdpi.com/1999-4923/15/3/772},
article-number = 772,
pubmedid = 36986633
}`,`
@article{YAMAMOTO2005373,
title = {
Surface-modified PLGA nanosphere with chitosan improved pulmonary delivery of
calcitonin by mucoadhesion and opening of the intercellular tight junctions
},
author = {
Yamamoto, Hiromitsu and Kuno, Yoshio and Sugimoto, Shohei and Takeuchi, Hirofumi and Kawashima, Yoshiaki
},
year = 2005,
journal = {Journal of Controlled Release},
volume = 102,
number = 2,
pages = {373--381},
doi = {https://doi.org/10.1016/j.jconrel.2004.10.010},
issn = {0168-3659},
url = {https://www.sciencedirect.com/science/article/pii/S0168365904004912}
}`,`
@article{Hashiba2024,
title = {
Overcoming thermostability challenges in mRNA-lipid nanoparticle systems with
piperidine-based ionizable lipids
},
author = {
Hashiba, Kazuki and Taguchi, Masamitsu and Sakamoto, Sachiko and Otsu, Ayaka and Maeda, Yoshiki and Ebe, Hirofumi and Okazaki, Arimichi and Harashima, Hideyoshi and Sato, Yusuke
},
year = 2024,
journal = {Communications Biology},
volume = 7,
pages = 556,
doi = {10.1038/s42003-024-06235-0},
url = {https://www.nature.com/articles/s42003-024-06235-0}
}`,`
@article{Schober2024,
title = {
A careful look at lipid nanoparticle characterization: analysis of benchmark
formulations for encapsulation of RNA cargo size gradient
},
author = {Schober, Gretchen B. and Story, Sandra and Arya, Dev P.},
year = 2024,
journal = {Scientific Reports},
volume = 14,
pages = 2403,
doi = {10.1038/s41598-024-52685-1},
url = {https://www.nature.com/articles/s41598-024-52685-1}
}`,`
@article{Cullis2017,
title = {Lipid Nanoparticle Systems for Enabling Gene Therapies},
author = {Cullis, Pieter R. },
year = 2017,
journal = {Molecular Therapy},
volume = 25,
number = 7,
pages = {1463--1466},
doi = {10.1016/j.ymthe.2017.03.027},
url = {
https://www.cell.com/molecular-therapy-family/molecular-therapy/fulltext/S1525-0016(17)30111-9
}
}`,`
@article{Kim2022,
title = {
Engineering Lipid Nanoparticles for Enhanced Intracellular Delivery of mRNA
through Inhalation
},
author = {
Kim, Jeonghwan and Jozic, Antony and Lin, Yuxin and Eygeris, Yulia and Bloom, Elissa and Tan, Xiaochen and Acosta, Christopher and MacDonald, Kelvin D. and Welsher, Kevin D. and Sahay, Gaurav
},
year = 2022,
journal = {Proceedings of the National Academy of Sciences},
volume = 119,
number = 36,
pages = {e2202539119},
doi = {10.1073/pnas.2202539119},
url = {https://www.pnas.org/doi/10.1073/pnas.2202539119}
}`,`
@article{Wang2023,
title = {
Preparation of selective organ-targeting (SORT) lipid nanoparticles (LNPs)
using multiple technical methods for tissue-specific mRNA delivery
},
author = {
Wang, Xu and Liu, Shuai and Sun, Yehui and Yu, Xueliang and Lee, Sang M. and Cheng, Qiang and Wei, Tuo and Gong, Junyu and Robinson, Joshua and Zhang, Di and Lian, Xizhen and Basak, Pratima and Siegwart, Daniel J.
},
year = 2023,
journal = {Nature Protocols},
volume = 18,
pages = {265--291},
doi = {10.1038/s41596-022-00755-x},
url = {https://doi.org/10.1038/s41596-022-00755-x}
}`,`
@article{Wei2023,
title = {
Lung SORT LNPs enable precise homology-directed repair mediated CRISPR/Cas
genome correction in cystic fibrosis models
},
author = {
Wei, Tuo and Sun, Yehui and Cheng, Qiang and Chatterjee, Sumanta and Traylor, Zachary and Johnson, Lindsay T. and Coquelin, Melissa L. and Wang, Jialu and Torres, Michael J. and Lian, Xizhen and Wang, Xu and Xiao, Yufen and Hodges, Craig A. and Siegwart, Daniel J.
},
year = 2023,
journal = {Nature Communications},
volume = 14,
pages = 7322,
doi = {10.1038/s41467-023-42948-2},
url = {https://doi.org/10.1038/s41467-023-42948-2}
}`,`
@article{ZIMMERMANN2022137,
title = {Spray drying siRNA-lipid nanoparticles for dry powder pulmonary delivery},
author = {
Zimmermann, Christoph M. and Baldassi, Domizia and Chan, Karen and Adams, Nathan B.P. and Neumann, Alina and Porras-Gonzalez, Diana Leidy and Wei, Xin and Kneidinger, Nikolaus and Stoleriu, Mircea Gabriel and Burgstaller, Gerald and Witzigmann, Dominik and Luciani, Paola and Merkel, Olivia M.
},
year = 2022,
journal = {Journal of Controlled Release},
volume = 351,
pages = {137--150},
doi = {https://doi.org/10.1016/j.jconrel.2022.09.021},
issn = {0168-3659},
url = {https://www.sciencedirect.com/science/article/pii/S0168365922006137},
keywords = {
Lipid nanoparticles, LNP, Onpattro®, RNA therapeutics, siRNA delivery, Spray
drying, Pulmonary delivery, Respiratory diseases, Human precision-cut lung
slices, Formulation screening
}
}`,`
@article{IWAWAKI2006709,
title = {
Analysis of the XBP1 splicing mechanism using endoplasmic reticulum
stress-indicators
},
author = {Iwawaki, Takao and Akai, Ryoko},
year = 2006,
journal = {Biochemical and Biophysical Research Communications},
volume = 350,
number = 3,
pages = {709--715},
doi = {https://doi.org/10.1016/j.bbrc.2006.09.100},
issn = {0006-291X},
url = {https://www.sciencedirect.com/science/article/pii/S0006291X06021553},
keywords = {ER stress, IRE1, Splicing, Unfolded protein response, XBP1}
}
`
]
import BibtexParser from "../components/makeSources";
export default function EduSources(){
return (
<div>
<BibtexParser bibtexSources={bibtexSources} special="edu" />
</div>
);
}
const bibtexSources = [
`@article{article,
author = {Aswegen, Ellie and Pendergast, Donna},
year = {2023},
month = {08},
pages = {1-15},
title = {The impact of interest: an emergent model of interest development in the early years},
volume = {193},
journal = {Early Child Development and Care},
doi = {10.1080/03004430.2023.2245575}
}`
]
\ No newline at end of file
import BibtexParser from "../components/makeSources";
export default function EngDelsources(){
return (
<div>
<BibtexParser bibtexSources={bibtexSources} start={30}/>
</div>
);
}
const bibtexSources = [
`
@article{TAHA2022345,
title = {Delivery of CRISPR-Cas tools for in vivo genome editing therapy: Trends and challenges},
author = {Eman A. Taha and Joseph Lee and Akitsu Hotta},
year = 2022,
journal = {Journal of Controlled Release},
volume = 342,
pages = {345--361},
doi = {https://doi.org/10.1016/j.jconrel.2022.01.013},
issn = {0168-3659},
url = {https://www.sciencedirect.com/science/article/pii/S016836592200027X},
keywords = {CRISPR-Cas, Delivery, AAV, Virus-like particle, Lipid nanoparticle, Gene therapy},
abstract = {The discovery of clustered regularly interspaced short palindromic repeats (CRISPR) genome editing technology opened the door to provide a versatile approach for treating multiple diseases. Promising results have been shown in numerous pre-clinical studies and clinical trials. However, a safe and effective method to deliver genome-editing components is still a key challenge for in vivo genome editing therapy. Adeno-associated virus (AAV) is one of the most commonly used vector systems to date, but immunogenicity against capsid, liver toxicity at high dose, and potential genotoxicity caused by off-target mutagenesis and genomic integration remain unsolved. Recently developed transient delivery systems, such as virus-like particle (VLP) and lipid nanoparticle (LNP), may solve some of the issues. This review summarizes existing in vivo delivery systems and possible solutions to overcome their limitations. Also, we highlight the ongoing clinical trials for in vivo genome editing therapy and recently developed genome editing tools for their potential applications.}
}
`,`
@article{verma_landscape_2023,
title = {The landscape for lipid-nanoparticle-based genomic medicines},
author = {Verma, Malvika and Ozer, Imran and Xie, Wen and Gallagher, Ryan and Teixeira, Alexandra and Choy, Michael},
year = 2023,
month = may,
journal = {Nature Reviews Drug Discovery},
volume = 22,
number = 5,
pages = {349--350},
doi = {10.1038/d41573-023-00002-2},
issn = {1474-1776, 1474-1784},
url = {https://www.nature.com/articles/d41573-023-00002-2},
urldate = {2024-09-16},
copyright = {https://www.springernature.com/gp/researchers/text-and-data-mining},
language = {en},
file = {Verma et al. - 2023 - The landscape for lipid-nanoparticle-based genomic.pdf:C\:\\Users\\Isabell\\Zotero\\storage\\ZESPW7JJ\\Verma et al. - 2023 - The landscape for lipid-nanoparticle-based genomic.pdf:application/pdf}
}
`,`
@article{taha_delivery_2022,
title = {Delivery of {CRISPR}-{Cas} tools for in vivo genome editing therapy: {Trends} and challenges},
shorttitle = {Delivery of {CRISPR}-{Cas} tools for in vivo genome editing therapy},
author = {Taha, Eman A. and Lee, Joseph and Hotta, Akitsu},
year = 2022,
month = feb,
journal = {Journal of Controlled Release},
volume = 342,
pages = {345--361},
doi = {10.1016/j.jconrel.2022.01.013},
issn = {01683659},
url = {https://linkinghub.elsevier.com/retrieve/pii/S016836592200027X},
urldate = {2024-09-16},
abstract = {The discovery of clustered regularly interspaced short palindromic repeats (CRISPR) genome editing technology opened the door to provide a versatile approach for treating multiple diseases. Promising results have been shown in numerous pre-clinical studies and clinical trials. However, a safe and effective method to deliver genome-editing components is still a key challenge for in vivo genome editing therapy. Adeno-associated virus (AAV) is one of the most commonly used vector systems to date, but immunogenicity against capsid, liver toxicity at high dose, and potential genotoxicity caused by off-target mutagenesis and genomic integration remain unsolved. Recently developed transient delivery systems, such as virus-like particle (VLP) and lipid nanoparticle (LNP), may solve some of the issues. This review summarizes existing in vivo delivery systems and possible solutions to overcome their limitations. Also, we highlight the ongoing clinical trials for in vivo genome editing therapy and recently developed genome editing tools for their potential applications.},
language = {en}
}
`,`
@manual{cayman_chemical_lipidlaunch_protocol,
title = {LipidLaunch™ LNP-102 Exploration Kit Protocol},
author = {{Cayman Chemical}},
year = 2024,
url = {https://cdn.caymanchem.com/cdn/insert/35425.pdf},
note = {Accessed: 2024-09-16}
}
`,`
@misc{corden_pharma_lnp_2024,
title = {LNP Formulation and Manufacturing},
author = {{Corden Pharma}},
year = 2024,
url = {https://cordenpharma.com/what-you-need/drug-products/support-services/lnp-formulation-manufacturing/},
note = {Accessed: 2024-09-18}
}
`,`
@article{wei_lung_2023,
title = {Lung {SORT} {LNPs} enable precise homology-directed repair mediated {CRISPR}/{Cas} genome correction in Cystic Fibrosis models},
author = {Wei, Tuo and Sun, Yehui and Cheng, Qiang and Chatterjee, Sumanta and Traylor, Zachary and Johnson, Lindsay T. and Coquelin, Melissa L. and Wang, Jialu and Torres, Michael J. and Lian, Xizhen and Wang, Xu and Xiao, Yufen and Hodges, Craig A. and Siegwart, Daniel J.},
year = 2023,
month = nov,
journal = {Nature Communications},
volume = 14,
number = 1,
pages = 7322,
doi = {10.1038/s41467-023-42948-2},
issn = {2041-1723},
url = {https://www.nature.com/articles/s41467-023-42948-2},
urldate = {2024-04-16},
copyright = {2023 The Author(s)},
note = {Publisher: Nature Publishing Group},
abstract = {Approximately 10\% of Cystic Fibrosis (CF) patients, particularly those with CF transmembrane conductance regulator (CFTR) gene nonsense mutations, lack effective treatments. The potential of gene correction therapy through delivery of the CRISPR/Cas system to CF-relevant organs/cells is hindered by the lack of efficient genome editor delivery carriers. Herein, we report improved Lung Selective Organ Targeting Lipid Nanoparticles (SORT LNPs) for efficient delivery of Cas9 mRNA, sgRNA, and donor ssDNA templates, enabling precise homology-directed repair-mediated gene correction in CF models. Optimized Lung SORT LNPs deliver mRNA to lung basal cells in Ai9 reporter mice. SORT LNP treatment successfully corrected the CFTR mutations in homozygous G542X mice and in patient-derived human bronchial epithelial cells with homozygous F508del mutations, leading to the restoration of CFTR protein expression and chloride transport function. This proof-of-concept study will contribute to accelerating the clinical development of mRNA LNPs for CF treatment through CRISPR/Cas gene correction.},
language = {en},
keywords = {Biomedical engineering, CRISPR-Cas9 genome editing, Gene delivery}
}
`,`
@article{IBRAHIM2022215,
title = {Polyethylene glycol (PEG): The nature, immunogenicity, and role in the hypersensitivity of PEGylated products},
author = {Mohamed Ibrahim and Eslam Ramadan and Nehal E. Elsadek and Sherif E. Emam and Taro Shimizu and Hidenori Ando and Yu Ishima and Omar Helmy Elgarhy and Hatem A. Sarhan and Amal K. Hussein and Tatsuhiro Ishida},
year = 2022,
journal = {Journal of Controlled Release},
volume = 351,
pages = {215--230},
doi = {https://doi.org/10.1016/j.jconrel.2022.09.031},
issn = {0168-3659},
url = {https://www.sciencedirect.com/science/article/pii/S0168365922006265},
keywords = {Polyethylene glycol (PEG), anti-PEG antibodies, Hypersensitivity, COVID-19 mRNA vaccines, complement activation-related pseudoallergy (CARPA)},
abstract = {Polyethylene glycol (PEG) is a versatile polymer that is widely used as an additive in foods and cosmetics, and as a carrier in PEGylated therapeutics. Even though PEG is thought to be less immunogenic, or perhaps even non-immunogenic, with a variety of physicochemical properties, there is mounting evidence that PEG causes immunogenic responses when conjugated with other materials such as proteins and nanocarriers. Under these conditions, PEG with other materials can result in the production of anti-PEG antibodies after administration. The antibodies that are induced seem to have a deleterious impact on the therapeutic efficacy of subsequently administered PEGylated formulations. In addition, hypersensitivity to PEGylated formulations could be a significant barrier to the utility of PEGylated products. Several reports have linked the presence of anti-PEG antibodies to incidences of complement activation-related pseudoallergy (CARPA) following the administration of PEGylated formulations. The use of COVID-19 mRNA vaccines, which are composed mainly of PEGylated lipid nanoparticles (LNPs), has recently gained wide acceptance, although many cases of post-vaccination hypersensitivity have been documented. Therefore, our review focuses not only on the importance of PEGs and its great role in improving the therapeutic efficacy of various medications, but also on the hypersensitivity reactions attributed to the use of PEGylated products that include PEG-based mRNA COVID-19 vaccines.}
}
`,`
@article{ZIMMERMANN2022137,
title = {Spray drying siRNA-lipid nanoparticles for dry powder pulmonary delivery},
author = {Christoph M. Zimmermann and Domizia Baldassi and Karen Chan and Nathan B.P. Adams and Alina Neumann and Diana Leidy Porras-Gonzalez and Xin Wei and Nikolaus Kneidinger and Mircea Gabriel Stoleriu and Gerald Burgstaller and Dominik Witzigmann and Paola Luciani and Olivia M. Merkel},
year = 2022,
journal = {Journal of Controlled Release},
volume = 351,
pages = {137--150},
doi = {https://doi.org/10.1016/j.jconrel.2022.09.021},
issn = {0168-3659},
url = {https://www.sciencedirect.com/science/article/pii/S0168365922006137},
keywords = {Lipid nanoparticles, LNP, Onpattro®, RNA therapeutics, siRNA delivery, Spray drying, Pulmonary delivery, Respiratory diseases, Human precision-cut lung slices, Formulation screening},
abstract = {While all the siRNA drugs on the market target the liver, the lungs offer a variety of currently undruggable targets which could potentially be treated with RNA therapeutics. Hence, local, pulmonary delivery of RNA nanoparticles could finally enable delivery beyond the liver. The administration of RNA drugs via dry powder inhalers offers many advantages related to physical, chemical and microbial stability of RNA and nanosuspensions. The present study was therefore designed to test the feasibility of engineering spray dried lipid nanoparticle (LNP) powders. Spray drying was performed using 5% lactose solution (m/V), and the targets were set to obtain nanoparticle sizes after redispersion of spray-dried powders around 150 nm, a residual moisture level below 5%, and RNA loss below 15% at maintained RNA bioactivity. The LNPs consisted of an ionizable cationic lipid which is a sulfur-containing analog of DLin-MC3-DMA, a helper lipid, cholesterol, and PEG-DMG encapsulating siRNA. Prior to the spray drying, the latter process was simulated with a novel dual emission fluorescence spectroscopy method to preselect the highest possible drying temperature and excipient solution maintaining LNP integrity and stability. Through characterization of physicochemical and aerodynamic properties of the spray dried powders, administration criteria for delivery to the lower respiratory tract were fulfilled. Spray dried LNPs penetrated the lung mucus layer and maintained bioactivity for >90% protein downregulation with a confirmed safety profile in a lung adenocarcinoma cell line. Additionally, the spray dried LNPs successfully achieved up to 50% gene silencing of the house keeping gene GAPDH in ex vivo human precision-cut lung slices at without increasing cytokine levels. This study verifies the successful spray drying procedure of LNP-siRNA systems maintaining their integrity and mediating strong gene silencing efficiency on mRNA and protein levels both in vitro and ex vivo. The successful spray drying procedure of LNP-siRNA formulations in 5% lactose solution creates a novel siRNA-based therapy option to target respiratory diseases such as lung cancer, asthma, COPD, Cystic Fibrosis and viral infections.}
}
`,`
@article{jiang_combinatorial_2024,
title = {Combinatorial development of nebulized {mRNA} delivery formulations for the lungs},
author = {Jiang, Allen Y. and Witten, Jacob and Raji, Idris O. and Eweje, Feyisayo and MacIsaac, Corina and Meng, Sabrina and Oladimeji, Favour A. and Hu, Yizong and Manan, Rajith S. and Langer, Robert and Anderson, Daniel G.},
year = 2024,
month = mar,
journal = {Nature Nanotechnology},
volume = 19,
number = 3,
pages = {364--375},
doi = {10.1038/s41565-023-01548-3},
issn = {1748-3387, 1748-3395},
url = {https://www.nature.com/articles/s41565-023-01548-3},
urldate = {2024-09-10},
language = {en}
}
`,`
@article{vila-gonzalez_vitro_2024,
title = {In vitro platform to model the function of ionocytes in the human airway epithelium},
author = {Vilà-González, Marta and Pinte, Laetitia and Fradique, Ricardo and Causa, Erika and Kool, Heleen and Rodrat, Mayuree and Morell, Carola Maria and Al-Thani, Maha and Porter, Linsey and Guo, Wenrui and Maeshima, Ruhina and Hart, Stephen L. and McCaughan, Frank and Granata, Alessandra and Sheppard, David N. and Floto, R. Andres and Rawlins, Emma L. and Cicuta, Pietro and Vallier, Ludovic},
year = 2024,
month = apr,
journal = {Respiratory Research},
volume = 25,
number = 1,
pages = 180,
doi = {10.1186/s12931-024-02800-7},
issn = {1465-993X},
url = {https://respiratory-research.biomedcentral.com/articles/10.1186/s12931-024-02800-7},
urldate = {2024-09-10},
abstract = {
Background Pulmonary ionocytes have been identified in the airway epithelium as a small population of ion transporting cells expressing high levels of CFTR ( Cystic Fibrosis transmembrane conductance regulator), the gene mutated in Cystic Fibrosis. By providing an infinite source of airway epithelial cells (AECs), the use of human induced pluripotent stem cells (hiPSCs) could overcome some challenges of studying ionocytes. However, the production of AEC epithelia containing ionocytes from hiPSCs has proven difficult. Here, we present a platform to produce hiPSCderived AECs (hiPSC-AECs) including ionocytes and investigate their role in the airway epithelium.
Methods hiPSCs were differentiated into lung progenitors, which were expanded as 3D organoids and matured by air-liquid interface culture as polarised hiPSC-AEC epithelia. Using CRISPR/Cas9 technology, we generated a hiPSCs knockout (KO) for FOXI1, a transcription factor that is essential for ionocyte specification. Differences between FOXI1 KO hiPSC-AECs and their wild-type (WT) isogenic controls were investigated by assessing gene and protein expression, epithelial composition, cilia coverage and motility, pH and transepithelial barrier properties.
Results Mature hiPSC-AEC epithelia contained basal cells, secretory cells, ciliated cells with motile cilia, pulmonary neuroendocrine cells (PNECs) and ionocytes. There was no difference between FOXI1 WT and KO hiPSCs in terms of their capacity to differentiate into airway progenitors. However, FOXI1 KO led to mature hiPSC-AEC epithelia without ionocytes with reduced capacity to produce ciliated cells.
Conclusion Our results suggest that ionocytes could have role beyond transepithelial ion transport by regulating epithelial properties and homeostasis in the airway epithelium.
},
language = {en}
}
`
]
\ No newline at end of file
import BibtexParser from "../components/makeSources";
export default function EngNicksources(){
return (
<div>
<BibtexParser bibtexSources={bibtexSources} start={24}/>
</div>
);
}
const bibtexSources = [
`
@article{Saito_Xu_Faure_Maguire_Kannan_Altae-Tran_Vo_Desimone_Macrae_Zhang_2023,
title = {Fanzor is a eukaryotic programmable RNA-guided endonuclease},
author = {Saito, Makoto and Xu, Peiyu and Faure, Guilhem and Maguire, Samantha and Kannan, Soumya and Altae-Tran, Han and Vo, Sam and Desimone, AnAn and Macrae, Rhiannon K. and Zhang, Feng},
year = 2023,
month = aug,
journal = {Nature},
publisher = {Nature Publishing Group},
volume = 620,
number = 7974,
pages = {660–668},
doi = {10.1038/s41586-023-06356-2},
issn = {1476-4687},
rights = {2023 The Author(s)},
abstractnote = {RNA-guided systems, which use complementarity between a guide RNA and target nucleic acid sequences for recognition of genetic elements, have a central role in biological processes in both prokaryotes and eukaryotes. For example, the prokaryotic CRISPR–Cas systems provide adaptive immunity for bacteria and archaea against foreign genetic elements. Cas effectors such as Cas9 and Cas12 perform guide-RNA-dependent DNA cleavage1. Although a few eukaryotic RNA-guided systems have been studied, including RNA interference2 and ribosomal RNA modification3, it remains unclear whether eukaryotes have RNA-guided endonucleases. Recently, a new class of prokaryotic RNA-guided systems (termed OMEGA) was reported4,5. The OMEGA effector TnpB is the putative ancestor of Cas12 and has RNA-guided endonuclease activity4,6. TnpB may also be the ancestor of the eukaryotic transposon-encoded Fanzor (Fz) proteins4,7, raising the possibility that eukaryotes are also equipped with CRISPR–Cas or OMEGA-like programmable RNA-guided endonucleases. Here we report the biochemical characterization of Fz, showing that it is an RNA-guided DNA endonuclease. We also show that Fz can be reprogrammed for human genome engineering applications. Finally, we resolve the structure of Spizellomyces punctatus Fz at 2.7 Å using cryogenic electron microscopy, showing the conservation of core regions among Fz, TnpB and Cas12, despite diverse cognate RNA structures. Our results show that Fz is a eukaryotic OMEGA system, demonstrating that RNA-guided endonucleases are present in all three domains of life.},
language = {en}
}
`,`
@article{ijms25031622,
title = {An Efficient Expression and Purification Protocol for SpCas9 Nuclease and Evaluation of Different Delivery Methods of Ribonucleoprotein},
author = {Evmenov, Konstantin and Pustogarov, Nikolay and Panteleev, Dmitri and Safin, Artur and Alkalaeva, Elena},
year = 2024,
journal = {International Journal of Molecular Sciences},
volume = 25,
number = 3,
doi = {10.3390/ijms25031622},
issn = {1422-0067},
url = {https://www.mdpi.com/1422-0067/25/3/1622},
article-number = 1622,
pubmedid = 38338898,
abstract = {The Clustered Regularly Interspaced Short Palindromic Repeats (CRISPR)-Cas9 system is a revolutionary tool for precise genome editing across various cell types. Ribonucleoproteins (RNPs), encompassing the Cas9 protein and guide RNA (gRNA), have emerged as a promising technique due to their increased specificity and reduced off-target effects. This method eliminates the need for plasmid DNA introduction, thereby preventing potential integration of foreign DNA into the target cell genome. Given the requirement for large quantities of highly purified protein in various Cas9 studies, we present an efficient and simple method for the preparation of recombinant Streptococcus pyogenes Cas9 (SpCas9) protein. This method leverages the Small Ubiquitin Like Modifier(SUMO) tag system, which includes metal-affinity chromatography followed by anion-exchange chromatography purification. Furthermore, we compare two methods of CRISPR-Cas9 system delivery into cells: transfection with plasmid DNA encoding the CRISPR-Cas9 system and RNP transfection with the Cas9-gRNA complex. We estimate the efficiency of genomic editing and protein lifespan post-transfection. Intriguingly, we found that RNP treatment of cells, even in the absence of a transfection system, is a relatively efficient method for RNP delivery into cell culture. This discovery is particularly promising as it can significantly reduce cytotoxicity, which is crucial for certain cell cultures such as induced pluripotent stem cells (iPSCs).}
}
`,`
@article{Hillary2023Review,
title = {A Review on the Mechanism and Applications of CRISPR/Cas9/Cas12/Cas13/Cas14 Proteins Utilized for Genome Engineering},
author = {Hillary, V. E. and Ceasar, S. A.},
year = 2023,
journal = {Molecular Biotechnology},
volume = 65,
pages = {311--325},
doi = {10.1007/s12033-022-00567-0}
}
`,`
@article{10.3389/fgeed.2024.1471720,
title = {Use of paired Cas9-NG nickase and truncated sgRNAs for single-nucleotide microbial genome editing},
author = {Jeong, Song Hee and Lee, Ho Joung and Lee, Sang Jun},
year = 2024,
journal = {Frontiers in Genome Editing},
volume = 6,
doi = {10.3389/fgeed.2024.1471720},
issn = {2673-3439},
url = {https://www.frontiersin.org/journals/genome-editing/articles/10.3389/fgeed.2024.1471720},
abstract = {<p>The paired nickases approach, which utilizes clustered regularly interspaced short palindromic repeats (CRISPR)-CRISPR-associated proteins (Cas) nickase and dual guide RNA, has the advantage of reducing off-target effects by being able to double the target sequence. In this study, our research utilized the Cas9-NG nickase variant to minimize PAM sequence constraints, enabling the generation of paired nicks at desired genomic loci. We performed a systematic investigation into the formation sites for double nicks and the design of donor DNA within a bacterial model system. Although we successfully identified the conditions necessary for the effective formation of double nicks <italic>in vivo</italic>, achieving single-nucleotide level editing directly at the target sites in the genome proved challenging. Nonetheless, our experiments revealed that efficient editing at the single-nucleotide level was achievable on target DNA sequences that are hybridized with 5′-end-truncated dual single-guide RNAs (sgRNAs). Our findings contribute to a deeper understanding of the paired nickases approach, offering a single-mismatch intolerance design strategy for accurate nucleotide editing. This strategy not only enhances the precision of genome editing but also marks a significant step forward in the development of nickase-derived genome editing technologies.</p>}
}
`,`
@article{Badon2024CRISPR,
title = {Recent application of CRISPR-Cas12 and OMEGA system for genome editing},
author = {Badon, Isabel Wen and Oh, Yeonsun and Kim, Ho-Joong and Lee, Seung Hwan},
year = 2024,
month = {January},
journal = {Molecular Therapy},
volume = 32,
number = 1,
pages = {32--43},
doi = {10.1016/j.ymthe.2023.11.013},
url = {https://www.cell.com/molecular-therapy/fulltext/S1525-0016(23)00113-2}
}
`,`
@article{Kim2024Nicking,
title = {Utilization of nicking properties of CRISPR-Cas12a effector for genome editing},
author = {Kim, Chan Hyoung and Lee, Wi-jae and Oh, Yeonsun and Lee, Youngjeon and Lee, Hyomin K. and Seong, Jung Bae and Lim, Kyung-Seob and Park, Sang Je and Huh, Jae-Won and Kim, Young-Hyun and Kim, Kyoung Mi and Hur, Junho K. and Lee, Seung Hwan},
year = 2024,
month = {February},
journal = {Scientific Reports},
volume = 14,
pages = 3352,
doi = {10.1038/s41598-024-53648-2},
issn = {2045-2322},
url = {https://www.ncbi.nlm.nih.gov/pmc/articles/PMC10858195},
pmid = 38336977,
pmcid = {PMC10858195}
}
`
]
\ No newline at end of file
import BibtexParser from "../components/makeSources";
export default function EngPEsystems(){
return (
<div>
<BibtexParser bibtexSources={bibtexSources} start={6}/>
</div>
);
}
const bibtexSources = [ /* 1-> 6 */
`@article{Anzalone_Randolph_Davis_Sousa_Koblan_Levy_Chen_Wilson_Newby_Raguram_2019,
title = {Search-and-replace genome editing without double-strand breaks or donor DNA},
author = {Anzalone, Andrew V. and Randolph, Peyton B. and Davis, Jessie R. and Sousa, Alexander A. and Koblan, Luke W. and Levy, Jonathan M. and Chen, Peter J. and Wilson, Christopher and Newby, Gregory A. and Raguram, Aditya and Liu, David R.},
year = 2019,
month = dec,
journal = {Nature},
publisher = {Nature Publishing Group},
volume = 576,
number = 7785,
pages = {149–157},
doi = {10.1038/s41586-019-1711-4},
issn = {1476-4687},
rights = {2019 The Author(s), under exclusive licence to Springer Nature Limited},
abstractnote = {Most genetic variants that contribute to disease1 are challenging to correct efficiently and without excess byproducts2–5. Here we describe prime editing, a versatile and precise genome editing method that directly writes new genetic information into a specified DNA site using a catalytically impaired Cas9 endonuclease fused to an engineered reverse transcriptase, programmed with a prime editing guide RNA (pegRNA) that both specifies the target site and encodes the desired edit. We performed more than 175 edits in human cells, including targeted insertions, deletions, and all 12 types of point mutation, without requiring double-strand breaks or donor DNA templates. We used prime editing in human cells to correct, efficiently and with few byproducts, the primary genetic causes of sickle cell disease (requiring a transversion in HBB) and Tay–Sachs disease (requiring a deletion in HEXA); to install a protective transversion in PRNP; and to insert various tags and epitopes precisely into target loci. Four human cell lines and primary post-mitotic mouse cortical neurons support prime editing with varying efficiencies. Prime editing shows higher or similar efficiency and fewer byproducts than homology-directed repair, has complementary strengths and weaknesses compared to base editing, and induces much lower off-target editing than Cas9 nuclease at known Cas9 off-target sites. Prime editing substantially expands the scope and capabilities of genome editing, and in principle could correct up to 89% of known genetic variants associated with human diseases.},
language = {en}
}`,
/* 2 -> 7 Ehemals 7, jetzt 13 */
`@article{Jinek_Chylinski_Fonfara_Hauer_Doudna_Charpentier_2012,
title = {A programmable dual RNA-guided DNA endonuclease in adaptive bacterial immunity},
author = {Jinek, Martin and Chylinski, Krzysztof and Fonfara, Ines and Hauer, Michael and Doudna, Jennifer A. and Charpentier, Emmanuelle},
year = 2012,
month = aug,
journal = {Science},
volume = 337,
number = 6096,
pages = {816–821},
doi = {10.1126/science.1225829},
issn = {0036-8075},
abstractnote = {CRISPR/Cas systems provide bacteria and archaea with adaptive immunity against viruses and plasmids by using crRNAs to guide the silencing of invading nucleic acids. We show here that in a subset of these systems, the mature crRNA base-paired to trans-activating tracrRNA forms a two-RNA structure that directs the CRISPR-associated protein Cas9 to introduce double-stranded (ds) breaks in target DNA. At sites complementary to the crRNA-guide sequence, the Cas9 HNH nuclease domain cleaves the complementary strand while the Cas9 RuvC-like domain cleaves the non-complementary strand. The dual-tracrRNA:crRNA, when engineered as a single RNA chimera, also directs sequence-specific Cas9 dsDNA cleavage. Our study reveals a family of endonucleases that use dual-RNAs for site-specific DNA cleavage and highlights the potential to exploit the system for RNA-programmable genome editing., A two-RNA structure directs an endonuclease to cleave target DNA.}
}`,
/* 3 -> 8 Ehemals 8, jetzt 14 */
`@article{Gao_Ravendran_Mikkelsen_Haldrup_Cai_Ding_Paludan_Thomsen_Mikkelsen_Bak_2022,
title = {A truncated reverse transcriptase enhances prime editing by split AAV vectors},
author = {Gao, Zongliang and Ravendran, Sujan and Mikkelsen, Nanna S. and Haldrup, Jakob and Cai, Huiqiang and Ding, Xiangning and Paludan, Søren R. and Thomsen, Martin K. and Mikkelsen, Jacob Giehm and Bak, Rasmus O.},
year = 2022,
month = sep,
journal = {Molecular Therapy},
publisher = {Elsevier},
volume = 30,
number = 9,
pages = {2942–2951},
doi = {10.1016/j.ymthe.2022.07.001},
issn = {1525-0016, 1525-0024},
language = {English}
}`,
/* 4 -> 9 Hemelas 9, jetzt 15 */
`@article{Chen_Hussmann_Yan_Knipping_Ravisankar_Chen_Chen_Nelson_Newby_Sahin_2021,
title = {Enhanced prime editing systems by manipulating cellular determinants of editing outcomes},
author = {Chen, Peter J. and Hussmann, Jeffrey A. and Yan, Jun and Knipping, Friederike and Ravisankar, Purnima and Chen, Pin-Fang and Chen, Cidi and Nelson, James W. and Newby, Gregory A. and Sahin, Mustafa and Osborn, Mark J. and Weissman, Jonathan S. and Adamson, Britt and Liu, David R.},
year = 2021,
month = oct,
journal = {Cell},
volume = 184,
number = 22,
pages = {5635--5652},
doi = {10.1016/j.cell.2021.09.018},
issn = {0092-8674},
abstractnote = {While prime editing enables precise sequence changes in DNA, cellular determinants of prime editing remain poorly understood. Using pooled CRISPRi screens, we discovered that DNA mismatch repair (MMR) impedes prime editing and promotes undesired indel byproducts. We developed PE4 and PE5 prime editing systems in which transient expression of an engineered MMR-inhibiting protein enhances the efficiency of substitution, small insertion, and small deletion prime edits by an average 7.7-fold and 2.0-fold compared to PE2 and PE3 systems, respectively, while improving edit/indel ratios by 3.4-fold in MMR-proficient cell types. Strategic installation of silent mutations near the intended edit can enhance prime editing outcomes by evading MMR. Prime editor protein optimization resulted in a PEmax architecture that enhances editing efficacy by 2.8-fold on average in HeLa cells. These findings enrich our understanding of prime editing and establish prime editing systems that show substantial improvement across 191 edits in seven mammalian cell types.}
}`,
/* 5 -> 10 Ehemals 10, jetzt 16 */
`@article{Tomer_Buermeyer_Nguyen_Liskay_2002,
title = {Contribution of Human Mlh1 and Pms2 ATPase Activities to DNA Mismatch Repair},
author = {Tomer, Guy and Buermeyer, Andrew B. and Nguyen, Megan M. and Liskay, R. Michael},
year = 2002,
month = jun,
journal = {Journal of Biological Chemistry},
volume = 277,
number = 24,
pages = {21801–21809},
doi = {10.1074/jbc.M111342200},
issn = {0021-9258},
abstractnote = {MutLα, a heterodimer composed of Mlh1 and Pms2, is the major MutL activity in mammalian DNA mismatch repair. Highly conserved motifs in the N termini of both subunits predict that the protein is an ATPase. To study the significance of these motifs to mismatch repair, we have expressed in insect cells wild type human MutLα and forms altered in conserved glutamic acid residues, predicted to catalyze ATP hydrolysis of Mlh1, Pms2, or both. Using an in vitro assay, we showed that MutLα proteins altered in either glutamic acid residue were each partially defective in mismatch repair, whereas the double mutant showed no detectable mismatch repair. Neither strand specificity nor directionality of repair was affected in the single mutant proteins. Limited proteolysis studies of MutLα demonstrated that both Mlh1 and Pms2 N-terminal domains undergo ATP-induced conformational changes, but the extent of the conformational change for Mlh1 was more apparent than for Pms2. Furthermore, Mlh1 was protected at lower ATP concentrations than Pms2, suggesting Mlh1 binds ATP with higher affinity. These findings imply that ATP hydrolysis is required for MutLα activity in mismatch repair and that this activity is associated with differential conformational changes in Mlh1 and Pms2.}
}`,
/* 6 -> 11 Ehemals 11, jetzt 17 */
`@article{Wu_Corbett_Berland_2009,
title = {The Intracellular Mobility of Nuclear Import Receptors and NLS Cargoes},
author = {Wu, Jianrong and Corbett, Anita H. and Berland, Keith M.},
year = 2009,
month = may,
journal = {Biophysical Journal},
volume = 96,
number = 9,
pages = {3840–3849},
doi = {10.1016/j.bpj.2009.01.050},
issn = {0006-3495},
abstractnote = {We have investigated classical nuclear localization sequence (NLS) mediated protein trafficking by measuring biomolecular dynamics within living cells using two-photon fluorescence correlation spectroscopy. By directly observing the behavior of specific molecules in their native cellular environment, it is possible to uncover functional details that are not apparent from traditional biochemical investigations or functional assays. We show that the intracellular mobility of NLS cargoes and their import receptor proteins, karyopherin-α and karyopherin-β, can be robustly measured and that quantitative comparison of intracellular diffusion coefficients provides new insights into nuclear transport mechanisms. Import cargo complexes are assembled throughout the cytoplasm, and their diffusion is slower than predicted by molecular weight due to specific interactions. Analysis of NLS cargo diffusion in the cytoplasm indicates that these interactions are likely disrupted by NLS cargo binding. Our results suggest that delivery of import receptors and NLS cargoes to nuclear pores may complement selective translocation through the pores as a functional mechanism for regulating transport of proteins into the nucleus.}
}`,
/* 7 -> 12 Ehemals 12, jetzt 18 */
`@article{Dang_Lee_1988,
title = {Identification of the human c-myc protein nuclear translocation signal},
author = {Dang, C.V. and Lee, W.M.F.},
year = 1988,
journal = {Molecular and Cellular Biology},
volume = 8,
number = 10,
pages = {4048–4054},
doi = {10.1128/MCB.8.10.4048}
}`
,
/* 8 -> 13 */
`@article{Spencer_Zhang_2017,
title = {Deep mutational scanning of S. pyogenes Cas9 reveals important functional domains},
author = {Spencer, J.M. and Zhang, X.},
year = 2017,
journal = {Scientific Reports},
volume = 7,
number = 1,
doi = {10.1038/s41598-017-17081-y},
abstractnote = {RNA-guided endonucleases (RGENs) have invigorated the field of site-specific nucleases. The success of Streptococcus pyogenes Cas9 (SpCas9) has led to the discovery of several other CRISPR-Associated RGENs. As more RGENs become available, it will be necessary to refine their activity before they can be translated into the clinic. With this in mind, we sought to demonstrate how deep mutational scanning (DMS) could provide details about important functional regions in SpCas9 and speed engineering efforts. Consequently, we developed a nuclease screening platform which could distinguish active Cas9 mutants. We screened a library of 1.9 × 107 with over 8500 possible non-synonymous mutations and inferred the effects of each mutation using DMS. We demonstrate that the RuvC and HNH domains are the least tolerant regions to mutation. In contrast, the Rec2 and PI domains tolerate mutation better than other regions. The mutation information defined in this work provides a foundation for further SpCas9 engineering. Together, our results demonstrate how DMS can be a powerful tool to uncover features important to RGEN function. Application of this approach to emerging RGENs should enhance their engineering and optimization for therapeutic and other applications. © 2017 The Author(s).}
}`,
/* 9 -> 14 */
`@article{Doman_Pandey_Neugebauer_An_Davis_Randolph_McElroy_Gao_Raguram_Richter_2023,
title = {Phage-assisted evolution and protein engineering yield compact, efficient prime editors},
author = {Doman, Jordan L. and Pandey, Smriti and Neugebauer, Monica E. and An, Meirui and Davis, Jessie R. and Randolph, Peyton B. and McElroy, Amber and Gao, Xin D. and Raguram, Aditya and Richter, Michelle F. and Everette, Kelcee A. and Banskota, Samagya and Tian, Kathryn and Tao, Y. Allen and Tolar, Jakub and Osborn, Mark J. and Liu, David R.},
year = 2023,
month = aug,
journal = {Cell},
publisher = {Elsevier},
volume = 186,
number = 18,
pages = {3983--4002},
doi = {10.1016/j.cell.2023.07.039},
issn = {0092-8674, 1097-4172},
language = {English}
}`, /* 10 -> 15 */
`@article{Sousa_Hemez_Lei_Traore_Kulhankova_Newby_Doman_Oye_Pandey_Karp_2024,
title = {Systematic optimization of prime editing for the efficient functional correction of CFTR F508del in human airway epithelial cells},
author = {Sousa, Alexander A. and Hemez, Colin and Lei, Lei and Traore, Soumba and Kulhankova, Katarina and Newby, Gregory A. and Doman, Jordan L. and Oye, Keyede and Pandey, Smriti and Karp, Philip H. and McCray, Paul B. and Liu, David R.},
year = 2024,
month = jul,
journal = {Nature Biomedical Engineering},
publisher = {Nature Publishing Group},
pages = {1–15},
doi = {10.1038/s41551-024-01233-3},
issn = {2157-846X},
rights = {2024 The Author(s)},
abstractnote = {Prime editing (PE) enables precise and versatile genome editing without requiring double-stranded DNA breaks. Here we describe the systematic optimization of PE systems to efficiently correct human Cystic Fibrosis (CF) transmembrane conductance regulator (CFTR) F508del, a three-nucleotide deletion that is the predominant cause of CF. By combining six efficiency optimizations for PE—engineered PE guide RNAs, the PEmax architecture, the transient expression of a dominant-negative mismatch repair protein, strategic silent edits, PE6 variants and proximal ‘dead’ single-guide RNAs—we increased correction efficiencies for CFTR F508del from less than 0.5% in HEK293T cells to 58% in immortalized bronchial epithelial cells (a 140-fold improvement) and to 25% in patient-derived airway epithelial cells. The optimizations also resulted in minimal off-target editing, in edit-to-indel ratios 3.5-fold greater than those achieved by nuclease-mediated homology-directed repair, and in the functional restoration of CFTR ion channels to over 50% of wild-type levels (similar to those achieved via combination treatment with elexacaftor, tezacaftor and ivacaftor) in primary airway cells. Our findings support the feasibility of a durable one-time treatment for CF.},
language = {en}
}`,
/* 11 -> 16*/
`@article{Yan_Oyler-Castrillo_Ravisankar_Ward_Levesque_Jing_Simpson_Zhao_Li_Yan_2024,
title = {Improving prime editing with an endogenous small RNA-binding protein},
author = {Yan, Jun and Oyler-Castrillo, Paul and Ravisankar, Purnima and Ward, Carl C. and Levesque, Sébastien and Jing, Yangwode and Simpson, Danny and Zhao, Anqi and Li, Hui and Yan, Weihao and Goudy, Laine and Schmidt, Ralf and Solley, Sabrina C. and Gilbert, Luke A. and Chan, Michelle M. and Bauer, Daniel E. and Marson, Alexander and Parsons, Lance R. and Adamson, Britt},
year = 2024,
month = apr,
journal = {Nature},
volume = 628,
number = 8008,
pages = {639–647},
doi = {10.1038/s41586-024-07259-6},
issn = {0028-0836, 1476-4687},
abstractnote = {Abstract Prime editing enables the precise modification of genomes through reverse transcription of template sequences appended to the 3′ ends of CRISPR–Cas guide RNAs 1 . To identify cellular determinants of prime editing, we developed scalable prime editing reporters and performed genome-scale CRISPR-interference screens. From these screens, a single factor emerged as the strongest mediator of prime editing: the small RNA-binding exonuclease protection factor La. Further investigation revealed that La promotes prime editing across approaches (PE2, PE3, PE4 and PE5), edit types (substitutions, insertions and deletions), endogenous loci and cell types but has no consistent effect on genome-editing approaches that rely on standard, unextended guide RNAs. Previous work has shown that La binds polyuridine tracts at the 3′ ends of RNA polymerase III transcripts 2 . We found that La functionally interacts with the 3′ ends of polyuridylated prime editing guide RNAs (pegRNAs). Guided by these results, we developed a prime editor protein (PE7) fused to the RNA-binding, N-terminal domain of La. This editor improved prime editing with expressed pegRNAs and engineered pegRNAs (epegRNAs), as well as with synthetic pegRNAs optimized for La binding. Together, our results provide key insights into how prime editing components interact with the cellular environment and suggest general strategies for stabilizing exogenous small RNAs therein.},
language = {en}
}`,
/* 12 -> 17*/
`@article{Simon,
title = {PEAR, a flexible fluorescent reporter for the identification and enrichment of successfully prime edited cells},
author = {Simon, Dorottya Anna and Tálas, András and Kulcsár, Péter István and Biczók, Zsuzsanna and Krausz, Sarah Laura and Várady, György and Welker, Ervin},
year = 2022,
month = feb,
journal = {eLife},
publisher = {eLife Sciences Publications, Ltd},
volume = 11,
doi = {10.7554/eLife.69504},
issn = {2050-084X},
abstractnote = {Prime editing is a recently developed CRISPR/Cas9 based gene engineering tool that allows the introduction of short insertions, deletions, and substitutions into the genome. However, the efficiency of prime editing, which typically achieves editing rates of around 10%–30%, has not matched its versatility. Here, we introduce the prime editor activity reporter (PEAR), a sensitive fluorescent tool for identifying single cells with prime editing activity. PEAR has no background fluorescence and specifically indicates prime editing events. Its design provides apparently unlimited flexibility for sequence variation along the entire length of the spacer sequence, making it uniquely suited for systematic investigation of sequence features that influence prime editing activity. The use of PEAR as an enrichment marker for prime editing can increase the edited population by up to 84%, thus significantly improving the applicability of prime editing for basic research and biotechnological applications.},
editor = {Lapinaite, Audrone and Stainier, Didier YR and Hamilton, Jennifer R}
}`
]
\ No newline at end of file