Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
Bielefeld-CeBiTec
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
2024 Competition
Bielefeld-CeBiTec
Commits
c0a9d1e6
Commit
c0a9d1e6
authored
6 months ago
by
Liliana Sanfilippo
Browse files
Options
Downloads
Patches
Plain Diff
cit
parent
7cf3f06b
No related branches found
No related tags found
No related merge requests found
Pipeline
#445556
failed
6 months ago
Stage: build
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
code/cit.py
+18
-12
18 additions, 12 deletions
code/cit.py
code/output.txt
+102
-155
102 additions, 155 deletions
code/output.txt
src/contents/safety.tsx
+102
-155
102 additions, 155 deletions
src/contents/safety.tsx
with
222 additions
and
322 deletions
code/cit.py
+
18
−
12
View file @
c0a9d1e6
...
@@ -100,11 +100,15 @@ def main():
...
@@ -100,11 +100,15 @@ def main():
def
makeauthors
(
authors
,
out
):
def
makeauthors
(
authors
,
out
):
authors
=
authors
.
replace
(
"
and
"
,
"
|
"
)
authors
=
authors
.
replace
(
"
and
"
,
"
|
"
)
autlist
=
authors
.
split
(
"
|
"
)
autlist
=
authors
.
split
(
"
|
"
)
# Maximale Anzahl der anzuzeigenden Autoren
max_authors
=
6
for
i
,
a
in
enumerate
(
autlist
):
for
i
,
a
in
enumerate
(
autlist
):
try
:
try
:
first
=
None
first
=
None
last
=
None
last
=
None
name
=
None
name
=
None
if
'
,
'
in
a
:
if
'
,
'
in
a
:
s
=
a
.
split
(
"
,
"
)
s
=
a
.
split
(
"
,
"
)
if
len
(
s
)
>
1
:
if
len
(
s
)
>
1
:
...
@@ -122,22 +126,24 @@ def makeauthors(authors, out):
...
@@ -122,22 +126,24 @@ def makeauthors(authors, out):
first
=
s
[
0
]
first
=
s
[
0
]
first_sh
=
first
[
0
]
first_sh
=
first
[
0
]
last
=
s
[
1
]
last
=
s
[
1
]
name
=
last
+
"
,
"
+
first_sh
+
"
.
"
name
=
last
+
"
,
"
+
first_sh
+
"
.
"
else
:
else
:
# Falls es mehrere Vornamen gibt, sie in Initialen umwandeln
# Falls es mehrere Vornamen gibt, sie in Initialen umwandeln
leng
=
len
(
s
)
leng
=
len
(
s
)
last
=
s
[
leng
-
1
]
last
=
s
[
leng
-
1
]
first
=
'
.
'
.
join
([
n
[
0
]
for
n
in
s
[:
-
1
]])
+
'
.
'
# Nur Initialen der Vornamen
first
=
'
.
'
.
join
([
n
[
0
]
for
n
in
s
[:
-
1
]])
+
'
.
'
# Nur Initialen der Vornamen
name
=
last
+
"
,
"
+
first
name
=
last
+
"
,
"
+
first
#
Wenn es der letzte Autor ist, kein Semikolon am Ende
#
Schreibe den Namen in die Ausgabedatei
if
i
==
len
(
autlist
)
-
1
:
if
i
<
max_authors
:
out
.
write
(
"
\t
"
+
"
\t
"
+
"
<span property=
\"
schema:Name
\"
>
"
+
name
+
"
</span>
"
+
"
\n
"
)
out
.
write
(
"
\t
"
+
"
\t
"
+
"
<span property=
\"
schema:Name
\"
>
"
+
name
+
"
</span>
"
+
"
\n
"
)
else
:
# Wenn wir mehr als 6 Autoren haben, schreibe "et al." nach dem 6. Autor
out
.
write
(
"
\t
"
+
"
\t
"
+
"
<span property=
\"
schema:Name
\"
>
"
+
name
+
"
</span>,
"
+
"
\n
"
)
if
i
==
max_authors
:
out
.
write
(
"
\t
"
+
"
\t
"
+
"
<span property=
\"
schema:Name
\"
> et al.</span>
"
+
"
\n
"
)
break
# Stoppe die Schleife, nachdem "et al." hinzugefügt wurde
except
Exception
as
e
:
except
Exception
as
e
:
print
(
f
"
An unexpected error occurred:
{
e
}
see
"
+
a
)
print
(
f
"
An unexpected error occurred:
{
e
}
see
"
+
a
)
def
articleHTML
(
dictio
,
x
,
out
):
def
articleHTML
(
dictio
,
x
,
out
):
...
@@ -164,10 +170,10 @@ def articleHTML(dictio, x, out):
...
@@ -164,10 +170,10 @@ def articleHTML(dictio, x, out):
pag
=
re
.
split
(
'
--|-|–
'
,
pages
)
pag
=
re
.
split
(
'
--|-|–
'
,
pages
)
begin
=
pag
[
0
].
strip
()
begin
=
pag
[
0
].
strip
()
end
=
pag
[
1
].
strip
()
end
=
pag
[
1
].
strip
()
out
.
write
(
"
\t
"
+
"
<span property=
\"
schema:pageBegin
\"
>
"
+
begin
+
"
</span>-<span property=
\"
schema:pageEnd
\"
>
"
+
end
+
"
</span>
"
+
"
\n
"
)
out
.
write
(
"
\t
"
+
"
<span property=
\"
schema:pageBegin
\"
>
"
+
begin
+
"
</span>-<span property=
\"
schema:pageEnd
\"
>
"
+
end
+
"
</span>
"
+
"
\n
"
)
else
:
else
:
if
re
.
match
(
r
'
^\d+(-\d+)?$
'
,
pages
):
# Check for typical numeric page ranges
if
re
.
match
(
r
'
^\d+(-\d+)?$
'
,
pages
):
# Check for typical numeric page ranges
out
.
write
(
"
\t
"
+
"
<span property=
\"
schema:pageBegin
\"
>
"
+
pages
+
"
</span>
"
+
"
\n
"
)
out
.
write
(
"
\t
"
+
"
<span property=
\"
schema:pageBegin
\"
>
"
+
pages
+
"
</span>
"
+
"
\n
"
)
else
:
else
:
# Seitenangabe ist nicht numerisch, als fehlend behandeln
# Seitenangabe ist nicht numerisch, als fehlend behandeln
print
(
f
"
Non-numeric page information detected (
'
{
pages
}
'
). Treating as missing.
"
)
print
(
f
"
Non-numeric page information detected (
'
{
pages
}
'
). Treating as missing.
"
)
...
@@ -181,7 +187,7 @@ def articleHTML(dictio, x, out):
...
@@ -181,7 +187,7 @@ def articleHTML(dictio, x, out):
year
=
dictio
[
'
year
'
]
year
=
dictio
[
'
year
'
]
out
.
write
(
"
\t
"
+
"
(<time property=
\"
schema:datePublished
\"
datatype=
\"
xsd:gYear
\"
dateTime=
\"
"
+
year
+
"
\"
>
"
+
year
+
"
</time>).
"
+
"
\n
"
)
out
.
write
(
"
\t
"
+
"
(<time property=
\"
schema:datePublished
\"
datatype=
\"
xsd:gYear
\"
dateTime=
\"
"
+
year
+
"
\"
>
"
+
year
+
"
</time>).
"
+
"
\n
"
)
try
:
try
:
doi
=
dictio
[
'
doi
'
]
doi
=
dictio
[
'
doi
'
]
...
...
This diff is collapsed.
Click to expand it.
code/output.txt
+
102
−
155
View file @
c0a9d1e6
...
@@ -2,11 +2,11 @@
...
@@ -2,11 +2,11 @@
<li typeof="schema:ScolarlyArticle" role="doc-biblioentry" property="schema:citation" id="desc-1">
<li typeof="schema:ScolarlyArticle" role="doc-biblioentry" property="schema:citation" id="desc-1">
<span property="schema:author" typeof="schema:Person">
<span property="schema:author" typeof="schema:Person">
<span property="schema:Name">
<span property="schema:Name">
Cloarec-Ung, F.</span>
,
Cloarec-Ung, F.</span>
<span property="schema:Name"> Beaulieu, J.</span>
,
<span property="schema:Name"> Beaulieu, J.</span>
<span property="schema:Name"> Suthananthan, A. a. L.</span>
,
<span property="schema:Name"> Suthananthan, A. a. L.</span>
<span property="schema:Name"> Sauvageau, G.</span>
,
<span property="schema:Name"> Sauvageau, G.</span>
<span property="schema:Name"> Sheppard, H. M.</span>
,
<span property="schema:Name"> Sheppard, H. M.</span>
<span property="schema:Name"> Knapp,
<span property="schema:Name"> Knapp,
David J. H. F.
David J. H. F.
, </span>
, </span>
...
@@ -17,7 +17,7 @@ progenitor cells
...
@@ -17,7 +17,7 @@ progenitor cells
</span>.
</span>.
<i property="schema:publisher" typeof="schema:Organization"> eLife</i>
<i property="schema:publisher" typeof="schema:Organization"> eLife</i>
<b property="issueNumber" typeof="PublicationIssue"> 12</b>,
<b property="issueNumber" typeof="PublicationIssue"> 12</b>,
(<time property="schema:datePublished" datatype="xsd:gYear" dateTime=" 2024">2024</time>).
(<time property="schema:datePublished" datatype="xsd:gYear" dateTime=" 2024">2024</time>).
<a className="doi" href="https://doi.org/10.7554/eLife.91288"> doi: 10.7554/eLife.91288</a>
<a className="doi" href="https://doi.org/10.7554/eLife.91288"> doi: 10.7554/eLife.91288</a>
</li>
</li>
...
@@ -25,23 +25,20 @@ progenitor cells
...
@@ -25,23 +25,20 @@ progenitor cells
<li typeof="schema:ScolarlyArticle" role="doc-biblioentry" property="schema:citation" id="desc-2">
<li typeof="schema:ScolarlyArticle" role="doc-biblioentry" property="schema:citation" id="desc-2">
<span property="schema:author" typeof="schema:Person">
<span property="schema:author" typeof="schema:Person">
<span property="schema:Name">
<span property="schema:Name">
Nelson, J. W.</span>
,
Nelson, J. W.</span>
<span property="schema:Name"> Randolph, P. B.</span>
,
<span property="schema:Name"> Randolph, P. B.</span>
<span property="schema:Name"> Shen, S. P.</span>
,
<span property="schema:Name"> Shen, S. P.</span>
<span property="schema:Name"> Everette,
<span property="schema:Name"> Everette,
Kelcee A., </span>,
Kelcee A., </span>
<span property="schema:Name"> Chen, P. J.</span>,
<span property="schema:Name"> Chen, P. J.</span>
<span property="schema:Name"> Anzalone, A. V.</span>,
<span property="schema:Name"> Anzalone, A. V.</span>
<span property="schema:Name"> An, M. a. N.</span>,
<span property="schema:Name"> et al.</span>
<span property="schema:Name"> Chen, J. C.</span>,
<span property="schema:Name"> Hsu, A.</span>,
<span property="schema:Name"> Liu, D. R.</span>
</span>
</span>
<span property="schema:name"> Engineered pegRNAs improve prime editing efficiency</span>.
<span property="schema:name"> Engineered pegRNAs improve prime editing efficiency</span>.
<i property="schema:publisher" typeof="schema:Organization"> Nature Biotechnology</i>
<i property="schema:publisher" typeof="schema:Organization"> Nature Biotechnology</i>
<b property="issueNumber" typeof="PublicationIssue"> 40</b>,
<b property="issueNumber" typeof="PublicationIssue"> 40</b>,
<span property="schema:pageBegin"> 402</span>-<span property="schema:pageEnd">410</span>
<span property="schema:pageBegin"> 402</span>-<span property="schema:pageEnd">410</span>
(<time property="schema:datePublished" datatype="xsd:gYear" dateTime=" 2022">2022</time>).
(<time property="schema:datePublished" datatype="xsd:gYear" dateTime=" 2022">2022</time>).
<a className="doi" href="https://doi.org/10.1038/s41587-021-01039-7"> doi: 10.1038/s41587-021-01039-7</a>
<a className="doi" href="https://doi.org/10.1038/s41587-021-01039-7"> doi: 10.1038/s41587-021-01039-7</a>
</li>
</li>
...
@@ -49,18 +46,13 @@ Kelcee A., </span>,
...
@@ -49,18 +46,13 @@ Kelcee A., </span>,
<li typeof="schema:ScolarlyArticle" role="doc-biblioentry" property="schema:citation" id="desc-3">
<li typeof="schema:ScolarlyArticle" role="doc-biblioentry" property="schema:citation" id="desc-3">
<span property="schema:author" typeof="schema:Person">
<span property="schema:author" typeof="schema:Person">
<span property="schema:Name">
<span property="schema:Name">
Doench, J. G.</span>,
Doench, J. G.</span>
<span property="schema:Name"> Fusi, N.</span>,
<span property="schema:Name"> Fusi, N.</span>
<span property="schema:Name"> Sullender, M.</span>,
<span property="schema:Name"> Sullender, M.</span>
<span property="schema:Name"> Hegde, M. a. V.</span>,
<span property="schema:Name"> Hegde, M. a. V.</span>
<span property="schema:Name"> Donovan, K. F.</span>,
<span property="schema:Name"> Donovan, K. F.</span>
<span property="schema:Name"> Smith, I.</span>,
<span property="schema:Name"> Smith, I.</span>
<span property="schema:Name"> Tothova,
<span property="schema:Name"> et al.</span>
Zuzana, </span>,
<span property="schema:Name"> Wilen, C.</span>,
<span property="schema:Name"> Orchard, R.</span>,
<span property="schema:Name"> Virgin, H. W. a. L.</span>,
<span property="schema:Name"> Root, D. E.</span>
</span>
</span>
<span property="schema:name">
<span property="schema:name">
Optimized sgRNA design to maximize activity and minimize off-target effects
Optimized sgRNA design to maximize activity and minimize off-target effects
...
@@ -68,8 +60,8 @@ of CRISPR-Cas9
...
@@ -68,8 +60,8 @@ of CRISPR-Cas9
</span>.
</span>.
<i property="schema:publisher" typeof="schema:Organization"> Nature Biotechnology</i>
<i property="schema:publisher" typeof="schema:Organization"> Nature Biotechnology</i>
<b property="issueNumber" typeof="PublicationIssue"> 34</b>,
<b property="issueNumber" typeof="PublicationIssue"> 34</b>,
<span property="schema:pageBegin"> 184</span>-<span property="schema:pageEnd">191</span>
<span property="schema:pageBegin"> 184</span>-<span property="schema:pageEnd">191</span>
(<time property="schema:datePublished" datatype="xsd:gYear" dateTime=" 2016">2016</time>).
(<time property="schema:datePublished" datatype="xsd:gYear" dateTime=" 2016">2016</time>).
<a className="doi" href="https://doi.org/10.1038/nbt.3437"> doi: 10.1038/nbt.3437</a>
<a className="doi" href="https://doi.org/10.1038/nbt.3437"> doi: 10.1038/nbt.3437</a>
</li>
</li>
...
@@ -77,9 +69,9 @@ of CRISPR-Cas9
...
@@ -77,9 +69,9 @@ of CRISPR-Cas9
<li typeof="schema:ScolarlyArticle" role="doc-biblioentry" property="schema:citation" id="desc-4">
<li typeof="schema:ScolarlyArticle" role="doc-biblioentry" property="schema:citation" id="desc-4">
<span property="schema:author" typeof="schema:Person">
<span property="schema:author" typeof="schema:Person">
<span property="schema:Name">
<span property="schema:Name">
White, N.</span>
,
White, N.</span>
<span property="schema:Name"> Sadeeshkumar, H.</span>
,
<span property="schema:Name"> Sadeeshkumar, H.</span>
<span property="schema:Name"> Sun, A.</span>
,
<span property="schema:Name"> Sun, A.</span>
<span property="schema:Name"> Sudarsan, N. a. B.</span>
<span property="schema:Name"> Sudarsan, N. a. B.</span>
</span>
</span>
<span property="schema:name">
<span property="schema:name">
...
@@ -88,15 +80,15 @@ bacteria
...
@@ -88,15 +80,15 @@ bacteria
</span>.
</span>.
<i property="schema:publisher" typeof="schema:Organization"> Nature Chemical Biology</i>
<i property="schema:publisher" typeof="schema:Organization"> Nature Chemical Biology</i>
<b property="issueNumber" typeof="PublicationIssue"> 18</b>,
<b property="issueNumber" typeof="PublicationIssue"> 18</b>,
<span property="schema:pageBegin"> 878</span>-<span property="schema:pageEnd">885</span>
<span property="schema:pageBegin"> 878</span>-<span property="schema:pageEnd">885</span>
(<time property="schema:datePublished" datatype="xsd:gYear" dateTime=" 2022">2022</time>).
(<time property="schema:datePublished" datatype="xsd:gYear" dateTime=" 2022">2022</time>).
<a className="doi" href="https://doi.org/10.1038/s41589-022-01086-4"> doi: 10.1038/s41589-022-01086-4</a>
<a className="doi" href="https://doi.org/10.1038/s41589-022-01086-4"> doi: 10.1038/s41589-022-01086-4</a>
</li>
</li>
{/*<!-- Citation num 5--> */}
{/*<!-- Citation num 5--> */}
<li typeof="schema:ScolarlyArticle" role="doc-biblioentry" property="schema:citation" id="desc-5">
<li typeof="schema:ScolarlyArticle" role="doc-biblioentry" property="schema:citation" id="desc-5">
<span property="schema:author" typeof="schema:Person">
<span property="schema:author" typeof="schema:Person">
<span property="schema:Name"> Iwawaki, T.</span>
,
<span property="schema:Name"> Iwawaki, T.</span>
<span property="schema:Name"> Akai, R.</span>
<span property="schema:Name"> Akai, R.</span>
</span>
</span>
<span property="schema:name">
<span property="schema:name">
...
@@ -105,8 +97,8 @@ stress-indicators
...
@@ -105,8 +97,8 @@ stress-indicators
</span>.
</span>.
<i property="schema:publisher" typeof="schema:Organization"> Biochemical and Biophysical Research Communications</i>
<i property="schema:publisher" typeof="schema:Organization"> Biochemical and Biophysical Research Communications</i>
<b property="issueNumber" typeof="PublicationIssue"> 350</b>,
<b property="issueNumber" typeof="PublicationIssue"> 350</b>,
<span property="schema:pageBegin"> 709</span>-<span property="schema:pageEnd">715</span>
<span property="schema:pageBegin"> 709</span>-<span property="schema:pageEnd">715</span>
(<time property="schema:datePublished" datatype="xsd:gYear" dateTime=" 2006">2006</time>).
(<time property="schema:datePublished" datatype="xsd:gYear" dateTime=" 2006">2006</time>).
<a className="doi" href="https://doi.org/10.1016/j.bbrc.2006.09.100"> doi: 10.1016/j.bbrc.2006.09.100</a>
<a className="doi" href="https://doi.org/10.1016/j.bbrc.2006.09.100"> doi: 10.1016/j.bbrc.2006.09.100</a>
</li>
</li>
...
@@ -114,13 +106,13 @@ stress-indicators
...
@@ -114,13 +106,13 @@ stress-indicators
<li typeof="schema:ScolarlyArticle" role="doc-biblioentry" property="schema:citation" id="desc-6">
<li typeof="schema:ScolarlyArticle" role="doc-biblioentry" property="schema:citation" id="desc-6">
<span property="schema:author" typeof="schema:Person">
<span property="schema:author" typeof="schema:Person">
<span property="schema:Name">
<span property="schema:Name">
Zhang, Y.</span>
,
Zhang, Y.</span>
<span property="schema:Name"> Lin, S.</span>
,
<span property="schema:Name"> Lin, S.</span>
<span property="schema:Name"> Yao, J.</span>
,
<span property="schema:Name"> Yao, J.</span>
<span property="schema:Name"> Cai, W.</span>
,
<span property="schema:Name"> Cai, W.</span>
<span property="schema:Name"> Chen, H. a. A.</span>
,
<span property="schema:Name"> Chen, H. a. A.</span>
<span property="schema:Name"> Wang, Z.</span>
,
<span property="schema:Name"> Wang, Z.</span>
<span property="schema:Name">
Song, W
.</span>
<span property="schema:Name">
et al
.</span>
</span>
</span>
<span property="schema:name">
<span property="schema:name">
XBP1 splicing contributes to endoplasmic reticulum stress-induced human islet
XBP1 splicing contributes to endoplasmic reticulum stress-induced human islet
...
@@ -128,8 +120,8 @@ amyloid polypeptide up-regulation
...
@@ -128,8 +120,8 @@ amyloid polypeptide up-regulation
</span>.
</span>.
<i property="schema:publisher" typeof="schema:Organization"> Genes & Diseases</i>
<i property="schema:publisher" typeof="schema:Organization"> Genes & Diseases</i>
<b property="issueNumber" typeof="PublicationIssue"> 11</b>,
<b property="issueNumber" typeof="PublicationIssue"> 11</b>,
<span property="schema:pageBegin">101148</span>
<span property="schema:pageBegin">101148</span>
(<time property="schema:datePublished" datatype="xsd:gYear" dateTime=" 2023">2023</time>).
(<time property="schema:datePublished" datatype="xsd:gYear" dateTime=" 2023">2023</time>).
<a className="doi" href="https://doi.org/10.1016/j.gendis.2023.101148"> doi: 10.1016/j.gendis.2023.101148</a>
<a className="doi" href="https://doi.org/10.1016/j.gendis.2023.101148"> doi: 10.1016/j.gendis.2023.101148</a>
</li>
</li>
...
@@ -137,21 +129,14 @@ amyloid polypeptide up-regulation
...
@@ -137,21 +129,14 @@ amyloid polypeptide up-regulation
<li typeof="schema:ScolarlyArticle" role="doc-biblioentry" property="schema:citation" id="desc-7">
<li typeof="schema:ScolarlyArticle" role="doc-biblioentry" property="schema:citation" id="desc-7">
<span property="schema:author" typeof="schema:Person">
<span property="schema:author" typeof="schema:Person">
<span property="schema:Name">
<span property="schema:Name">
Wei, T.</span>
,
Wei, T.</span>
<span property="schema:Name"> Sun, Y.</span>
,
<span property="schema:Name"> Sun, Y.</span>
<span property="schema:Name"> Cheng, Q.</span>
,
<span property="schema:Name"> Cheng, Q.</span>
<span property="schema:Name"> Chatterjee, S.</span>
,
<span property="schema:Name"> Chatterjee, S.</span>
<span property="schema:Name"> Traylor,
<span property="schema:Name"> Traylor,
Zachary, </span>,
Zachary, </span>
<span property="schema:Name"> Johnson, L. T.</span>,
<span property="schema:Name"> Johnson, L. T.</span>
<span property="schema:Name"> Coquelin, M. L.</span>,
<span property="schema:Name"> et al.</span>
<span property="schema:Name"> Wang, J. a. T.</span>,
<span property="schema:Name"> Lian, X.</span>,
<span property="schema:Name"> Wang, X.</span>,
<span property="schema:Name"> Xiao, Y.</span>,
<span property="schema:Name"> Hodges,
Craig A., </span>,
<span property="schema:Name"> Siegwart, D. J.</span>
</span>
</span>
<span property="schema:name">
<span property="schema:name">
Lung SORT LNPs enable precise homology-directed repair mediated
Lung SORT LNPs enable precise homology-directed repair mediated
...
@@ -159,24 +144,21 @@ CRISPR/Cas genome correction in cystic fibrosis models
...
@@ -159,24 +144,21 @@ CRISPR/Cas genome correction in cystic fibrosis models
</span>.
</span>.
<i property="schema:publisher" typeof="schema:Organization"> Nature Communications</i>
<i property="schema:publisher" typeof="schema:Organization"> Nature Communications</i>
<b property="issueNumber" typeof="PublicationIssue"> 14</b>,
<b property="issueNumber" typeof="PublicationIssue"> 14</b>,
<span property="schema:pageBegin">7322</span>
<span property="schema:pageBegin">7322</span>
(<time property="schema:datePublished" datatype="xsd:gYear" dateTime=" 2023">2023</time>).
(<time property="schema:datePublished" datatype="xsd:gYear" dateTime=" 2023">2023</time>).
<a className="doi" href="https://doi.org/10.1038/s41467-023-42948-2"> doi: 10.1038/s41467-023-42948-2</a>
<a className="doi" href="https://doi.org/10.1038/s41467-023-42948-2"> doi: 10.1038/s41467-023-42948-2</a>
</li>
</li>
{/*<!-- Citation num 8--> */}
{/*<!-- Citation num 8--> */}
<li typeof="schema:ScolarlyArticle" role="doc-biblioentry" property="schema:citation" id="desc-8">
<li typeof="schema:ScolarlyArticle" role="doc-biblioentry" property="schema:citation" id="desc-8">
<span property="schema:author" typeof="schema:Person">
<span property="schema:author" typeof="schema:Person">
<span property="schema:Name"> Ibrahim, M.</span>,
<span property="schema:Name"> Ibrahim, M.</span>
<span property="schema:Name"> Ramadan, E.</span>,
<span property="schema:Name"> Ramadan, E.</span>
<span property="schema:Name"> Elsadek, N. E.</span>,
<span property="schema:Name"> Elsadek, N. E.</span>
<span property="schema:Name"> Shimizu, S. E. E. a. T.</span>,
<span property="schema:Name"> Shimizu, S. E. E. a. T.</span>
<span property="schema:Name"> Ando, H.</span>,
<span property="schema:Name"> Ando, H.</span>
<span property="schema:Name"> Ishima, Y.</span>,
<span property="schema:Name"> Ishima, Y.</span>
<span property="schema:Name"> Elgarhy, O. H.</span>,
<span property="schema:Name"> et al.</span>
<span property="schema:Name"> Sarhan, H. A.</span>,
<span property="schema:Name"> Hussein, A. K.</span>,
<span property="schema:Name"> Ishida, T.</span>
</span>
</span>
<span property="schema:name">
<span property="schema:name">
Polyethylene glycol (PEG): The nature, immunogenicity, and role in the
Polyethylene glycol (PEG): The nature, immunogenicity, and role in the
...
@@ -184,8 +166,8 @@ hypersensitivity of PEGylated products
...
@@ -184,8 +166,8 @@ hypersensitivity of PEGylated products
</span>.
</span>.
<i property="schema:publisher" typeof="schema:Organization"> Journal of Controlled Release</i>
<i property="schema:publisher" typeof="schema:Organization"> Journal of Controlled Release</i>
<b property="issueNumber" typeof="PublicationIssue"> 351</b>,
<b property="issueNumber" typeof="PublicationIssue"> 351</b>,
<span property="schema:pageBegin"> 215</span>-<span property="schema:pageEnd">230</span>
<span property="schema:pageBegin"> 215</span>-<span property="schema:pageEnd">230</span>
(<time property="schema:datePublished" datatype="xsd:gYear" dateTime=" 2022">2022</time>).
(<time property="schema:datePublished" datatype="xsd:gYear" dateTime=" 2022">2022</time>).
<a className="doi" href="https://doi.org/https://doi.org/10.1016/j.jconrel.2022.09.031"> doi: https://doi.org/10.1016/j.jconrel.2022.09.031</a>
<a className="doi" href="https://doi.org/https://doi.org/10.1016/j.jconrel.2022.09.031"> doi: https://doi.org/10.1016/j.jconrel.2022.09.031</a>
</li>
</li>
...
@@ -193,15 +175,13 @@ hypersensitivity of PEGylated products
...
@@ -193,15 +175,13 @@ hypersensitivity of PEGylated products
<li typeof="schema:ScolarlyArticle" role="doc-biblioentry" property="schema:citation" id="desc-9">
<li typeof="schema:ScolarlyArticle" role="doc-biblioentry" property="schema:citation" id="desc-9">
<span property="schema:author" typeof="schema:Person">
<span property="schema:author" typeof="schema:Person">
<span property="schema:Name">
<span property="schema:Name">
Jiang, A. Y.</span>,
Jiang, A. Y.</span>
<span property="schema:Name"> Witten, J.</span>,
<span property="schema:Name"> Witten, J.</span>
<span property="schema:Name"> Raji, I. O.</span>,
<span property="schema:Name"> Raji, I. O.</span>
<span property="schema:Name"> Eweje, F. a. M.</span>,
<span property="schema:Name"> Eweje, F. a. M.</span>
<span property="schema:Name"> Meng, S.</span>,
<span property="schema:Name"> Meng, S.</span>
<span property="schema:Name"> Oladimeji, F. A.</span>,
<span property="schema:Name"> Oladimeji, F. A.</span>
<span property="schema:Name"> Hu, Y. a. M.</span>,
<span property="schema:Name"> et al.</span>
<span property="schema:Name"> Langer, R.</span>,
<span property="schema:Name"> Anderson, D. G.</span>
</span>
</span>
<span property="schema:name">
<span property="schema:name">
Combinatorial development of nebulized mRNA delivery formulations for the
Combinatorial development of nebulized mRNA delivery formulations for the
...
@@ -209,8 +189,8 @@ lungs
...
@@ -209,8 +189,8 @@ lungs
</span>.
</span>.
<i property="schema:publisher" typeof="schema:Organization"> Nature Nanotechnology</i>
<i property="schema:publisher" typeof="schema:Organization"> Nature Nanotechnology</i>
<b property="issueNumber" typeof="PublicationIssue"> 19</b>,
<b property="issueNumber" typeof="PublicationIssue"> 19</b>,
<span property="schema:pageBegin"> 364</span>-<span property="schema:pageEnd">375</span>
<span property="schema:pageBegin"> 364</span>-<span property="schema:pageEnd">375</span>
(<time property="schema:datePublished" datatype="xsd:gYear" dateTime=" 2024">2024</time>).
(<time property="schema:datePublished" datatype="xsd:gYear" dateTime=" 2024">2024</time>).
<a className="doi" href="https://doi.org/10.1038/s41565-023-01548-3"> doi: 10.1038/s41565-023-01548-3</a>
<a className="doi" href="https://doi.org/10.1038/s41565-023-01548-3"> doi: 10.1038/s41565-023-01548-3</a>
</li>
</li>
...
@@ -218,24 +198,14 @@ lungs
...
@@ -218,24 +198,14 @@ lungs
<li typeof="schema:ScolarlyArticle" role="doc-biblioentry" property="schema:citation" id="desc-10">
<li typeof="schema:ScolarlyArticle" role="doc-biblioentry" property="schema:citation" id="desc-10">
<span property="schema:author" typeof="schema:Person">
<span property="schema:author" typeof="schema:Person">
<span property="schema:Name">
<span property="schema:Name">
Vilà-González, M.</span>
,
Vilà-González, M.</span>
<span property="schema:Name"> Pinte, L.</span>
,
<span property="schema:Name"> Pinte, L.</span>
<span property="schema:Name"> Fradique, R.</span>
,
<span property="schema:Name"> Fradique, R.</span>
<span property="schema:Name"> Causa,
<span property="schema:Name"> Causa,
Erika, </span>,
Erika, </span>
<span property="schema:Name"> Kool, H.</span>,
<span property="schema:Name"> Kool, H.</span>
<span property="schema:Name"> Rodrat, M.</span>,
<span property="schema:Name"> Rodrat, M.</span>
<span property="schema:Name"> Morell, C. M. a. A.</span>,
<span property="schema:Name"> et al.</span>
<span property="schema:Name"> Porter, L.</span>,
<span property="schema:Name"> Guo, W.</span>,
<span property="schema:Name"> Maeshima, R. a. H.</span>,
<span property="schema:Name"> McCaughan, F.</span>,
<span property="schema:Name"> Granata, A.</span>,
<span property="schema:Name"> Sheppard,
David N., </span>,
<span property="schema:Name"> Floto, R. A.</span>,
<span property="schema:Name"> Rawlins, E. L.</span>,
<span property="schema:Name"> Cicuta, P. a. V.</span>
</span>
</span>
<span property="schema:name">
<span property="schema:name">
In vitro platform to model the function of ionocytes in the human airway
In vitro platform to model the function of ionocytes in the human airway
...
@@ -243,8 +213,8 @@ epithelium
...
@@ -243,8 +213,8 @@ epithelium
</span>.
</span>.
<i property="schema:publisher" typeof="schema:Organization"> Respiratory Research</i>
<i property="schema:publisher" typeof="schema:Organization"> Respiratory Research</i>
<b property="issueNumber" typeof="PublicationIssue"> 25</b>,
<b property="issueNumber" typeof="PublicationIssue"> 25</b>,
<span property="schema:pageBegin">180</span>
<span property="schema:pageBegin">180</span>
(<time property="schema:datePublished" datatype="xsd:gYear" dateTime=" 2024">2024</time>).
(<time property="schema:datePublished" datatype="xsd:gYear" dateTime=" 2024">2024</time>).
<a className="doi" href="https://doi.org/10.1186/s12931-024-02800-7"> doi: 10.1186/s12931-024-02800-7</a>
<a className="doi" href="https://doi.org/10.1186/s12931-024-02800-7"> doi: 10.1186/s12931-024-02800-7</a>
</li>
</li>
...
@@ -269,14 +239,14 @@ biosecurity threats
...
@@ -269,14 +239,14 @@ biosecurity threats
</span>.
</span>.
<i property="schema:publisher" typeof="schema:Organization"> Defense Horizons</i>
<i property="schema:publisher" typeof="schema:Organization"> Defense Horizons</i>
<b property="issueNumber" typeof="PublicationIssue"> 85</b>,
<b property="issueNumber" typeof="PublicationIssue"> 85</b>,
<span property="schema:pageBegin"> 1</span>-<span property="schema:pageEnd">16</span>
<span property="schema:pageBegin"> 1</span>-<span property="schema:pageEnd">16</span>
(<time property="schema:datePublished" datatype="xsd:gYear" dateTime=" 2020">2020</time>).
(<time property="schema:datePublished" datatype="xsd:gYear" dateTime=" 2020">2020</time>).
</li>
</li>
{/*<!-- Citation num 13--> */}
{/*<!-- Citation num 13--> */}
<li typeof="schema:ScolarlyArticle" role="doc-biblioentry" property="schema:citation" id="desc-13">
<li typeof="schema:ScolarlyArticle" role="doc-biblioentry" property="schema:citation" id="desc-13">
<span property="schema:author" typeof="schema:Person">
<span property="schema:author" typeof="schema:Person">
<span property="schema:Name"> Cohen, J.</span>
,
<span property="schema:Name"> Cohen, J.</span>
<span property="schema:Name"> Desai, T.</span>
<span property="schema:Name"> Desai, T.</span>
</span>
</span>
<span property="schema:name">
<span property="schema:name">
...
@@ -285,15 +255,15 @@ disruption?
...
@@ -285,15 +255,15 @@ disruption?
</span>.
</span>.
<i property="schema:publisher" typeof="schema:Organization"> Journal of Bioethical Inquiry</i>
<i property="schema:publisher" typeof="schema:Organization"> Journal of Bioethical Inquiry</i>
<b property="issueNumber" typeof="PublicationIssue"> 16</b>,
<b property="issueNumber" typeof="PublicationIssue"> 16</b>,
<span property="schema:pageBegin"> 219</span>-<span property="schema:pageEnd">228</span>
<span property="schema:pageBegin"> 219</span>-<span property="schema:pageEnd">228</span>
(<time property="schema:datePublished" datatype="xsd:gYear" dateTime=" 2019">2019</time>).
(<time property="schema:datePublished" datatype="xsd:gYear" dateTime=" 2019">2019</time>).
<a className="doi" href="https://doi.org/10.1007/s11673-019-09914-5"> doi: 10.1007/s11673-019-09914-5</a>
<a className="doi" href="https://doi.org/10.1007/s11673-019-09914-5"> doi: 10.1007/s11673-019-09914-5</a>
</li>
</li>
{/*<!-- Citation num 14--> */}
{/*<!-- Citation num 14--> */}
<li typeof="schema:ScolarlyArticle" role="doc-biblioentry" property="schema:citation" id="desc-14">
<li typeof="schema:ScolarlyArticle" role="doc-biblioentry" property="schema:citation" id="desc-14">
<span property="schema:author" typeof="schema:Person">
<span property="schema:author" typeof="schema:Person">
<span property="schema:Name"> Doudna, J. A.</span>
,
<span property="schema:Name"> Doudna, J. A.</span>
<span property="schema:Name"> Charpentier, E.</span>
<span property="schema:Name"> Charpentier, E.</span>
</span>
</span>
<span property="schema:name">
<span property="schema:name">
...
@@ -302,15 +272,15 @@ challenges
...
@@ -302,15 +272,15 @@ challenges
</span>.
</span>.
<i property="schema:publisher" typeof="schema:Organization"> Nature Reviews Genetics</i>
<i property="schema:publisher" typeof="schema:Organization"> Nature Reviews Genetics</i>
<b property="issueNumber" typeof="PublicationIssue"> 21</b>,
<b property="issueNumber" typeof="PublicationIssue"> 21</b>,
<span property="schema:pageBegin"> 144</span>-<span property="schema:pageEnd">156</span>
<span property="schema:pageBegin"> 144</span>-<span property="schema:pageEnd">156</span>
(<time property="schema:datePublished" datatype="xsd:gYear" dateTime=" 2020">2020</time>).
(<time property="schema:datePublished" datatype="xsd:gYear" dateTime=" 2020">2020</time>).
<a className="doi" href="https://doi.org/10.1038/s41576-019-0182-7"> doi: 10.1038/s41576-019-0182-7</a>
<a className="doi" href="https://doi.org/10.1038/s41576-019-0182-7"> doi: 10.1038/s41576-019-0182-7</a>
</li>
</li>
{/*<!-- Citation num 15--> */}
{/*<!-- Citation num 15--> */}
<li typeof="schema:ScolarlyArticle" role="doc-biblioentry" property="schema:citation" id="desc-15">
<li typeof="schema:ScolarlyArticle" role="doc-biblioentry" property="schema:citation" id="desc-15">
<span property="schema:author" typeof="schema:Person">
<span property="schema:author" typeof="schema:Person">
<span property="schema:Name"> Shwartz, M.</span>
,
<span property="schema:Name"> Shwartz, M.</span>
<span property="schema:Name"> Conklin, B.</span>
<span property="schema:Name"> Conklin, B.</span>
</span>
</span>
<span property="schema:name">
<span property="schema:name">
...
@@ -319,7 +289,7 @@ portrayal
...
@@ -319,7 +289,7 @@ portrayal
</span>.
</span>.
<i property="schema:publisher" typeof="schema:Organization"> Journal of Science Communication</i>
<i property="schema:publisher" typeof="schema:Organization"> Journal of Science Communication</i>
<b property="issueNumber" typeof="PublicationIssue"> 18</b>,
<b property="issueNumber" typeof="PublicationIssue"> 18</b>,
(<time property="schema:datePublished" datatype="xsd:gYear" dateTime=" 2019">2019</time>).
(<time property="schema:datePublished" datatype="xsd:gYear" dateTime=" 2019">2019</time>).
<a className="doi" href="https://doi.org/10.22323/2.18040202"> doi: 10.22323/2.18040202</a>
<a className="doi" href="https://doi.org/10.22323/2.18040202"> doi: 10.22323/2.18040202</a>
</li>
</li>
...
@@ -336,14 +306,14 @@ portrayal
...
@@ -336,14 +306,14 @@ portrayal
{/*<!-- Citation num 17--> */}
{/*<!-- Citation num 17--> */}
<li typeof="schema:ScolarlyArticle" role="doc-biblioentry" property="schema:citation" id="desc-17">
<li typeof="schema:ScolarlyArticle" role="doc-biblioentry" property="schema:citation" id="desc-17">
<span property="schema:author" typeof="schema:Person">
<span property="schema:author" typeof="schema:Person">
<span property="schema:Name"> Rubeis, G.</span>
,
<span property="schema:Name"> Rubeis, G.</span>
<span property="schema:Name"> Steger, F.</span>
<span property="schema:Name"> Steger, F.</span>
</span>
</span>
<span property="schema:name"> Risks and benefits of human germline genome editing: An ethical analysis</span>.
<span property="schema:name"> Risks and benefits of human germline genome editing: An ethical analysis</span>.
<i property="schema:publisher" typeof="schema:Organization"> Asian Bioethics Review</i>
<i property="schema:publisher" typeof="schema:Organization"> Asian Bioethics Review</i>
<b property="issueNumber" typeof="PublicationIssue"> 10</b>,
<b property="issueNumber" typeof="PublicationIssue"> 10</b>,
<span property="schema:pageBegin"> 133</span>-<span property="schema:pageEnd">141</span>
<span property="schema:pageBegin"> 133</span>-<span property="schema:pageEnd">141</span>
(<time property="schema:datePublished" datatype="xsd:gYear" dateTime=" 2018">2018</time>).
(<time property="schema:datePublished" datatype="xsd:gYear" dateTime=" 2018">2018</time>).
<a className="doi" href="https://doi.org/10.1007/s41649-018-0056-x"> doi: 10.1007/s41649-018-0056-x</a>
<a className="doi" href="https://doi.org/10.1007/s41649-018-0056-x"> doi: 10.1007/s41649-018-0056-x</a>
</li>
</li>
...
@@ -358,8 +328,8 @@ Therapy
...
@@ -358,8 +328,8 @@ Therapy
</span>.
</span>.
<i property="schema:publisher" typeof="schema:Organization"> Advances in Cell and Gene Therapy</i>
<i property="schema:publisher" typeof="schema:Organization"> Advances in Cell and Gene Therapy</i>
<b property="issueNumber" typeof="PublicationIssue"> 2022</b>,
<b property="issueNumber" typeof="PublicationIssue"> 2022</b>,
<span property="schema:pageBegin"> 1</span>-<span property="schema:pageEnd">5</span>
<span property="schema:pageBegin"> 1</span>-<span property="schema:pageEnd">5</span>
(<time property="schema:datePublished" datatype="xsd:gYear" dateTime=" 2022">2022</time>).
(<time property="schema:datePublished" datatype="xsd:gYear" dateTime=" 2022">2022</time>).
<a className="doi" href="https://doi.org/10.1155/2022/1015996"> doi: 10.1155/2022/1015996</a>
<a className="doi" href="https://doi.org/10.1155/2022/1015996"> doi: 10.1155/2022/1015996</a>
</li>
</li>
...
@@ -376,7 +346,7 @@ Therapy
...
@@ -376,7 +346,7 @@ Therapy
{/*<!-- Citation num 20--> */}
{/*<!-- Citation num 20--> */}
<li typeof="schema:Book" role="doc-biblioentry" property="schema:citation" id="desc-20">
<li typeof="schema:Book" role="doc-biblioentry" property="schema:citation" id="desc-20">
<span property="schema:author" typeof="schema:Organisation">
<span property="schema:author" typeof="schema:Organisation">
<span property="schema:Name"> Gstraunthaler, G.</span>
,
<span property="schema:Name"> Gstraunthaler, G.</span>
<span property="schema:Name"> Lindl, T.</span>
<span property="schema:Name"> Lindl, T.</span>
</span>
</span>
<span property="schema:name"> Allgemeine Aspekte der Primärkultur.</span>
<span property="schema:name"> Allgemeine Aspekte der Primärkultur.</span>
...
@@ -408,42 +378,19 @@ Therapy
...
@@ -408,42 +378,19 @@ Therapy
<li typeof="schema:ScolarlyArticle" role="doc-biblioentry" property="schema:citation" id="desc-23">
<li typeof="schema:ScolarlyArticle" role="doc-biblioentry" property="schema:citation" id="desc-23">
<span property="schema:author" typeof="schema:Person">
<span property="schema:author" typeof="schema:Person">
<span property="schema:Name">
<span property="schema:Name">
Kiani, A. K.</span>,
Kiani, A. K.</span>
<span property="schema:Name"> Pheby, D.</span>,
<span property="schema:Name"> Pheby, D.</span>
<span property="schema:Name"> Henehan, G.</span>,
<span property="schema:Name"> Henehan, G.</span>
<span property="schema:Name"> Brown, R. a. S.</span>,
<span property="schema:Name"> Brown, R. a. S.</span>
<span property="schema:Name"> Sykora, P.</span>,
<span property="schema:Name"> Sykora, P.</span>
<span property="schema:Name"> Marks, R.</span>,
<span property="schema:Name"> Marks, R.</span>
<span property="schema:Name"> Falsini, B. a. C.</span>,
<span property="schema:Name"> et al.</span>
<span property="schema:Name"> Miertus, S.</span>,
<span property="schema:Name"> Lorusso, L. a. D.</span>,
<span property="schema:Name"> Tartaglia, G. M.</span>,
<span property="schema:Name"> Ergoren, M. C.</span>,
<span property="schema:Name"> Dundar, M.</span>,
<span property="schema:Name"> Michelini, S.</span>,
<span property="schema:Name"> Malacarne, D. a. B.</span>,
<span property="schema:Name"> Dautaj, A.</span>,
<span property="schema:Name"> Donato, K.</span>,
<span property="schema:Name"> Medori, M. C.</span>,
<span property="schema:Name"> Beccari, T.</span>,
<span property="schema:Name"> Samaja, M.</span>,
<span property="schema:Name"> Connelly, S. T.</span>,
<span property="schema:Name"> Martin, D.</span>,
<span property="schema:Name"> Morresi, A.</span>,
<span property="schema:Name"> Bacu, A.</span>,
<span property="schema:Name"> Herbst,
Karen L., </span>,
<span property="schema:Name"> Kapustin, M.</span>,
<span property="schema:Name"> Stuppia, L.</span>,
<span property="schema:Name"> Lumer, L. a. F.</span>,
<span property="schema:Name"> Bertelli, M.</span>,
<span property="schema:Name"> GROUP, I. B. S.</span>
</span>
</span>
<span property="schema:name"> Ethical considerations regarding animal experimentation</span>.
<span property="schema:name"> Ethical considerations regarding animal experimentation</span>.
<i property="schema:publisher" typeof="schema:Organization"> Journal of Preventive Medicine and Hygiene</i>
<i property="schema:publisher" typeof="schema:Organization"> Journal of Preventive Medicine and Hygiene</i>
<b property="issueNumber" typeof="PublicationIssue"> 63</b>,
<b property="issueNumber" typeof="PublicationIssue"> 63</b>,
<span property="schema:pageBegin"> E255</span>-<span property="schema:pageEnd">E266</span>
<span property="schema:pageBegin"> E255</span>-<span property="schema:pageEnd">E266</span>
(<time property="schema:datePublished" datatype="xsd:gYear" dateTime=" 2022">2022</time>).
(<time property="schema:datePublished" datatype="xsd:gYear" dateTime=" 2022">2022</time>).
<a className="doi" href="https://doi.org/10.15167/2421-4248/jpmh2022.63.2S3.2768"> doi: 10.15167/2421-4248/jpmh2022.63.2S3.2768</a>
<a className="doi" href="https://doi.org/10.15167/2421-4248/jpmh2022.63.2S3.2768"> doi: 10.15167/2421-4248/jpmh2022.63.2S3.2768</a>
</li>
</li>
This diff is collapsed.
Click to expand it.
src/contents/safety.tsx
+
102
−
155
View file @
c0a9d1e6
...
@@ -321,11 +321,11 @@ export const Safety: React.FC = () =>{
...
@@ -321,11 +321,11 @@ export const Safety: React.FC = () =>{
<
li
typeof
=
"schema:ScolarlyArticle"
role
=
"doc-biblioentry"
property
=
"schema:citation"
id
=
"desc-1"
>
<
li
typeof
=
"schema:ScolarlyArticle"
role
=
"doc-biblioentry"
property
=
"schema:citation"
id
=
"desc-1"
>
<
span
property
=
"schema:author"
typeof
=
"schema:Person"
>
<
span
property
=
"schema:author"
typeof
=
"schema:Person"
>
<
span
property
=
"schema:Name"
>
<
span
property
=
"schema:Name"
>
Cloarec-Ung, F.
</
span
>
,
Cloarec-Ung, F.
</
span
>
<
span
property
=
"schema:Name"
>
Beaulieu, J.
</
span
>
,
<
span
property
=
"schema:Name"
>
Beaulieu, J.
</
span
>
<
span
property
=
"schema:Name"
>
Suthananthan, A. a. L.
</
span
>
,
<
span
property
=
"schema:Name"
>
Suthananthan, A. a. L.
</
span
>
<
span
property
=
"schema:Name"
>
Sauvageau, G.
</
span
>
,
<
span
property
=
"schema:Name"
>
Sauvageau, G.
</
span
>
<
span
property
=
"schema:Name"
>
Sheppard, H. M.
</
span
>
,
<
span
property
=
"schema:Name"
>
Sheppard, H. M.
</
span
>
<
span
property
=
"schema:Name"
>
Knapp,
<
span
property
=
"schema:Name"
>
Knapp,
David J. H. F.
David J. H. F.
,
</
span
>
,
</
span
>
...
@@ -336,7 +336,7 @@ progenitor cells
...
@@ -336,7 +336,7 @@ progenitor cells
</
span
>
.
</
span
>
.
<
i
property
=
"schema:publisher"
typeof
=
"schema:Organization"
>
eLife
</
i
>
<
i
property
=
"schema:publisher"
typeof
=
"schema:Organization"
>
eLife
</
i
>
<
b
property
=
"issueNumber"
typeof
=
"PublicationIssue"
>
12
</
b
>
,
<
b
property
=
"issueNumber"
typeof
=
"PublicationIssue"
>
12
</
b
>
,
(
<
time
property
=
"schema:datePublished"
datatype
=
"xsd:gYear"
dateTime
=
" 2024"
>
2024
</
time
>
).
(
<
time
property
=
"schema:datePublished"
datatype
=
"xsd:gYear"
dateTime
=
" 2024"
>
2024
</
time
>
).
<
a
className
=
"doi"
href
=
"https://doi.org/10.7554/eLife.91288"
>
doi: 10.7554/eLife.91288
</
a
>
<
a
className
=
"doi"
href
=
"https://doi.org/10.7554/eLife.91288"
>
doi: 10.7554/eLife.91288
</
a
>
</
li
>
</
li
>
...
@@ -344,23 +344,20 @@ progenitor cells
...
@@ -344,23 +344,20 @@ progenitor cells
<
li
typeof
=
"schema:ScolarlyArticle"
role
=
"doc-biblioentry"
property
=
"schema:citation"
id
=
"desc-2"
>
<
li
typeof
=
"schema:ScolarlyArticle"
role
=
"doc-biblioentry"
property
=
"schema:citation"
id
=
"desc-2"
>
<
span
property
=
"schema:author"
typeof
=
"schema:Person"
>
<
span
property
=
"schema:author"
typeof
=
"schema:Person"
>
<
span
property
=
"schema:Name"
>
<
span
property
=
"schema:Name"
>
Nelson, J. W.
</
span
>
,
Nelson, J. W.
</
span
>
<
span
property
=
"schema:Name"
>
Randolph, P. B.
</
span
>
,
<
span
property
=
"schema:Name"
>
Randolph, P. B.
</
span
>
<
span
property
=
"schema:Name"
>
Shen, S. P.
</
span
>
,
<
span
property
=
"schema:Name"
>
Shen, S. P.
</
span
>
<
span
property
=
"schema:Name"
>
Everette,
<
span
property
=
"schema:Name"
>
Everette,
Kelcee A.,
</
span
>
,
Kelcee A.,
</
span
>
<
span
property
=
"schema:Name"
>
Chen, P. J.
</
span
>
,
<
span
property
=
"schema:Name"
>
Chen, P. J.
</
span
>
<
span
property
=
"schema:Name"
>
Anzalone, A. V.
</
span
>
,
<
span
property
=
"schema:Name"
>
Anzalone, A. V.
</
span
>
<
span
property
=
"schema:Name"
>
An, M. a. N.
</
span
>
,
<
span
property
=
"schema:Name"
>
et al.
</
span
>
<
span
property
=
"schema:Name"
>
Chen, J. C.
</
span
>
,
<
span
property
=
"schema:Name"
>
Hsu, A.
</
span
>
,
<
span
property
=
"schema:Name"
>
Liu, D. R.
</
span
>
</
span
>
</
span
>
<
span
property
=
"schema:name"
>
Engineered pegRNAs improve prime editing efficiency
</
span
>
.
<
span
property
=
"schema:name"
>
Engineered pegRNAs improve prime editing efficiency
</
span
>
.
<
i
property
=
"schema:publisher"
typeof
=
"schema:Organization"
>
Nature Biotechnology
</
i
>
<
i
property
=
"schema:publisher"
typeof
=
"schema:Organization"
>
Nature Biotechnology
</
i
>
<
b
property
=
"issueNumber"
typeof
=
"PublicationIssue"
>
40
</
b
>
,
<
b
property
=
"issueNumber"
typeof
=
"PublicationIssue"
>
40
</
b
>
,
<
span
property
=
"schema:pageBegin"
>
402
</
span
>
-
<
span
property
=
"schema:pageEnd"
>
410
</
span
>
<
span
property
=
"schema:pageBegin"
>
402
</
span
>
-
<
span
property
=
"schema:pageEnd"
>
410
</
span
>
(
<
time
property
=
"schema:datePublished"
datatype
=
"xsd:gYear"
dateTime
=
" 2022"
>
2022
</
time
>
).
(
<
time
property
=
"schema:datePublished"
datatype
=
"xsd:gYear"
dateTime
=
" 2022"
>
2022
</
time
>
).
<
a
className
=
"doi"
href
=
"https://doi.org/10.1038/s41587-021-01039-7"
>
doi: 10.1038/s41587-021-01039-7
</
a
>
<
a
className
=
"doi"
href
=
"https://doi.org/10.1038/s41587-021-01039-7"
>
doi: 10.1038/s41587-021-01039-7
</
a
>
</
li
>
</
li
>
...
@@ -368,18 +365,13 @@ Kelcee A., </span>,
...
@@ -368,18 +365,13 @@ Kelcee A., </span>,
<
li
typeof
=
"schema:ScolarlyArticle"
role
=
"doc-biblioentry"
property
=
"schema:citation"
id
=
"desc-3"
>
<
li
typeof
=
"schema:ScolarlyArticle"
role
=
"doc-biblioentry"
property
=
"schema:citation"
id
=
"desc-3"
>
<
span
property
=
"schema:author"
typeof
=
"schema:Person"
>
<
span
property
=
"schema:author"
typeof
=
"schema:Person"
>
<
span
property
=
"schema:Name"
>
<
span
property
=
"schema:Name"
>
Doench, J. G.
</
span
>
,
Doench, J. G.
</
span
>
<
span
property
=
"schema:Name"
>
Fusi, N.
</
span
>
,
<
span
property
=
"schema:Name"
>
Fusi, N.
</
span
>
<
span
property
=
"schema:Name"
>
Sullender, M.
</
span
>
,
<
span
property
=
"schema:Name"
>
Sullender, M.
</
span
>
<
span
property
=
"schema:Name"
>
Hegde, M. a. V.
</
span
>
,
<
span
property
=
"schema:Name"
>
Hegde, M. a. V.
</
span
>
<
span
property
=
"schema:Name"
>
Donovan, K. F.
</
span
>
,
<
span
property
=
"schema:Name"
>
Donovan, K. F.
</
span
>
<
span
property
=
"schema:Name"
>
Smith, I.
</
span
>
,
<
span
property
=
"schema:Name"
>
Smith, I.
</
span
>
<
span
property
=
"schema:Name"
>
Tothova,
<
span
property
=
"schema:Name"
>
et al.
</
span
>
Zuzana,
</
span
>
,
<
span
property
=
"schema:Name"
>
Wilen, C.
</
span
>
,
<
span
property
=
"schema:Name"
>
Orchard, R.
</
span
>
,
<
span
property
=
"schema:Name"
>
Virgin, H. W. a. L.
</
span
>
,
<
span
property
=
"schema:Name"
>
Root, D. E.
</
span
>
</
span
>
</
span
>
<
span
property
=
"schema:name"
>
<
span
property
=
"schema:name"
>
Optimized sgRNA design to maximize activity and minimize off-target effects
Optimized sgRNA design to maximize activity and minimize off-target effects
...
@@ -387,8 +379,8 @@ of CRISPR-Cas9
...
@@ -387,8 +379,8 @@ of CRISPR-Cas9
</
span
>
.
</
span
>
.
<
i
property
=
"schema:publisher"
typeof
=
"schema:Organization"
>
Nature Biotechnology
</
i
>
<
i
property
=
"schema:publisher"
typeof
=
"schema:Organization"
>
Nature Biotechnology
</
i
>
<
b
property
=
"issueNumber"
typeof
=
"PublicationIssue"
>
34
</
b
>
,
<
b
property
=
"issueNumber"
typeof
=
"PublicationIssue"
>
34
</
b
>
,
<
span
property
=
"schema:pageBegin"
>
184
</
span
>
-
<
span
property
=
"schema:pageEnd"
>
191
</
span
>
<
span
property
=
"schema:pageBegin"
>
184
</
span
>
-
<
span
property
=
"schema:pageEnd"
>
191
</
span
>
(
<
time
property
=
"schema:datePublished"
datatype
=
"xsd:gYear"
dateTime
=
" 2016"
>
2016
</
time
>
).
(
<
time
property
=
"schema:datePublished"
datatype
=
"xsd:gYear"
dateTime
=
" 2016"
>
2016
</
time
>
).
<
a
className
=
"doi"
href
=
"https://doi.org/10.1038/nbt.3437"
>
doi: 10.1038/nbt.3437
</
a
>
<
a
className
=
"doi"
href
=
"https://doi.org/10.1038/nbt.3437"
>
doi: 10.1038/nbt.3437
</
a
>
</
li
>
</
li
>
...
@@ -396,9 +388,9 @@ of CRISPR-Cas9
...
@@ -396,9 +388,9 @@ of CRISPR-Cas9
<
li
typeof
=
"schema:ScolarlyArticle"
role
=
"doc-biblioentry"
property
=
"schema:citation"
id
=
"desc-4"
>
<
li
typeof
=
"schema:ScolarlyArticle"
role
=
"doc-biblioentry"
property
=
"schema:citation"
id
=
"desc-4"
>
<
span
property
=
"schema:author"
typeof
=
"schema:Person"
>
<
span
property
=
"schema:author"
typeof
=
"schema:Person"
>
<
span
property
=
"schema:Name"
>
<
span
property
=
"schema:Name"
>
White, N.
</
span
>
,
White, N.
</
span
>
<
span
property
=
"schema:Name"
>
Sadeeshkumar, H.
</
span
>
,
<
span
property
=
"schema:Name"
>
Sadeeshkumar, H.
</
span
>
<
span
property
=
"schema:Name"
>
Sun, A.
</
span
>
,
<
span
property
=
"schema:Name"
>
Sun, A.
</
span
>
<
span
property
=
"schema:Name"
>
Sudarsan, N. a. B.
</
span
>
<
span
property
=
"schema:Name"
>
Sudarsan, N. a. B.
</
span
>
</
span
>
</
span
>
<
span
property
=
"schema:name"
>
<
span
property
=
"schema:name"
>
...
@@ -407,15 +399,15 @@ bacteria
...
@@ -407,15 +399,15 @@ bacteria
</
span
>
.
</
span
>
.
<
i
property
=
"schema:publisher"
typeof
=
"schema:Organization"
>
Nature Chemical Biology
</
i
>
<
i
property
=
"schema:publisher"
typeof
=
"schema:Organization"
>
Nature Chemical Biology
</
i
>
<
b
property
=
"issueNumber"
typeof
=
"PublicationIssue"
>
18
</
b
>
,
<
b
property
=
"issueNumber"
typeof
=
"PublicationIssue"
>
18
</
b
>
,
<
span
property
=
"schema:pageBegin"
>
878
</
span
>
-
<
span
property
=
"schema:pageEnd"
>
885
</
span
>
<
span
property
=
"schema:pageBegin"
>
878
</
span
>
-
<
span
property
=
"schema:pageEnd"
>
885
</
span
>
(
<
time
property
=
"schema:datePublished"
datatype
=
"xsd:gYear"
dateTime
=
" 2022"
>
2022
</
time
>
).
(
<
time
property
=
"schema:datePublished"
datatype
=
"xsd:gYear"
dateTime
=
" 2022"
>
2022
</
time
>
).
<
a
className
=
"doi"
href
=
"https://doi.org/10.1038/s41589-022-01086-4"
>
doi: 10.1038/s41589-022-01086-4
</
a
>
<
a
className
=
"doi"
href
=
"https://doi.org/10.1038/s41589-022-01086-4"
>
doi: 10.1038/s41589-022-01086-4
</
a
>
</
li
>
</
li
>
{
/*<!-- Citation num 5--> */
}
{
/*<!-- Citation num 5--> */
}
<
li
typeof
=
"schema:ScolarlyArticle"
role
=
"doc-biblioentry"
property
=
"schema:citation"
id
=
"desc-5"
>
<
li
typeof
=
"schema:ScolarlyArticle"
role
=
"doc-biblioentry"
property
=
"schema:citation"
id
=
"desc-5"
>
<
span
property
=
"schema:author"
typeof
=
"schema:Person"
>
<
span
property
=
"schema:author"
typeof
=
"schema:Person"
>
<
span
property
=
"schema:Name"
>
Iwawaki, T.
</
span
>
,
<
span
property
=
"schema:Name"
>
Iwawaki, T.
</
span
>
<
span
property
=
"schema:Name"
>
Akai, R.
</
span
>
<
span
property
=
"schema:Name"
>
Akai, R.
</
span
>
</
span
>
</
span
>
<
span
property
=
"schema:name"
>
<
span
property
=
"schema:name"
>
...
@@ -424,8 +416,8 @@ stress-indicators
...
@@ -424,8 +416,8 @@ stress-indicators
</
span
>
.
</
span
>
.
<
i
property
=
"schema:publisher"
typeof
=
"schema:Organization"
>
Biochemical and Biophysical Research Communications
</
i
>
<
i
property
=
"schema:publisher"
typeof
=
"schema:Organization"
>
Biochemical and Biophysical Research Communications
</
i
>
<
b
property
=
"issueNumber"
typeof
=
"PublicationIssue"
>
350
</
b
>
,
<
b
property
=
"issueNumber"
typeof
=
"PublicationIssue"
>
350
</
b
>
,
<
span
property
=
"schema:pageBegin"
>
709
</
span
>
-
<
span
property
=
"schema:pageEnd"
>
715
</
span
>
<
span
property
=
"schema:pageBegin"
>
709
</
span
>
-
<
span
property
=
"schema:pageEnd"
>
715
</
span
>
(
<
time
property
=
"schema:datePublished"
datatype
=
"xsd:gYear"
dateTime
=
" 2006"
>
2006
</
time
>
).
(
<
time
property
=
"schema:datePublished"
datatype
=
"xsd:gYear"
dateTime
=
" 2006"
>
2006
</
time
>
).
<
a
className
=
"doi"
href
=
"https://doi.org/10.1016/j.bbrc.2006.09.100"
>
doi: 10.1016/j.bbrc.2006.09.100
</
a
>
<
a
className
=
"doi"
href
=
"https://doi.org/10.1016/j.bbrc.2006.09.100"
>
doi: 10.1016/j.bbrc.2006.09.100
</
a
>
</
li
>
</
li
>
...
@@ -433,13 +425,13 @@ stress-indicators
...
@@ -433,13 +425,13 @@ stress-indicators
<
li
typeof
=
"schema:ScolarlyArticle"
role
=
"doc-biblioentry"
property
=
"schema:citation"
id
=
"desc-6"
>
<
li
typeof
=
"schema:ScolarlyArticle"
role
=
"doc-biblioentry"
property
=
"schema:citation"
id
=
"desc-6"
>
<
span
property
=
"schema:author"
typeof
=
"schema:Person"
>
<
span
property
=
"schema:author"
typeof
=
"schema:Person"
>
<
span
property
=
"schema:Name"
>
<
span
property
=
"schema:Name"
>
Zhang, Y.
</
span
>
,
Zhang, Y.
</
span
>
<
span
property
=
"schema:Name"
>
Lin, S.
</
span
>
,
<
span
property
=
"schema:Name"
>
Lin, S.
</
span
>
<
span
property
=
"schema:Name"
>
Yao, J.
</
span
>
,
<
span
property
=
"schema:Name"
>
Yao, J.
</
span
>
<
span
property
=
"schema:Name"
>
Cai, W.
</
span
>
,
<
span
property
=
"schema:Name"
>
Cai, W.
</
span
>
<
span
property
=
"schema:Name"
>
Chen, H. a. A.
</
span
>
,
<
span
property
=
"schema:Name"
>
Chen, H. a. A.
</
span
>
<
span
property
=
"schema:Name"
>
Wang, Z.
</
span
>
,
<
span
property
=
"schema:Name"
>
Wang, Z.
</
span
>
<
span
property
=
"schema:Name"
>
Song, W
.
</
span
>
<
span
property
=
"schema:Name"
>
et al
.
</
span
>
</
span
>
</
span
>
<
span
property
=
"schema:name"
>
<
span
property
=
"schema:name"
>
XBP1 splicing contributes to endoplasmic reticulum stress-induced human islet
XBP1 splicing contributes to endoplasmic reticulum stress-induced human islet
...
@@ -447,8 +439,8 @@ amyloid polypeptide up-regulation
...
@@ -447,8 +439,8 @@ amyloid polypeptide up-regulation
</
span
>
.
</
span
>
.
<
i
property
=
"schema:publisher"
typeof
=
"schema:Organization"
>
Genes
&
Diseases
</
i
>
<
i
property
=
"schema:publisher"
typeof
=
"schema:Organization"
>
Genes
&
Diseases
</
i
>
<
b
property
=
"issueNumber"
typeof
=
"PublicationIssue"
>
11
</
b
>
,
<
b
property
=
"issueNumber"
typeof
=
"PublicationIssue"
>
11
</
b
>
,
<
span
property
=
"schema:pageBegin"
>
101148
</
span
>
<
span
property
=
"schema:pageBegin"
>
101148
</
span
>
(
<
time
property
=
"schema:datePublished"
datatype
=
"xsd:gYear"
dateTime
=
" 2023"
>
2023
</
time
>
).
(
<
time
property
=
"schema:datePublished"
datatype
=
"xsd:gYear"
dateTime
=
" 2023"
>
2023
</
time
>
).
<
a
className
=
"doi"
href
=
"https://doi.org/10.1016/j.gendis.2023.101148"
>
doi: 10.1016/j.gendis.2023.101148
</
a
>
<
a
className
=
"doi"
href
=
"https://doi.org/10.1016/j.gendis.2023.101148"
>
doi: 10.1016/j.gendis.2023.101148
</
a
>
</
li
>
</
li
>
...
@@ -456,21 +448,14 @@ amyloid polypeptide up-regulation
...
@@ -456,21 +448,14 @@ amyloid polypeptide up-regulation
<
li
typeof
=
"schema:ScolarlyArticle"
role
=
"doc-biblioentry"
property
=
"schema:citation"
id
=
"desc-7"
>
<
li
typeof
=
"schema:ScolarlyArticle"
role
=
"doc-biblioentry"
property
=
"schema:citation"
id
=
"desc-7"
>
<
span
property
=
"schema:author"
typeof
=
"schema:Person"
>
<
span
property
=
"schema:author"
typeof
=
"schema:Person"
>
<
span
property
=
"schema:Name"
>
<
span
property
=
"schema:Name"
>
Wei, T.
</
span
>
,
Wei, T.
</
span
>
<
span
property
=
"schema:Name"
>
Sun, Y.
</
span
>
,
<
span
property
=
"schema:Name"
>
Sun, Y.
</
span
>
<
span
property
=
"schema:Name"
>
Cheng, Q.
</
span
>
,
<
span
property
=
"schema:Name"
>
Cheng, Q.
</
span
>
<
span
property
=
"schema:Name"
>
Chatterjee, S.
</
span
>
,
<
span
property
=
"schema:Name"
>
Chatterjee, S.
</
span
>
<
span
property
=
"schema:Name"
>
Traylor,
<
span
property
=
"schema:Name"
>
Traylor,
Zachary,
</
span
>
,
Zachary,
</
span
>
<
span
property
=
"schema:Name"
>
Johnson, L. T.
</
span
>
,
<
span
property
=
"schema:Name"
>
Johnson, L. T.
</
span
>
<
span
property
=
"schema:Name"
>
Coquelin, M. L.
</
span
>
,
<
span
property
=
"schema:Name"
>
et al.
</
span
>
<
span
property
=
"schema:Name"
>
Wang, J. a. T.
</
span
>
,
<
span
property
=
"schema:Name"
>
Lian, X.
</
span
>
,
<
span
property
=
"schema:Name"
>
Wang, X.
</
span
>
,
<
span
property
=
"schema:Name"
>
Xiao, Y.
</
span
>
,
<
span
property
=
"schema:Name"
>
Hodges,
Craig A.,
</
span
>
,
<
span
property
=
"schema:Name"
>
Siegwart, D. J.
</
span
>
</
span
>
</
span
>
<
span
property
=
"schema:name"
>
<
span
property
=
"schema:name"
>
Lung SORT LNPs enable precise homology-directed repair mediated
Lung SORT LNPs enable precise homology-directed repair mediated
...
@@ -478,24 +463,21 @@ CRISPR/Cas genome correction in cystic fibrosis models
...
@@ -478,24 +463,21 @@ CRISPR/Cas genome correction in cystic fibrosis models
</
span
>
.
</
span
>
.
<
i
property
=
"schema:publisher"
typeof
=
"schema:Organization"
>
Nature Communications
</
i
>
<
i
property
=
"schema:publisher"
typeof
=
"schema:Organization"
>
Nature Communications
</
i
>
<
b
property
=
"issueNumber"
typeof
=
"PublicationIssue"
>
14
</
b
>
,
<
b
property
=
"issueNumber"
typeof
=
"PublicationIssue"
>
14
</
b
>
,
<
span
property
=
"schema:pageBegin"
>
7322
</
span
>
<
span
property
=
"schema:pageBegin"
>
7322
</
span
>
(
<
time
property
=
"schema:datePublished"
datatype
=
"xsd:gYear"
dateTime
=
" 2023"
>
2023
</
time
>
).
(
<
time
property
=
"schema:datePublished"
datatype
=
"xsd:gYear"
dateTime
=
" 2023"
>
2023
</
time
>
).
<
a
className
=
"doi"
href
=
"https://doi.org/10.1038/s41467-023-42948-2"
>
doi: 10.1038/s41467-023-42948-2
</
a
>
<
a
className
=
"doi"
href
=
"https://doi.org/10.1038/s41467-023-42948-2"
>
doi: 10.1038/s41467-023-42948-2
</
a
>
</
li
>
</
li
>
{
/*<!-- Citation num 8--> */
}
{
/*<!-- Citation num 8--> */
}
<
li
typeof
=
"schema:ScolarlyArticle"
role
=
"doc-biblioentry"
property
=
"schema:citation"
id
=
"desc-8"
>
<
li
typeof
=
"schema:ScolarlyArticle"
role
=
"doc-biblioentry"
property
=
"schema:citation"
id
=
"desc-8"
>
<
span
property
=
"schema:author"
typeof
=
"schema:Person"
>
<
span
property
=
"schema:author"
typeof
=
"schema:Person"
>
<
span
property
=
"schema:Name"
>
Ibrahim, M.
</
span
>
,
<
span
property
=
"schema:Name"
>
Ibrahim, M.
</
span
>
<
span
property
=
"schema:Name"
>
Ramadan, E.
</
span
>
,
<
span
property
=
"schema:Name"
>
Ramadan, E.
</
span
>
<
span
property
=
"schema:Name"
>
Elsadek, N. E.
</
span
>
,
<
span
property
=
"schema:Name"
>
Elsadek, N. E.
</
span
>
<
span
property
=
"schema:Name"
>
Shimizu, S. E. E. a. T.
</
span
>
,
<
span
property
=
"schema:Name"
>
Shimizu, S. E. E. a. T.
</
span
>
<
span
property
=
"schema:Name"
>
Ando, H.
</
span
>
,
<
span
property
=
"schema:Name"
>
Ando, H.
</
span
>
<
span
property
=
"schema:Name"
>
Ishima, Y.
</
span
>
,
<
span
property
=
"schema:Name"
>
Ishima, Y.
</
span
>
<
span
property
=
"schema:Name"
>
Elgarhy, O. H.
</
span
>
,
<
span
property
=
"schema:Name"
>
et al.
</
span
>
<
span
property
=
"schema:Name"
>
Sarhan, H. A.
</
span
>
,
<
span
property
=
"schema:Name"
>
Hussein, A. K.
</
span
>
,
<
span
property
=
"schema:Name"
>
Ishida, T.
</
span
>
</
span
>
</
span
>
<
span
property
=
"schema:name"
>
<
span
property
=
"schema:name"
>
Polyethylene glycol (PEG): The nature, immunogenicity, and role in the
Polyethylene glycol (PEG): The nature, immunogenicity, and role in the
...
@@ -503,8 +485,8 @@ hypersensitivity of PEGylated products
...
@@ -503,8 +485,8 @@ hypersensitivity of PEGylated products
</
span
>
.
</
span
>
.
<
i
property
=
"schema:publisher"
typeof
=
"schema:Organization"
>
Journal of Controlled Release
</
i
>
<
i
property
=
"schema:publisher"
typeof
=
"schema:Organization"
>
Journal of Controlled Release
</
i
>
<
b
property
=
"issueNumber"
typeof
=
"PublicationIssue"
>
351
</
b
>
,
<
b
property
=
"issueNumber"
typeof
=
"PublicationIssue"
>
351
</
b
>
,
<
span
property
=
"schema:pageBegin"
>
215
</
span
>
-
<
span
property
=
"schema:pageEnd"
>
230
</
span
>
<
span
property
=
"schema:pageBegin"
>
215
</
span
>
-
<
span
property
=
"schema:pageEnd"
>
230
</
span
>
(
<
time
property
=
"schema:datePublished"
datatype
=
"xsd:gYear"
dateTime
=
" 2022"
>
2022
</
time
>
).
(
<
time
property
=
"schema:datePublished"
datatype
=
"xsd:gYear"
dateTime
=
" 2022"
>
2022
</
time
>
).
<
a
className
=
"doi"
href
=
"https://doi.org/https://doi.org/10.1016/j.jconrel.2022.09.031"
>
doi: https://doi.org/10.1016/j.jconrel.2022.09.031
</
a
>
<
a
className
=
"doi"
href
=
"https://doi.org/https://doi.org/10.1016/j.jconrel.2022.09.031"
>
doi: https://doi.org/10.1016/j.jconrel.2022.09.031
</
a
>
</
li
>
</
li
>
...
@@ -512,15 +494,13 @@ hypersensitivity of PEGylated products
...
@@ -512,15 +494,13 @@ hypersensitivity of PEGylated products
<
li
typeof
=
"schema:ScolarlyArticle"
role
=
"doc-biblioentry"
property
=
"schema:citation"
id
=
"desc-9"
>
<
li
typeof
=
"schema:ScolarlyArticle"
role
=
"doc-biblioentry"
property
=
"schema:citation"
id
=
"desc-9"
>
<
span
property
=
"schema:author"
typeof
=
"schema:Person"
>
<
span
property
=
"schema:author"
typeof
=
"schema:Person"
>
<
span
property
=
"schema:Name"
>
<
span
property
=
"schema:Name"
>
Jiang, A. Y.
</
span
>
,
Jiang, A. Y.
</
span
>
<
span
property
=
"schema:Name"
>
Witten, J.
</
span
>
,
<
span
property
=
"schema:Name"
>
Witten, J.
</
span
>
<
span
property
=
"schema:Name"
>
Raji, I. O.
</
span
>
,
<
span
property
=
"schema:Name"
>
Raji, I. O.
</
span
>
<
span
property
=
"schema:Name"
>
Eweje, F. a. M.
</
span
>
,
<
span
property
=
"schema:Name"
>
Eweje, F. a. M.
</
span
>
<
span
property
=
"schema:Name"
>
Meng, S.
</
span
>
,
<
span
property
=
"schema:Name"
>
Meng, S.
</
span
>
<
span
property
=
"schema:Name"
>
Oladimeji, F. A.
</
span
>
,
<
span
property
=
"schema:Name"
>
Oladimeji, F. A.
</
span
>
<
span
property
=
"schema:Name"
>
Hu, Y. a. M.
</
span
>
,
<
span
property
=
"schema:Name"
>
et al.
</
span
>
<
span
property
=
"schema:Name"
>
Langer, R.
</
span
>
,
<
span
property
=
"schema:Name"
>
Anderson, D. G.
</
span
>
</
span
>
</
span
>
<
span
property
=
"schema:name"
>
<
span
property
=
"schema:name"
>
Combinatorial development of nebulized mRNA delivery formulations for the
Combinatorial development of nebulized mRNA delivery formulations for the
...
@@ -528,8 +508,8 @@ lungs
...
@@ -528,8 +508,8 @@ lungs
</
span
>
.
</
span
>
.
<
i
property
=
"schema:publisher"
typeof
=
"schema:Organization"
>
Nature Nanotechnology
</
i
>
<
i
property
=
"schema:publisher"
typeof
=
"schema:Organization"
>
Nature Nanotechnology
</
i
>
<
b
property
=
"issueNumber"
typeof
=
"PublicationIssue"
>
19
</
b
>
,
<
b
property
=
"issueNumber"
typeof
=
"PublicationIssue"
>
19
</
b
>
,
<
span
property
=
"schema:pageBegin"
>
364
</
span
>
-
<
span
property
=
"schema:pageEnd"
>
375
</
span
>
<
span
property
=
"schema:pageBegin"
>
364
</
span
>
-
<
span
property
=
"schema:pageEnd"
>
375
</
span
>
(
<
time
property
=
"schema:datePublished"
datatype
=
"xsd:gYear"
dateTime
=
" 2024"
>
2024
</
time
>
).
(
<
time
property
=
"schema:datePublished"
datatype
=
"xsd:gYear"
dateTime
=
" 2024"
>
2024
</
time
>
).
<
a
className
=
"doi"
href
=
"https://doi.org/10.1038/s41565-023-01548-3"
>
doi: 10.1038/s41565-023-01548-3
</
a
>
<
a
className
=
"doi"
href
=
"https://doi.org/10.1038/s41565-023-01548-3"
>
doi: 10.1038/s41565-023-01548-3
</
a
>
</
li
>
</
li
>
...
@@ -537,24 +517,14 @@ lungs
...
@@ -537,24 +517,14 @@ lungs
<
li
typeof
=
"schema:ScolarlyArticle"
role
=
"doc-biblioentry"
property
=
"schema:citation"
id
=
"desc-10"
>
<
li
typeof
=
"schema:ScolarlyArticle"
role
=
"doc-biblioentry"
property
=
"schema:citation"
id
=
"desc-10"
>
<
span
property
=
"schema:author"
typeof
=
"schema:Person"
>
<
span
property
=
"schema:author"
typeof
=
"schema:Person"
>
<
span
property
=
"schema:Name"
>
<
span
property
=
"schema:Name"
>
Vilà-González, M.
</
span
>
,
Vilà-González, M.
</
span
>
<
span
property
=
"schema:Name"
>
Pinte, L.
</
span
>
,
<
span
property
=
"schema:Name"
>
Pinte, L.
</
span
>
<
span
property
=
"schema:Name"
>
Fradique, R.
</
span
>
,
<
span
property
=
"schema:Name"
>
Fradique, R.
</
span
>
<
span
property
=
"schema:Name"
>
Causa,
<
span
property
=
"schema:Name"
>
Causa,
Erika,
</
span
>
,
Erika,
</
span
>
<
span
property
=
"schema:Name"
>
Kool, H.
</
span
>
,
<
span
property
=
"schema:Name"
>
Kool, H.
</
span
>
<
span
property
=
"schema:Name"
>
Rodrat, M.
</
span
>
,
<
span
property
=
"schema:Name"
>
Rodrat, M.
</
span
>
<
span
property
=
"schema:Name"
>
Morell, C. M. a. A.
</
span
>
,
<
span
property
=
"schema:Name"
>
et al.
</
span
>
<
span
property
=
"schema:Name"
>
Porter, L.
</
span
>
,
<
span
property
=
"schema:Name"
>
Guo, W.
</
span
>
,
<
span
property
=
"schema:Name"
>
Maeshima, R. a. H.
</
span
>
,
<
span
property
=
"schema:Name"
>
McCaughan, F.
</
span
>
,
<
span
property
=
"schema:Name"
>
Granata, A.
</
span
>
,
<
span
property
=
"schema:Name"
>
Sheppard,
David N.,
</
span
>
,
<
span
property
=
"schema:Name"
>
Floto, R. A.
</
span
>
,
<
span
property
=
"schema:Name"
>
Rawlins, E. L.
</
span
>
,
<
span
property
=
"schema:Name"
>
Cicuta, P. a. V.
</
span
>
</
span
>
</
span
>
<
span
property
=
"schema:name"
>
<
span
property
=
"schema:name"
>
In vitro platform to model the function of ionocytes in the human airway
In vitro platform to model the function of ionocytes in the human airway
...
@@ -562,8 +532,8 @@ epithelium
...
@@ -562,8 +532,8 @@ epithelium
</
span
>
.
</
span
>
.
<
i
property
=
"schema:publisher"
typeof
=
"schema:Organization"
>
Respiratory Research
</
i
>
<
i
property
=
"schema:publisher"
typeof
=
"schema:Organization"
>
Respiratory Research
</
i
>
<
b
property
=
"issueNumber"
typeof
=
"PublicationIssue"
>
25
</
b
>
,
<
b
property
=
"issueNumber"
typeof
=
"PublicationIssue"
>
25
</
b
>
,
<
span
property
=
"schema:pageBegin"
>
180
</
span
>
<
span
property
=
"schema:pageBegin"
>
180
</
span
>
(
<
time
property
=
"schema:datePublished"
datatype
=
"xsd:gYear"
dateTime
=
" 2024"
>
2024
</
time
>
).
(
<
time
property
=
"schema:datePublished"
datatype
=
"xsd:gYear"
dateTime
=
" 2024"
>
2024
</
time
>
).
<
a
className
=
"doi"
href
=
"https://doi.org/10.1186/s12931-024-02800-7"
>
doi: 10.1186/s12931-024-02800-7
</
a
>
<
a
className
=
"doi"
href
=
"https://doi.org/10.1186/s12931-024-02800-7"
>
doi: 10.1186/s12931-024-02800-7
</
a
>
</
li
>
</
li
>
...
@@ -588,14 +558,14 @@ biosecurity threats
...
@@ -588,14 +558,14 @@ biosecurity threats
</
span
>
.
</
span
>
.
<
i
property
=
"schema:publisher"
typeof
=
"schema:Organization"
>
Defense Horizons
</
i
>
<
i
property
=
"schema:publisher"
typeof
=
"schema:Organization"
>
Defense Horizons
</
i
>
<
b
property
=
"issueNumber"
typeof
=
"PublicationIssue"
>
85
</
b
>
,
<
b
property
=
"issueNumber"
typeof
=
"PublicationIssue"
>
85
</
b
>
,
<
span
property
=
"schema:pageBegin"
>
1
</
span
>
-
<
span
property
=
"schema:pageEnd"
>
16
</
span
>
<
span
property
=
"schema:pageBegin"
>
1
</
span
>
-
<
span
property
=
"schema:pageEnd"
>
16
</
span
>
(
<
time
property
=
"schema:datePublished"
datatype
=
"xsd:gYear"
dateTime
=
" 2020"
>
2020
</
time
>
).
(
<
time
property
=
"schema:datePublished"
datatype
=
"xsd:gYear"
dateTime
=
" 2020"
>
2020
</
time
>
).
</
li
>
</
li
>
{
/*<!-- Citation num 13--> */
}
{
/*<!-- Citation num 13--> */
}
<
li
typeof
=
"schema:ScolarlyArticle"
role
=
"doc-biblioentry"
property
=
"schema:citation"
id
=
"desc-13"
>
<
li
typeof
=
"schema:ScolarlyArticle"
role
=
"doc-biblioentry"
property
=
"schema:citation"
id
=
"desc-13"
>
<
span
property
=
"schema:author"
typeof
=
"schema:Person"
>
<
span
property
=
"schema:author"
typeof
=
"schema:Person"
>
<
span
property
=
"schema:Name"
>
Cohen, J.
</
span
>
,
<
span
property
=
"schema:Name"
>
Cohen, J.
</
span
>
<
span
property
=
"schema:Name"
>
Desai, T.
</
span
>
<
span
property
=
"schema:Name"
>
Desai, T.
</
span
>
</
span
>
</
span
>
<
span
property
=
"schema:name"
>
<
span
property
=
"schema:name"
>
...
@@ -604,15 +574,15 @@ disruption?
...
@@ -604,15 +574,15 @@ disruption?
</
span
>
.
</
span
>
.
<
i
property
=
"schema:publisher"
typeof
=
"schema:Organization"
>
Journal of Bioethical Inquiry
</
i
>
<
i
property
=
"schema:publisher"
typeof
=
"schema:Organization"
>
Journal of Bioethical Inquiry
</
i
>
<
b
property
=
"issueNumber"
typeof
=
"PublicationIssue"
>
16
</
b
>
,
<
b
property
=
"issueNumber"
typeof
=
"PublicationIssue"
>
16
</
b
>
,
<
span
property
=
"schema:pageBegin"
>
219
</
span
>
-
<
span
property
=
"schema:pageEnd"
>
228
</
span
>
<
span
property
=
"schema:pageBegin"
>
219
</
span
>
-
<
span
property
=
"schema:pageEnd"
>
228
</
span
>
(
<
time
property
=
"schema:datePublished"
datatype
=
"xsd:gYear"
dateTime
=
" 2019"
>
2019
</
time
>
).
(
<
time
property
=
"schema:datePublished"
datatype
=
"xsd:gYear"
dateTime
=
" 2019"
>
2019
</
time
>
).
<
a
className
=
"doi"
href
=
"https://doi.org/10.1007/s11673-019-09914-5"
>
doi: 10.1007/s11673-019-09914-5
</
a
>
<
a
className
=
"doi"
href
=
"https://doi.org/10.1007/s11673-019-09914-5"
>
doi: 10.1007/s11673-019-09914-5
</
a
>
</
li
>
</
li
>
{
/*<!-- Citation num 14--> */
}
{
/*<!-- Citation num 14--> */
}
<
li
typeof
=
"schema:ScolarlyArticle"
role
=
"doc-biblioentry"
property
=
"schema:citation"
id
=
"desc-14"
>
<
li
typeof
=
"schema:ScolarlyArticle"
role
=
"doc-biblioentry"
property
=
"schema:citation"
id
=
"desc-14"
>
<
span
property
=
"schema:author"
typeof
=
"schema:Person"
>
<
span
property
=
"schema:author"
typeof
=
"schema:Person"
>
<
span
property
=
"schema:Name"
>
Doudna, J. A.
</
span
>
,
<
span
property
=
"schema:Name"
>
Doudna, J. A.
</
span
>
<
span
property
=
"schema:Name"
>
Charpentier, E.
</
span
>
<
span
property
=
"schema:Name"
>
Charpentier, E.
</
span
>
</
span
>
</
span
>
<
span
property
=
"schema:name"
>
<
span
property
=
"schema:name"
>
...
@@ -621,15 +591,15 @@ challenges
...
@@ -621,15 +591,15 @@ challenges
</
span
>
.
</
span
>
.
<
i
property
=
"schema:publisher"
typeof
=
"schema:Organization"
>
Nature Reviews Genetics
</
i
>
<
i
property
=
"schema:publisher"
typeof
=
"schema:Organization"
>
Nature Reviews Genetics
</
i
>
<
b
property
=
"issueNumber"
typeof
=
"PublicationIssue"
>
21
</
b
>
,
<
b
property
=
"issueNumber"
typeof
=
"PublicationIssue"
>
21
</
b
>
,
<
span
property
=
"schema:pageBegin"
>
144
</
span
>
-
<
span
property
=
"schema:pageEnd"
>
156
</
span
>
<
span
property
=
"schema:pageBegin"
>
144
</
span
>
-
<
span
property
=
"schema:pageEnd"
>
156
</
span
>
(
<
time
property
=
"schema:datePublished"
datatype
=
"xsd:gYear"
dateTime
=
" 2020"
>
2020
</
time
>
).
(
<
time
property
=
"schema:datePublished"
datatype
=
"xsd:gYear"
dateTime
=
" 2020"
>
2020
</
time
>
).
<
a
className
=
"doi"
href
=
"https://doi.org/10.1038/s41576-019-0182-7"
>
doi: 10.1038/s41576-019-0182-7
</
a
>
<
a
className
=
"doi"
href
=
"https://doi.org/10.1038/s41576-019-0182-7"
>
doi: 10.1038/s41576-019-0182-7
</
a
>
</
li
>
</
li
>
{
/*<!-- Citation num 15--> */
}
{
/*<!-- Citation num 15--> */
}
<
li
typeof
=
"schema:ScolarlyArticle"
role
=
"doc-biblioentry"
property
=
"schema:citation"
id
=
"desc-15"
>
<
li
typeof
=
"schema:ScolarlyArticle"
role
=
"doc-biblioentry"
property
=
"schema:citation"
id
=
"desc-15"
>
<
span
property
=
"schema:author"
typeof
=
"schema:Person"
>
<
span
property
=
"schema:author"
typeof
=
"schema:Person"
>
<
span
property
=
"schema:Name"
>
Shwartz, M.
</
span
>
,
<
span
property
=
"schema:Name"
>
Shwartz, M.
</
span
>
<
span
property
=
"schema:Name"
>
Conklin, B.
</
span
>
<
span
property
=
"schema:Name"
>
Conklin, B.
</
span
>
</
span
>
</
span
>
<
span
property
=
"schema:name"
>
<
span
property
=
"schema:name"
>
...
@@ -638,7 +608,7 @@ portrayal
...
@@ -638,7 +608,7 @@ portrayal
</
span
>
.
</
span
>
.
<
i
property
=
"schema:publisher"
typeof
=
"schema:Organization"
>
Journal of Science Communication
</
i
>
<
i
property
=
"schema:publisher"
typeof
=
"schema:Organization"
>
Journal of Science Communication
</
i
>
<
b
property
=
"issueNumber"
typeof
=
"PublicationIssue"
>
18
</
b
>
,
<
b
property
=
"issueNumber"
typeof
=
"PublicationIssue"
>
18
</
b
>
,
(
<
time
property
=
"schema:datePublished"
datatype
=
"xsd:gYear"
dateTime
=
" 2019"
>
2019
</
time
>
).
(
<
time
property
=
"schema:datePublished"
datatype
=
"xsd:gYear"
dateTime
=
" 2019"
>
2019
</
time
>
).
<
a
className
=
"doi"
href
=
"https://doi.org/10.22323/2.18040202"
>
doi: 10.22323/2.18040202
</
a
>
<
a
className
=
"doi"
href
=
"https://doi.org/10.22323/2.18040202"
>
doi: 10.22323/2.18040202
</
a
>
</
li
>
</
li
>
...
@@ -655,14 +625,14 @@ portrayal
...
@@ -655,14 +625,14 @@ portrayal
{
/*<!-- Citation num 17--> */
}
{
/*<!-- Citation num 17--> */
}
<
li
typeof
=
"schema:ScolarlyArticle"
role
=
"doc-biblioentry"
property
=
"schema:citation"
id
=
"desc-17"
>
<
li
typeof
=
"schema:ScolarlyArticle"
role
=
"doc-biblioentry"
property
=
"schema:citation"
id
=
"desc-17"
>
<
span
property
=
"schema:author"
typeof
=
"schema:Person"
>
<
span
property
=
"schema:author"
typeof
=
"schema:Person"
>
<
span
property
=
"schema:Name"
>
Rubeis, G.
</
span
>
,
<
span
property
=
"schema:Name"
>
Rubeis, G.
</
span
>
<
span
property
=
"schema:Name"
>
Steger, F.
</
span
>
<
span
property
=
"schema:Name"
>
Steger, F.
</
span
>
</
span
>
</
span
>
<
span
property
=
"schema:name"
>
Risks and benefits of human germline genome editing: An ethical analysis
</
span
>
.
<
span
property
=
"schema:name"
>
Risks and benefits of human germline genome editing: An ethical analysis
</
span
>
.
<
i
property
=
"schema:publisher"
typeof
=
"schema:Organization"
>
Asian Bioethics Review
</
i
>
<
i
property
=
"schema:publisher"
typeof
=
"schema:Organization"
>
Asian Bioethics Review
</
i
>
<
b
property
=
"issueNumber"
typeof
=
"PublicationIssue"
>
10
</
b
>
,
<
b
property
=
"issueNumber"
typeof
=
"PublicationIssue"
>
10
</
b
>
,
<
span
property
=
"schema:pageBegin"
>
133
</
span
>
-
<
span
property
=
"schema:pageEnd"
>
141
</
span
>
<
span
property
=
"schema:pageBegin"
>
133
</
span
>
-
<
span
property
=
"schema:pageEnd"
>
141
</
span
>
(
<
time
property
=
"schema:datePublished"
datatype
=
"xsd:gYear"
dateTime
=
" 2018"
>
2018
</
time
>
).
(
<
time
property
=
"schema:datePublished"
datatype
=
"xsd:gYear"
dateTime
=
" 2018"
>
2018
</
time
>
).
<
a
className
=
"doi"
href
=
"https://doi.org/10.1007/s41649-018-0056-x"
>
doi: 10.1007/s41649-018-0056-x
</
a
>
<
a
className
=
"doi"
href
=
"https://doi.org/10.1007/s41649-018-0056-x"
>
doi: 10.1007/s41649-018-0056-x
</
a
>
</
li
>
</
li
>
...
@@ -677,8 +647,8 @@ Therapy
...
@@ -677,8 +647,8 @@ Therapy
</
span
>
.
</
span
>
.
<
i
property
=
"schema:publisher"
typeof
=
"schema:Organization"
>
Advances in Cell and Gene Therapy
</
i
>
<
i
property
=
"schema:publisher"
typeof
=
"schema:Organization"
>
Advances in Cell and Gene Therapy
</
i
>
<
b
property
=
"issueNumber"
typeof
=
"PublicationIssue"
>
2022
</
b
>
,
<
b
property
=
"issueNumber"
typeof
=
"PublicationIssue"
>
2022
</
b
>
,
<
span
property
=
"schema:pageBegin"
>
1
</
span
>
-
<
span
property
=
"schema:pageEnd"
>
5
</
span
>
<
span
property
=
"schema:pageBegin"
>
1
</
span
>
-
<
span
property
=
"schema:pageEnd"
>
5
</
span
>
(
<
time
property
=
"schema:datePublished"
datatype
=
"xsd:gYear"
dateTime
=
" 2022"
>
2022
</
time
>
).
(
<
time
property
=
"schema:datePublished"
datatype
=
"xsd:gYear"
dateTime
=
" 2022"
>
2022
</
time
>
).
<
a
className
=
"doi"
href
=
"https://doi.org/10.1155/2022/1015996"
>
doi: 10.1155/2022/1015996
</
a
>
<
a
className
=
"doi"
href
=
"https://doi.org/10.1155/2022/1015996"
>
doi: 10.1155/2022/1015996
</
a
>
</
li
>
</
li
>
...
@@ -695,7 +665,7 @@ Therapy
...
@@ -695,7 +665,7 @@ Therapy
{
/*<!-- Citation num 20--> */
}
{
/*<!-- Citation num 20--> */
}
<
li
typeof
=
"schema:Book"
role
=
"doc-biblioentry"
property
=
"schema:citation"
id
=
"desc-20"
>
<
li
typeof
=
"schema:Book"
role
=
"doc-biblioentry"
property
=
"schema:citation"
id
=
"desc-20"
>
<
span
property
=
"schema:author"
typeof
=
"schema:Organisation"
>
<
span
property
=
"schema:author"
typeof
=
"schema:Organisation"
>
<
span
property
=
"schema:Name"
>
Gstraunthaler, G.
</
span
>
,
<
span
property
=
"schema:Name"
>
Gstraunthaler, G.
</
span
>
<
span
property
=
"schema:Name"
>
Lindl, T.
</
span
>
<
span
property
=
"schema:Name"
>
Lindl, T.
</
span
>
</
span
>
</
span
>
<
span
property
=
"schema:name"
>
Allgemeine Aspekte der Primärkultur.
</
span
>
<
span
property
=
"schema:name"
>
Allgemeine Aspekte der Primärkultur.
</
span
>
...
@@ -727,42 +697,19 @@ Therapy
...
@@ -727,42 +697,19 @@ Therapy
<
li
typeof
=
"schema:ScolarlyArticle"
role
=
"doc-biblioentry"
property
=
"schema:citation"
id
=
"desc-23"
>
<
li
typeof
=
"schema:ScolarlyArticle"
role
=
"doc-biblioentry"
property
=
"schema:citation"
id
=
"desc-23"
>
<
span
property
=
"schema:author"
typeof
=
"schema:Person"
>
<
span
property
=
"schema:author"
typeof
=
"schema:Person"
>
<
span
property
=
"schema:Name"
>
<
span
property
=
"schema:Name"
>
Kiani, A. K.
</
span
>
,
Kiani, A. K.
</
span
>
<
span
property
=
"schema:Name"
>
Pheby, D.
</
span
>
,
<
span
property
=
"schema:Name"
>
Pheby, D.
</
span
>
<
span
property
=
"schema:Name"
>
Henehan, G.
</
span
>
,
<
span
property
=
"schema:Name"
>
Henehan, G.
</
span
>
<
span
property
=
"schema:Name"
>
Brown, R. a. S.
</
span
>
,
<
span
property
=
"schema:Name"
>
Brown, R. a. S.
</
span
>
<
span
property
=
"schema:Name"
>
Sykora, P.
</
span
>
,
<
span
property
=
"schema:Name"
>
Sykora, P.
</
span
>
<
span
property
=
"schema:Name"
>
Marks, R.
</
span
>
,
<
span
property
=
"schema:Name"
>
Marks, R.
</
span
>
<
span
property
=
"schema:Name"
>
Falsini, B. a. C.
</
span
>
,
<
span
property
=
"schema:Name"
>
et al.
</
span
>
<
span
property
=
"schema:Name"
>
Miertus, S.
</
span
>
,
<
span
property
=
"schema:Name"
>
Lorusso, L. a. D.
</
span
>
,
<
span
property
=
"schema:Name"
>
Tartaglia, G. M.
</
span
>
,
<
span
property
=
"schema:Name"
>
Ergoren, M. C.
</
span
>
,
<
span
property
=
"schema:Name"
>
Dundar, M.
</
span
>
,
<
span
property
=
"schema:Name"
>
Michelini, S.
</
span
>
,
<
span
property
=
"schema:Name"
>
Malacarne, D. a. B.
</
span
>
,
<
span
property
=
"schema:Name"
>
Dautaj, A.
</
span
>
,
<
span
property
=
"schema:Name"
>
Donato, K.
</
span
>
,
<
span
property
=
"schema:Name"
>
Medori, M. C.
</
span
>
,
<
span
property
=
"schema:Name"
>
Beccari, T.
</
span
>
,
<
span
property
=
"schema:Name"
>
Samaja, M.
</
span
>
,
<
span
property
=
"schema:Name"
>
Connelly, S. T.
</
span
>
,
<
span
property
=
"schema:Name"
>
Martin, D.
</
span
>
,
<
span
property
=
"schema:Name"
>
Morresi, A.
</
span
>
,
<
span
property
=
"schema:Name"
>
Bacu, A.
</
span
>
,
<
span
property
=
"schema:Name"
>
Herbst,
Karen L.,
</
span
>
,
<
span
property
=
"schema:Name"
>
Kapustin, M.
</
span
>
,
<
span
property
=
"schema:Name"
>
Stuppia, L.
</
span
>
,
<
span
property
=
"schema:Name"
>
Lumer, L. a. F.
</
span
>
,
<
span
property
=
"schema:Name"
>
Bertelli, M.
</
span
>
,
<
span
property
=
"schema:Name"
>
GROUP, I. B. S.
</
span
>
</
span
>
</
span
>
<
span
property
=
"schema:name"
>
Ethical considerations regarding animal experimentation
</
span
>
.
<
span
property
=
"schema:name"
>
Ethical considerations regarding animal experimentation
</
span
>
.
<
i
property
=
"schema:publisher"
typeof
=
"schema:Organization"
>
Journal of Preventive Medicine and Hygiene
</
i
>
<
i
property
=
"schema:publisher"
typeof
=
"schema:Organization"
>
Journal of Preventive Medicine and Hygiene
</
i
>
<
b
property
=
"issueNumber"
typeof
=
"PublicationIssue"
>
63
</
b
>
,
<
b
property
=
"issueNumber"
typeof
=
"PublicationIssue"
>
63
</
b
>
,
<
span
property
=
"schema:pageBegin"
>
E255
</
span
>
-
<
span
property
=
"schema:pageEnd"
>
E266
</
span
>
<
span
property
=
"schema:pageBegin"
>
E255
</
span
>
-
<
span
property
=
"schema:pageEnd"
>
E266
</
span
>
(
<
time
property
=
"schema:datePublished"
datatype
=
"xsd:gYear"
dateTime
=
" 2022"
>
2022
</
time
>
).
(
<
time
property
=
"schema:datePublished"
datatype
=
"xsd:gYear"
dateTime
=
" 2022"
>
2022
</
time
>
).
<
a
className
=
"doi"
href
=
"https://doi.org/10.15167/2421-4248/jpmh2022.63.2S3.2768"
>
doi: 10.15167/2421-4248/jpmh2022.63.2S3.2768
</
a
>
<
a
className
=
"doi"
href
=
"https://doi.org/10.15167/2421-4248/jpmh2022.63.2S3.2768"
>
doi: 10.15167/2421-4248/jpmh2022.63.2S3.2768
</
a
>
</
li
>
</
li
>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment