forked from D-Net/dnet-hadoop
IndexRecordTransformerTest for producing a record that can be manually submitted to solr
This commit is contained in:
parent
6424cd9062
commit
1517bf7c92
|
@ -1,39 +1,100 @@
|
|||
|
||||
package eu.dnetlib.dhp.oa.provision;
|
||||
|
||||
import static org.junit.jupiter.api.Assertions.assertNotNull;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.io.StringReader;
|
||||
import java.io.StringWriter;
|
||||
import java.nio.file.Files;
|
||||
import java.nio.file.Path;
|
||||
import java.util.List;
|
||||
|
||||
import javax.xml.transform.Transformer;
|
||||
import javax.xml.transform.TransformerException;
|
||||
import javax.xml.transform.stream.StreamResult;
|
||||
import javax.xml.transform.stream.StreamSource;
|
||||
|
||||
import org.apache.commons.io.IOUtils;
|
||||
import org.apache.solr.client.solrj.util.ClientUtils;
|
||||
import org.apache.solr.common.SolrInputDocument;
|
||||
import org.junit.jupiter.api.Assertions;
|
||||
import org.junit.jupiter.api.BeforeEach;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
import com.fasterxml.jackson.databind.ObjectMapper;
|
||||
import com.google.common.collect.Lists;
|
||||
|
||||
import eu.dnetlib.dhp.oa.provision.model.JoinedEntity;
|
||||
import eu.dnetlib.dhp.oa.provision.model.RelatedEntity;
|
||||
import eu.dnetlib.dhp.oa.provision.model.RelatedEntityWrapper;
|
||||
import eu.dnetlib.dhp.oa.provision.utils.ContextMapper;
|
||||
import eu.dnetlib.dhp.oa.provision.utils.StreamingInputDocumentFactory;
|
||||
import eu.dnetlib.dhp.oa.provision.utils.XmlRecordFactory;
|
||||
import eu.dnetlib.dhp.schema.oaf.Project;
|
||||
import eu.dnetlib.dhp.schema.oaf.Publication;
|
||||
import eu.dnetlib.dhp.schema.oaf.Relation;
|
||||
import eu.dnetlib.dhp.utils.saxon.SaxonTransformerFactory;
|
||||
|
||||
public class IndexRecordTransformerTest {
|
||||
|
||||
public static final String VERSION = "2021-04-15T10:05:53Z";
|
||||
public static final String DSID = "b9ee796a-c49f-4473-a708-e7d67b84c16d_SW5kZXhEU1Jlc291cmNlcy9JbmRleERTUmVzb3VyY2VUeXBl";
|
||||
|
||||
private ContextMapper contextMapper;
|
||||
|
||||
@BeforeEach
|
||||
public void setUp() {
|
||||
contextMapper = new ContextMapper();
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testTrasformRecord() throws IOException, TransformerException {
|
||||
String fields = IOUtils.toString(getClass().getResourceAsStream("fields.xml"));
|
||||
public void testPreBuiltRecordTransformation() throws IOException, TransformerException {
|
||||
String record = IOUtils.toString(getClass().getResourceAsStream("record.xml"));
|
||||
|
||||
testRecordTransformation(record);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testPublicationRecordTransformation() throws IOException, TransformerException {
|
||||
|
||||
XmlRecordFactory xmlRecordFactory = new XmlRecordFactory(contextMapper, false, XmlConverterJob.schemaLocation,
|
||||
XmlRecordFactoryTest.otherDsTypeId);
|
||||
|
||||
Publication p = load("publication.json", Publication.class);
|
||||
Project pj = load("project.json", Project.class);
|
||||
Relation rel = load("relToValidatedProject.json", Relation.class);
|
||||
|
||||
JoinedEntity je = new JoinedEntity<>(p);
|
||||
je
|
||||
.setLinks(
|
||||
Lists
|
||||
.newArrayList(
|
||||
new RelatedEntityWrapper(rel,
|
||||
CreateRelatedEntitiesJob_phase1.asRelatedEntity(pj, Project.class))));
|
||||
|
||||
String record = xmlRecordFactory.build(je);
|
||||
|
||||
assertNotNull(record);
|
||||
|
||||
testRecordTransformation(record);
|
||||
}
|
||||
|
||||
private void testRecordTransformation(String record) throws IOException, TransformerException {
|
||||
String fields = IOUtils.toString(getClass().getResourceAsStream("fields.xml"));
|
||||
String xslt = IOUtils.toString(getClass().getResourceAsStream("layoutToRecordTransformer.xsl"));
|
||||
|
||||
String transformer = XmlIndexingJob.getLayoutTransformer("DMF", fields, xslt);
|
||||
|
||||
Transformer tr = SaxonTransformerFactory.newInstance(transformer);
|
||||
|
||||
String a = XmlIndexingJob.toIndexRecord(tr, record);
|
||||
String indexRecordXML = XmlIndexingJob.toIndexRecord(tr, record);
|
||||
|
||||
System.out.println(a);
|
||||
SolrInputDocument solrDoc = new StreamingInputDocumentFactory(VERSION, DSID).parseDocument(indexRecordXML);
|
||||
|
||||
final String xmlDoc = ClientUtils.toXML(solrDoc);
|
||||
|
||||
Assertions.assertNotNull(xmlDoc);
|
||||
System.out.println(xmlDoc);
|
||||
}
|
||||
|
||||
private <T> T load(String fileName, Class<T> clazz) throws IOException {
|
||||
return XmlRecordFactoryTest.OBJECT_MAPPER
|
||||
.readValue(IOUtils.toString(getClass().getResourceAsStream(fileName)), clazz);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -29,9 +29,9 @@ import eu.dnetlib.dhp.schema.oaf.Relation;
|
|||
|
||||
public class XmlRecordFactoryTest {
|
||||
|
||||
private static final String otherDsTypeId = "scholarcomminfra,infospace,pubsrepository::mock,entityregistry,entityregistry::projects,entityregistry::repositories,websource";
|
||||
public static final String otherDsTypeId = "scholarcomminfra,infospace,pubsrepository::mock,entityregistry,entityregistry::projects,entityregistry::repositories,websource";
|
||||
|
||||
private static ObjectMapper OBJECT_MAPPER = new ObjectMapper()
|
||||
public static ObjectMapper OBJECT_MAPPER = new ObjectMapper()
|
||||
.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false);
|
||||
|
||||
@Test
|
||||
|
|
|
@ -61,7 +61,7 @@
|
|||
<FIELD indexable="true" name="funderoriginalname" result="false" stat="false" tokenizable="false" xpath="//*[local-name()='entity']/*[local-name()='project']/fundingtree/funder/originalname"/>
|
||||
<FIELD indexable="true" name="funderjurisdiction" result="false" stat="false" tokenizable="false" xpath="//*[local-name()='entity']/*[local-name()='project']/fundingtree/funder/jurisdiction"/><!-- RESULT FIELDS -->
|
||||
<FIELD indexable="true" name="resulttitle" result="false" stat="false" xpath="//*[local-name() = 'entity']/*[local-name() ='result']/title | //*[local-name()='entity']/*[local-name()='result']/children/result/title"/>
|
||||
<FIELD indexable="true" name="resultsubject" result="false" stat="false" type="string_ci" xpath="distinct-values(//*[local-name()='entity']/*[local-name()='result']/subject)"/>
|
||||
<FIELD indexable="true" name="resultsubject" result="false" stat="false" tokenizable="false" xpath="distinct-values(//*[local-name()='entity']/*[local-name()='result']/subject)"/>
|
||||
<FIELD indexable="true" name="resultsubjectclass" result="false" stat="false" tokenizable="false" xpath="distinct-values(//*[local-name()='entity']/*[local-name()='result']/subject/@classname)"/>
|
||||
<FIELD indexable="true" multivalued="false" name="resultembargoenddate" result="false" stat="false" type="pdate" value="//*[local-name()='entity']/*[local-name()='result']/embargoenddate"/>
|
||||
<FIELD indexable="true" multivalued="false" name="resultembargoendyear" result="false" stat="false" tokenizable="false" value="dnet:extractYear(//*[local-name()='entity']/*[local-name()='result']/embargoenddate)"/>
|
||||
|
@ -72,7 +72,6 @@
|
|||
<FIELD indexable="true" name="resultdescription" result="false" stat="false" xpath="//*[local-name()='entity']/*[local-name()='result']//*[local-name()='description']"/>
|
||||
<FIELD indexable="true" name="resultlicense" result="false" stat="false" tokenizable="false" xpath="//*[local-name()='entity']/*[local-name()='result']/children/instance/license"/>
|
||||
<FIELD indexable="true" name="resultaccessright" result="false" stat="false" tokenizable="false" xpath="//*[local-name()='entity']/*[local-name()='result']/children/instance/accessright/@classname"/>
|
||||
<FIELD indexable="true" name="resultresourcetypename" result="false" stat="false" type="string_ci" xpath="//*[local-name()='entity']/*[local-name()='result']/resourcetype/@classname"/>
|
||||
<FIELD indexable="true" multivalued="false" name="resultbestaccessright" result="false" stat="false" tokenizable="false" xpath="distinct-values(//*[local-name()='entity']/*[local-name()='result']/bestaccessright/@classname)"/>
|
||||
<FIELD indexable="true" multivalued="false" name="resultdateofacceptance" result="false" stat="false" type="pdate" value="//*[local-name()='entity']/*[local-name()='result']/dateofacceptance"/>
|
||||
<FIELD indexable="true" multivalued="false" name="resultacceptanceyear" result="false" stat="false" tokenizable="false" value="dnet:extractYear(//*[local-name()='entity']/*[local-name()='result']/dateofacceptance)"/>
|
||||
|
@ -131,9 +130,9 @@
|
|||
<FIELD indexable="true" name="collectedfromdatasourceid" result="false" stat="false" tokenizable="false" xpath="distinct-values(//*[local-name()='entity']/*/*[local-name()='collectedfrom']/@id | //*[local-name()='entity']/*//*[local-name() = 'instance']/*[local-name()='collectedfrom']/@id)"/>
|
||||
<FIELD indexable="true" name="collectedfromname" result="false" stat="false" tokenizable="false" xpath="distinct-values(//*[local-name()='entity']/*/*[local-name()='collectedfrom']/@name | //*[local-name()='entity']/*//*[local-name() = 'instance']/*[local-name()='collectedfrom']/@name)"/>
|
||||
<FIELD indexable="true" name="originalid" result="false" stat="false" tokenizable="false" type="string_ci" xpath="//*[local-name()='entity']/*/*[local-name()='originalId']"/>
|
||||
<FIELD indexable="true" name="pid" result="false" stat="false" tokenizable="false" type="string_ci" xpath="//*[local-name()='entity']/*[local-name()='result']/pid/text()"/>
|
||||
<FIELD indexable="true" name="pidclassid" result="false" stat="false" tokenizable="false" xpath="distinct-values(//*[local-name()='entity']/*[local-name()='result']/pid/@classid)"/>
|
||||
<FIELD indexable="true" name="pidclassname" result="false" stat="false" tokenizable="false" xpath="distinct-values(//*[local-name()='entity']/*[local-name()='result']/pid/@classname)"/>
|
||||
<FIELD indexable="true" name="pid" result="false" stat="false" tokenizable="false" type="string_ci" xpath="//*[local-name()='entity']/*/pid/text()"/>
|
||||
<FIELD indexable="true" name="pidclassid" result="false" stat="false" tokenizable="false" xpath="distinct-values(//*[local-name()='entity']/*/pid/@classid)"/>
|
||||
<FIELD indexable="true" name="pidclassname" result="false" stat="false" tokenizable="false" xpath="distinct-values(//*[local-name()='entity']/*/pid/@classname)"/>
|
||||
<FIELD indexable="true" name="inferred" result="false" stat="false" tokenizable="false" xpath="//*[local-name()='entity']//datainfo/inferred"/>
|
||||
<FIELD indexable="true" name="deletedbyinference" result="false" stat="false" tokenizable="false" xpath="//*[local-name()='entity']//datainfo/deletedbyinference"/>
|
||||
<FIELD indexable="true" name="trust" result="false" stat="false" tokenizable="false" xpath="//*[local-name()='entity']//datainfo/trust"/>
|
||||
|
|
|
@ -1,774 +1,78 @@
|
|||
<result xmlns:dri="http://www.driver-repository.eu/namespace/dri">
|
||||
<header xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<dri:objIdentifier>dedup_wf_001::113ca964590682d906a3588d3d6b4838</dri:objIdentifier>
|
||||
<dri:dateOfCollection>2020-03-15T05:46:43.509Z</dri:dateOfCollection>
|
||||
<dri:dateOfTransformation>2020-03-15T21:17:13.902Z</dri:dateOfTransformation>
|
||||
</header>
|
||||
<metadata>
|
||||
<oaf:entity xmlns:oaf="http://namespace.openaire.eu/oaf"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://namespace.openaire.eu/oaf https://www.openaire.eu/schema/1.0/oaf-1.0.xsd">
|
||||
<oaf:result>
|
||||
<collectedfrom name="scholExplorer"
|
||||
id="openaire____::e034d6a11054f5ade9221ebac484e864"/>
|
||||
<collectedfrom name="UnpayWall" id="openaire____::8ac8380272269217cb09a928c8caa993"/>
|
||||
<collectedfrom name="DOAJ-Articles"
|
||||
id="driver______::bee53aa31dc2cbb538c10c2b65fa5824"/>
|
||||
<collectedfrom name="Crossref" id="openaire____::081b82f96300b6a6e3d282bad31cb6e2"/>
|
||||
<collectedfrom name="Microsoft Academic Graph"
|
||||
id="openaire____::5f532a3fc4f1ea403f37070f59a7a53a"/>
|
||||
<collectedfrom name="PubMed Central"
|
||||
id="opendoar____::eda80a3d5b344bc40f3bc04f65b7a357"/>
|
||||
<originalId>oai:pubmedcentral.nih.gov:5657733</originalId>
|
||||
<originalId>oai:doaj.org/article:f26495a4c1d149099049e1a604fa1256</originalId>
|
||||
<originalId>10.1177/0963689717714320</originalId>
|
||||
<pid classid="pmid" classname="pmid" schemeid="dnet:pid_types"
|
||||
schemename="dnet:pid_types" inferred="false">28933215</pid>
|
||||
<pid classid="pmc" classname="pmc" schemeid="dnet:pid_types"
|
||||
schemename="dnet:pid_types" inferred="false">PMC5657733</pid>
|
||||
<pid classid="doi" classname="doi" schemeid="dnet:pid_types"
|
||||
schemename="dnet:pid_types" inferred="false">10.1177/0963689717714320</pid>
|
||||
<title classid="main title" classname="main title" schemeid="dnet:dataCite_title"
|
||||
schemename="dnet:dataCite_title" inferred="false">Extract Protects Model Neurons
|
||||
from Traumatic Injury</title>
|
||||
<bestaccessright classid="OPEN" classname="Open Access" schemeid="dnet:access_modes"
|
||||
schemename="dnet:access_modes"/>
|
||||
<creator rank="1">Jain, Subhash C.</creator>
|
||||
<creator rank="2">Citron, Bruce A.</creator>
|
||||
<creator rank="3">Vijayalakshmi Ravindranath</creator>
|
||||
<creator rank="4">Saykally, Jessica N.</creator>
|
||||
<creator rank="5">Keeley, Kristen L.</creator>
|
||||
<creator rank="6">Haris Hatic</creator>
|
||||
<creator rank="7" name="Miriam" surname="Baglioni" orcid_pending="0000-0002-2273-9004">Baglioni, Miriam</creator>
|
||||
<creator rank="8" name="Michele" surname="De Bonis" orcid="0000-0002-2273-9004">De Bonis, Michele</creator>
|
||||
<dateofacceptance>2017-06-01</dateofacceptance>
|
||||
<description>Withania somnifera has been used in traditional medicine for a variety
|
||||
of neural disorders. Recently, chronic neurodegenerative conditions have been
|
||||
shown to benefit from treatment with this extract. To evaluate the action of
|
||||
this extract on traumatically injured neurons, the efficacy of W. somnifera root
|
||||
extract as a neuroprotective agent was examined in cultured model neurons
|
||||
exposed to an in vitro injury system designed to mimic mild traumatic brain
|
||||
injury (TBI). Neuronal health was evaluated by staining with annexin V (an
|
||||
early, apoptotic feature) and monitoring released lactate dehydrogenase activity
|
||||
(a terminal cell loss parameter). Potential mechanisms underlying the observed
|
||||
neuroprotection were examined. Additionally, morphological changes were
|
||||
monitored following injury and treatment. Although no differences were found in
|
||||
the expression of the antioxidant transcription factor nuclear factor erythroid
|
||||
2-like 2 (Nrf2) or other Nrf2-related downstream components, significant changes
|
||||
were seen in apoptotic signaling. Treatment with the extract resulted in an
|
||||
increased length of neurites projecting from the neuronal cell body after
|
||||
injury. W. somnifera extract treatment also resulted in reduced cell death in
|
||||
the model neuron TBI system. The cell death factor Bax was involved (its
|
||||
expression was reduced 2-fold by the treatment) and injury-induced reduction in
|
||||
neurite lengths and numbers was reversed by the treatment. This all indicates
|
||||
that W. somnifera root extract was neuroprotective and could have therapeutic
|
||||
potential to target factors involved in secondary injury and long-term sequelae
|
||||
of mild TBI.</description>
|
||||
<embargoenddate/>
|
||||
<subject classid="keyword" classname="keyword"
|
||||
schemeid="dnet:subject_classification_typologies"
|
||||
schemename="dnet:subject_classification_typologies" inferred="false">Withania
|
||||
somnifera</subject>
|
||||
<subject classid="keyword" classname="keyword"
|
||||
schemeid="dnet:subject_classification_typologies"
|
||||
schemename="dnet:subject_classification_typologies" inferred="false">R</subject>
|
||||
<subject classid="keyword" classname="keyword" schemeid="dnet:subject"
|
||||
schemename="dnet:subject" inferred="false">Cell Biology</subject>
|
||||
<subject classid="keyword" classname="keyword"
|
||||
schemeid="dnet:subject_classification_typologies"
|
||||
schemename="dnet:subject_classification_typologies" inferred="false"
|
||||
>neuroprotection</subject>
|
||||
<subject classid="keyword" classname="keyword"
|
||||
schemeid="dnet:subject_classification_typologies"
|
||||
schemename="dnet:subject_classification_typologies" inferred="false"
|
||||
>SH-SY5Y</subject>
|
||||
<subject classid="keyword" classname="keyword" schemeid="dnet:subject"
|
||||
schemename="dnet:subject" inferred="false">Biomedical Engineering</subject>
|
||||
<subject classid="keyword" classname="keyword" schemeid="dnet:subject"
|
||||
schemename="dnet:subject" inferred="false">Transplantation</subject>
|
||||
<subject classid="keyword" classname="keyword"
|
||||
schemeid="dnet:subject_classification_typologies"
|
||||
schemename="dnet:subject_classification_typologies" inferred="false">traumatic
|
||||
brain injury</subject>
|
||||
<subject classid="keyword" classname="keyword"
|
||||
schemeid="dnet:subject_classification_typologies"
|
||||
schemename="dnet:subject_classification_typologies" inferred="false"
|
||||
>neurites</subject>
|
||||
<subject classid="keyword" classname="keyword"
|
||||
schemeid="dnet:subject_classification_typologies"
|
||||
schemename="dnet:subject_classification_typologies" inferred="false"
|
||||
>Ayurveda</subject>
|
||||
<subject classid="keyword" classname="keyword"
|
||||
schemeid="dnet:subject_classification_typologies"
|
||||
schemename="dnet:subject_classification_typologies" inferred="false"
|
||||
>Medicine</subject>
|
||||
<language classid="eng" classname="English" schemeid="dnet:languages"
|
||||
schemename="dnet:languages"/>
|
||||
<relevantdate classid="dnet:date" classname="dnet:date" schemeid="dnet:date"
|
||||
schemename="dnet:date" inferred="false">2018-11-13</relevantdate>
|
||||
<relevantdate classid="published-online" classname="published-online"
|
||||
schemeid="dnet:dataCite_date" schemename="dnet:dataCite_date" inferred="false"
|
||||
>2017-6-30</relevantdate>
|
||||
<relevantdate classid="published-print" classname="published-print"
|
||||
schemeid="dnet:dataCite_date" schemename="dnet:dataCite_date" inferred="false"
|
||||
>2017-7-1</relevantdate>
|
||||
<publisher>SAGE Publishing</publisher>
|
||||
<source>Cell Transplantation, Vol 26 (2017)</source>
|
||||
<source>Cell Transplantation</source>
|
||||
<resulttype classid="publication" classname="publication"
|
||||
schemeid="dnet:result_typologies" schemename="dnet:result_typologies"/>
|
||||
<resourcetype classid="Book" classname="Book" schemeid="dnet:dataCite_resource" schemename="dnet:dataCite_resource" />
|
||||
<journal issn="0963-6897" eissn="1555-3892" ep="1201" iss="7" sp="1193" vol="26"
|
||||
>Cell Transplantation</journal>
|
||||
<context id="NIH" label="National Institutes of Health" type="funding">
|
||||
<category id="NIH::VETERANS AFFAIRS" label="VETERANS AFFAIRS"/>
|
||||
</context>
|
||||
<datainfo>
|
||||
<inferred>true</inferred>
|
||||
<deletedbyinference>false</deletedbyinference>
|
||||
<trust>0.9</trust>
|
||||
<inferenceprovenance>dedup-similarity-result-levenstein</inferenceprovenance>
|
||||
<provenanceaction classid="sysimport:dedup" classname="sysimport:dedup"
|
||||
schemeid="dnet:provenanceActions" schemename="dnet:provenanceActions"/>
|
||||
</datainfo>
|
||||
<rels>
|
||||
<rel inferred="true" trust="0.8998"
|
||||
inferenceprovenance="iis::document_affiliations" provenanceaction="iis">
|
||||
<to class="hasAuthorInstitution"
|
||||
scheme="dnet:organization_organization_relations" type="organization"
|
||||
>wt__________::4de25ac59f6cb729d5716260164bb67c</to>
|
||||
<legalname>Indian Institute Of Science</legalname>
|
||||
</rel>
|
||||
<rel inferred="true" trust="0.8998"
|
||||
inferenceprovenance="iis::document_affiliations" provenanceaction="iis">
|
||||
<to class="hasAuthorInstitution"
|
||||
scheme="dnet:organization_organization_relations" type="organization"
|
||||
>nih_________::ba7da8316fd53d04a985bc935e438555</to>
|
||||
<legalname>INDIAN INSTITUTE OF SCIENCE</legalname>
|
||||
</rel>
|
||||
<rel inferred="true" trust="0.9" inferenceprovenance=""
|
||||
provenanceaction="sysimport:actionset">
|
||||
<to class="hasAuthorInstitution"
|
||||
scheme="dnet:organization_organization_relations" type="organization"
|
||||
>dedup_wf_001::0047940c0207b6a83e79cd803ecf17d1</to>
|
||||
<country classid="GB" classname="United Kingdom" schemeid="dnet:countries"
|
||||
schemename="dnet:countries"/>
|
||||
<legalname>MRC - MRC Laboratory of Molecular Biology</legalname>
|
||||
<legalshortname>LMB</legalshortname>
|
||||
</rel>
|
||||
<rel inferred="true" trust="0.8847"
|
||||
inferenceprovenance="iis::document_affiliations" provenanceaction="iis">
|
||||
<to class="hasAuthorInstitution"
|
||||
scheme="dnet:organization_organization_relations" type="organization"
|
||||
>rcuk________::2558c4f3132f6907f7b23c69009f0d87</to>
|
||||
<legalname>INDIAN INSTUTUTE OF SCIENCE</legalname>
|
||||
</rel>
|
||||
<rel inferred="true" trust="0.9" inferenceprovenance=""
|
||||
provenanceaction="sysimport:actionset">
|
||||
<to class="hasAuthorInstitution"
|
||||
scheme="dnet:organization_organization_relations" type="organization"
|
||||
>dedup_wf_001::d2fdc8e80f8b4365091bcea83f918ccf</to>
|
||||
<country classid="IN" classname="India" schemeid="dnet:countries"
|
||||
schemename="dnet:countries"/>
|
||||
<legalname>University of Delhi</legalname>
|
||||
<legalshortname>University of Delhi</legalshortname>
|
||||
</rel>
|
||||
<rel inferred="true" trust="0.7200000000000001"
|
||||
inferenceprovenance="dedup-similarity-result-levenstein" provenanceaction="">
|
||||
<to class="merges" scheme="dnet:result_result_relations" type="publication"
|
||||
>doiboost____::d5177e3ad00bd9288201b60206a0b5d0</to>
|
||||
<dateofacceptance>2017-6-30</dateofacceptance>
|
||||
<collectedfrom name="Crossref"
|
||||
id="openaire____::081b82f96300b6a6e3d282bad31cb6e2"/>
|
||||
<collectedfrom name="UnpayWall"
|
||||
id="openaire____::8ac8380272269217cb09a928c8caa993"/>
|
||||
<collectedfrom name="Microsoft Academic Graph"
|
||||
id="openaire____::5f532a3fc4f1ea403f37070f59a7a53a"/>
|
||||
<pid classid="doi" classname="doi" schemeid="dnet:pid_types"
|
||||
schemename="dnet:pid_types" inferred="false"
|
||||
>10.1177/0963689717714320</pid>
|
||||
</rel>
|
||||
<rel inferred="true" trust="0.7200000000000001"
|
||||
inferenceprovenance="dedup-similarity-result-levenstein" provenanceaction="">
|
||||
<to class="merges" scheme="dnet:result_result_relations" type="publication"
|
||||
>od_______267::fb470352a4b33af7c83391c02117c4fc</to>
|
||||
<collectedfrom name="PubMed Central"
|
||||
id="opendoar____::eda80a3d5b344bc40f3bc04f65b7a357"/>
|
||||
<publisher>SAGE Publications</publisher>
|
||||
<pid classid="pmc" classname="pmc" schemeid="dnet:pid_types"
|
||||
schemename="dnet:pid_types" inferred="false">PMC5657733</pid>
|
||||
<pid classid="pmid" classname="pmid" schemeid="dnet:pid_types"
|
||||
schemename="dnet:pid_types" inferred="false">28933215</pid>
|
||||
<dateofacceptance>2017-06-01</dateofacceptance>
|
||||
<pid classid="doi" classname="doi" schemeid="dnet:pid_types"
|
||||
schemename="dnet:pid_types" inferred="false"
|
||||
>10.1177/0963689717714320</pid>
|
||||
</rel>
|
||||
<rel inferred="true" trust="0.6249"
|
||||
inferenceprovenance="iis::document_referencedProjects"
|
||||
provenanceaction="iis">
|
||||
<to class="isProducedBy" scheme="dnet:project_project_relations"
|
||||
type="project">nih_________::24e81ae35bbcb50c778df1039f912617</to>
|
||||
<funding>
|
||||
<funder id="nih_________::NIH" shortname="NIH"
|
||||
name="National Institutes of Health" jurisdiction="US"/>
|
||||
<funding_level_0 name="VETERANS AFFAIRS"
|
||||
>nih_________::NIH::VETERANS_AFFAIRS</funding_level_0>
|
||||
</funding>
|
||||
<title>Preventing TBI-Induced Chronic Functional Loss with a Neuroprotective
|
||||
Antioxidant</title>
|
||||
<code>1I01RX001520-01A1</code>
|
||||
</rel>
|
||||
<rel inferred="true" trust="0.8998"
|
||||
inferenceprovenance="iis::document_affiliations" provenanceaction="iis">
|
||||
<to class="hasAuthorInstitution"
|
||||
scheme="dnet:organization_organization_relations" type="organization"
|
||||
>wt__________::52e59d4aa1c57bda1ec144f409de83fc</to>
|
||||
<legalname>Indian Institute of Science</legalname>
|
||||
</rel>
|
||||
<rel inferred="true" trust="0.8998"
|
||||
inferenceprovenance="iis::document_affiliations" provenanceaction="iis">
|
||||
<to class="hasAuthorInstitution"
|
||||
scheme="dnet:organization_organization_relations" type="organization"
|
||||
>dedup_wf_001::0499ff413ba8e7fa686531725ba12338</to>
|
||||
<legalshortname>IISc</legalshortname>
|
||||
<country classid="IN" classname="India" schemeid="dnet:countries"
|
||||
schemename="dnet:countries"/>
|
||||
<legalname>Indian Institute of Science</legalname>
|
||||
</rel>
|
||||
<rel inferred="true" trust="0.8998"
|
||||
inferenceprovenance="iis::document_affiliations" provenanceaction="iis">
|
||||
<to class="hasAuthorInstitution"
|
||||
scheme="dnet:organization_organization_relations" type="organization"
|
||||
>wt__________::ba1db3669859a46e72f222052a9a26d8</to>
|
||||
<legalname>University of Delhi</legalname>
|
||||
</rel>
|
||||
<rel inferred="true" trust="0.9" inferenceprovenance=""
|
||||
provenanceaction="sysimport:actionset">
|
||||
<to class="hasAuthorInstitution"
|
||||
scheme="dnet:organization_organization_relations" type="organization"
|
||||
>dedup_wf_001::17c785347dfb060aa115af824b0c6789</to>
|
||||
<legalshortname>IISc</legalshortname>
|
||||
<country classid="IN" classname="India" schemeid="dnet:countries"
|
||||
schemename="dnet:countries"/>
|
||||
<legalname>Indian Institute of Science Bangalore</legalname>
|
||||
</rel>
|
||||
<rel inferred="true" trust="0.7200000000000001"
|
||||
inferenceprovenance="dedup-similarity-result-levenstein" provenanceaction="">
|
||||
<to class="merges" scheme="dnet:result_result_relations" type="publication"
|
||||
>scholexplore::16181ec1a2484116e8ed6b3348858fe7</to>
|
||||
<collectedfrom name="scholExplorer"
|
||||
id="openaire____::e034d6a11054f5ade9221ebac484e864"/>
|
||||
<pid classid="pmid" classname="pmid" schemeid="dnet:pid_types"
|
||||
schemename="dnet:pid_types" inferred="false">28933215</pid>
|
||||
</rel>
|
||||
<rel inferred="true" trust="0.7200000000000001"
|
||||
inferenceprovenance="dedup-similarity-result-levenstein" provenanceaction="">
|
||||
<to class="merges" scheme="dnet:result_result_relations" type="publication"
|
||||
>doajarticles::cac994ec6c322070c41474486eb5c595</to>
|
||||
<dateofacceptance>2017-07-01</dateofacceptance>
|
||||
<collectedfrom name="DOAJ-Articles"
|
||||
id="driver______::bee53aa31dc2cbb538c10c2b65fa5824"/>
|
||||
<publisher>SAGE Publishing</publisher>
|
||||
<pid classid="doi" classname="doi" schemeid="dnet:pid_types"
|
||||
schemename="dnet:pid_types" inferred="false"
|
||||
>10.1177/0963689717714320</pid>
|
||||
</rel>
|
||||
<rel inferred="true" trust="0.6775"
|
||||
inferenceprovenance="iis::document_referencedDatasets"
|
||||
provenanceaction="iis">
|
||||
<to class="isRelatedTo" scheme="dnet:result_result_relations" type="dataset"
|
||||
>r37980778c78::39a72c53d5801325784f728b543a49a1</to>
|
||||
<collectedfrom name="figshare"
|
||||
id="re3data_____::7980778c78fb4cf0fab13ce2159030dc"/>
|
||||
<pid classid="doi" classname="doi" schemeid="dnet:pid_types"
|
||||
schemename="dnet:pid_types" inferred="false"
|
||||
>10.1371/journal.pone.0006628</pid>
|
||||
<dateofacceptance>2016-01-01</dateofacceptance>
|
||||
<publisher>Figshare</publisher>
|
||||
</rel>
|
||||
<rel inferred="true" trust="0.8998"
|
||||
inferenceprovenance="iis::document_affiliations" provenanceaction="iis">
|
||||
<to class="hasAuthorInstitution"
|
||||
scheme="dnet:organization_organization_relations" type="organization"
|
||||
>rcuk________::23feba2a5ca7f6b6016bf3a45180da50</to>
|
||||
<legalname>University of Delhi</legalname>
|
||||
</rel>
|
||||
<rel inferred="false" trust="0.9" inferenceprovenance="" provenanceaction="sysimport:crosswalk:repository">
|
||||
<validated date="2021-01-01">true</validated>
|
||||
<to class="isProducedBy" scheme="dnet:result_project_relations" type="project">corda_______::30c6b5ab90f30666de1d112fb93d8c77</to>
|
||||
<code>227878</code>
|
||||
<funding>
|
||||
<funder id="ec__________::EC" shortname="EC" name="European Commission" jurisdiction="EU" />
|
||||
<funding_level_0 name="FP7">ec__________::EC::FP7</funding_level_0>
|
||||
<funding_level_1 name="SP2">ec__________::EC::FP7::SP2</funding_level_1>
|
||||
<funding_level_2 name="ERC">ec__________::EC::FP7::SP2::ERC</funding_level_2>
|
||||
</funding>
|
||||
<title>Complex structure and dynamics of collective motion</title>
|
||||
<acronym>COLLMOT</acronym>
|
||||
<contracttype classid="ERC" classname="Support for frontier research (ERC)" schemeid="ec:FP7contractTypes" schemename="ec:FP7contractTypes" />
|
||||
</rel>
|
||||
<rel inferred="true" trust="0.72" inferenceprovenance="iis::document_referencedProjects" provenanceaction="iis">
|
||||
<to class="isProducedBy" scheme="dnet:result_project_relations" type="project">irb_hr______::2330a1d0dac71ffbe15fbcbc807288d4</to>
|
||||
<code>108-1083570-3635</code>
|
||||
<funding>
|
||||
<funder id="irb_hr______::MZOS" shortname="MZOS" name="Ministry of Science, Education and Sports of the Republic of Croatia (MSES)" jurisdiction="HR" />
|
||||
</funding>
|
||||
<title>Pentadecapeptide BPC 157 - further investigations</title>
|
||||
</rel>
|
||||
</rels>
|
||||
<children>
|
||||
<instance id="openaire____::55045bd2a65019fd8e6741a755395c8c">
|
||||
<accessright classid="UNKNOWN" classname="not available"
|
||||
schemeid="dnet:access_modes" schemename="dnet:access_modes"/>
|
||||
<collectedfrom name="scholExplorer"
|
||||
id="openaire____::e034d6a11054f5ade9221ebac484e864"/>
|
||||
<hostedby name="Unknown Repository"
|
||||
id="openaire____::55045bd2a65019fd8e6741a755395c8c"/>
|
||||
<instancetype classid="0000" classname="Unknown"
|
||||
schemeid="dnet:publication_resource"
|
||||
schemename="dnet:publication_resource"/>
|
||||
<webresource>
|
||||
<url>https://www.ncbi.nlm.nih.gov/pubmed/28933215</url>
|
||||
</webresource>
|
||||
</instance>
|
||||
<instance id="opendoar____::8b6dd7db9af49e67306feb59a8bdc52c">
|
||||
<accessright classid="OPEN" classname="Open Access"
|
||||
schemeid="dnet:access_modes" schemename="dnet:access_modes"/>
|
||||
<collectedfrom name="PubMed Central"
|
||||
id="opendoar____::eda80a3d5b344bc40f3bc04f65b7a357"/>
|
||||
<hostedby name="Europe PubMed Central"
|
||||
id="opendoar____::8b6dd7db9af49e67306feb59a8bdc52c"/>
|
||||
<dateofacceptance>2017-06-01</dateofacceptance>
|
||||
<instancetype classid="0001" classname="Article"
|
||||
schemeid="dnet:publication_resource"
|
||||
schemename="dnet:publication_resource"/>
|
||||
<webresource>
|
||||
<url>http://europepmc.org/articles/PMC5657733</url>
|
||||
</webresource>
|
||||
</instance>
|
||||
<instance id="openaire____::55045bd2a65019fd8e6741a755395c8c">
|
||||
<accessright classid="UNKNOWN" classname="not available"
|
||||
schemeid="dnet:access_modes" schemename="dnet:access_modes"/>
|
||||
<collectedfrom name="Crossref"
|
||||
id="openaire____::081b82f96300b6a6e3d282bad31cb6e2"/>
|
||||
<hostedby name="Unknown Repository"
|
||||
id="openaire____::55045bd2a65019fd8e6741a755395c8c"/>
|
||||
<instancetype classid="0001" classname="Article"
|
||||
schemeid="dnet:publication_resource"
|
||||
schemename="dnet:publication_resource"/>
|
||||
<webresource>
|
||||
<url>http://journals.sagepub.com/doi/full-xml/10.1177/0963689717714320</url>
|
||||
</webresource>
|
||||
<webresource>
|
||||
<url>http://journals.sagepub.com/doi/pdf/10.1177/0963689717714320</url>
|
||||
</webresource>
|
||||
<webresource>
|
||||
<url>https://academic.microsoft.com/#/detail/2588640354</url>
|
||||
</webresource>
|
||||
</instance>
|
||||
<instance id="doajarticles::4607792f6beaa6e33d5ff5c63830da98">
|
||||
<accessright classid="OPEN" classname="Open Access"
|
||||
schemeid="dnet:access_modes" schemename="dnet:access_modes"/>
|
||||
<collectedfrom name="DOAJ-Articles"
|
||||
id="driver______::bee53aa31dc2cbb538c10c2b65fa5824"/>
|
||||
<hostedby name="Cell Transplantation"
|
||||
id="doajarticles::4607792f6beaa6e33d5ff5c63830da98"/>
|
||||
<dateofacceptance>2017-07-01</dateofacceptance>
|
||||
<instancetype classid="0001" classname="Article"
|
||||
schemeid="dnet:publication_resource"
|
||||
schemename="dnet:publication_resource"/>
|
||||
<webresource>
|
||||
<url>https://doi.org/10.1177/0963689717714320</url>
|
||||
</webresource>
|
||||
<webresource>
|
||||
<url>https://doaj.org/toc/0963-6897</url>
|
||||
</webresource>
|
||||
<webresource>
|
||||
<url>https://doaj.org/toc/1555-3892</url>
|
||||
</webresource>
|
||||
</instance>
|
||||
<instance id="doajarticles::4607792f6beaa6e33d5ff5c63830da98">
|
||||
<accessright classid="RESTRICTED" classname="Restricted"
|
||||
schemeid="dnet:access_modes" schemename="dnet:access_modes"/>
|
||||
<collectedfrom name="Crossref"
|
||||
id="openaire____::081b82f96300b6a6e3d282bad31cb6e2"/>
|
||||
<hostedby name="Cell Transplantation"
|
||||
id="doajarticles::4607792f6beaa6e33d5ff5c63830da98"/>
|
||||
<instancetype classid="0001" classname="Article"
|
||||
schemeid="dnet:publication_resource"
|
||||
schemename="dnet:publication_resource"/>
|
||||
<webresource>
|
||||
<url>http://dx.doi.org/10.1177/0963689717714320</url>
|
||||
</webresource>
|
||||
</instance>
|
||||
<instance id="openaire____::55045bd2a65019fd8e6741a755395c8c">
|
||||
<accessright classid="OPEN" classname="Open Access"
|
||||
schemeid="dnet:access_modes" schemename="dnet:access_modes"/>
|
||||
<collectedfrom name="UnpayWall"
|
||||
id="openaire____::8ac8380272269217cb09a928c8caa993"/>
|
||||
<hostedby name="Unknown Repository"
|
||||
id="openaire____::55045bd2a65019fd8e6741a755395c8c"/>
|
||||
<instancetype classid="0001" classname="Article"
|
||||
schemeid="dnet:publication_resource"
|
||||
schemename="dnet:publication_resource"/>
|
||||
<webresource>
|
||||
<url>https://journals.sagepub.com/doi/pdf/10.1177/0963689717714320</url>
|
||||
</webresource>
|
||||
</instance>
|
||||
</children>
|
||||
</oaf:result>
|
||||
<extraInfo name="result citations" typology="citations"
|
||||
provenance="iis::document_referencedDocuments" trust="0.9">
|
||||
<citations>
|
||||
<citation position="1">
|
||||
<rawText>1 Bryan-Hancock C Harrison J The global burden of traumatic brain
|
||||
injury: preliminary results from the Global Burden of Disease Project.
|
||||
Inj Prev. 2010;16(Suppl 1):A17.</rawText>
|
||||
</citation>
|
||||
<citation position="2">
|
||||
<rawText>2 Gardner RC Yaffe K Epidemiology of mild traumatic brain injury
|
||||
and neurodegenerative disease. Mol Cell Neurosci. 2015;66(Pt
|
||||
B):75–80.25748121</rawText>
|
||||
<id value="dedup_wf_001::7ea5a74d23841025462422c95f25f5de" type="openaire"
|
||||
confidenceLevel="0.9"/>
|
||||
<id value="25748121" type="pmid" confidenceLevel="0.9"/>
|
||||
</citation>
|
||||
<citation position="3">
|
||||
<rawText>3 Stern RA Riley DO Daneshvar DH Nowinski CJ Cantu RC McKee AC
|
||||
Long-term consequences of repetitive brain trauma: chronic traumatic
|
||||
encephalopathy. PM R. 2011;3(10 Suppl 2):S460–S467.22035690</rawText>
|
||||
<id value="scholexplore::4cd90a17b23dffce9a8cf58d81ca9e31" type="openaire"
|
||||
confidenceLevel="0.9"/>
|
||||
<id value="22035690" type="pmid" confidenceLevel="0.9"/>
|
||||
</citation>
|
||||
<citation position="4">
|
||||
<rawText>4 Mac Donald CL Johnson AM Cooper D Nelson EC Werner NJ Shimony JS
|
||||
Snyder AZ Raichle ME Witherow JR Fang R Detection of blast-related
|
||||
traumatic brain injury in U.S. military personnel. N Engl J Med.
|
||||
2011;364(22):2091–2100.21631321</rawText>
|
||||
<id value="dedup_wf_001::81f1d0d6f713d335cb4f8dbbd5aea3b5" type="openaire"
|
||||
confidenceLevel="0.9"/>
|
||||
<id value="21631321" type="pmid" confidenceLevel="0.9"/>
|
||||
</citation>
|
||||
<citation position="5">
|
||||
<rawText>5 Hatic H Kane MJ Saykally JN Citron BA Modulation of transcription
|
||||
factor Nrf2 in an in vitro model of traumatic brain injury. J
|
||||
Neurotrauma. 2012;29(6):1188–1196.22201269</rawText>
|
||||
<id value="scholexplore::5a883cd3f6eab6dcfd9253dc3a667794" type="openaire"
|
||||
confidenceLevel="0.9"/>
|
||||
<id value="22201269" type="pmid" confidenceLevel="0.9"/>
|
||||
</citation>
|
||||
<citation position="6">
|
||||
<rawText>6 Saykally JN Rachmany L Hatic H Shaer A Rubovitch V Pick CG Citron
|
||||
BA The nuclear factor erythroid 2-like 2 activator,
|
||||
tert-butylhydroquinone, improves cognitive performance in mice after
|
||||
mild traumatic brain injury. Neuroscience.
|
||||
2012;223:305–314.22890082</rawText>
|
||||
<id value="dedup_wf_001::e1fdece0d7d8e81cf0497971758a07d7" type="openaire"
|
||||
confidenceLevel="0.9"/>
|
||||
<id value="22890082" type="pmid" confidenceLevel="0.9"/>
|
||||
</citation>
|
||||
<citation position="7">
|
||||
<rawText>7 Hall ED Vaishnav RA Mustafa AG Antioxidant therapies for
|
||||
traumatic brain injury. Neurotherapeutics.
|
||||
2010;7(1):51–61.20129497</rawText>
|
||||
<id value="dedup_wf_001::dad85993cf85ecab6c20834b36da8fde" type="openaire"
|
||||
confidenceLevel="0.9"/>
|
||||
<id value="20129497" type="pmid" confidenceLevel="0.9"/>
|
||||
</citation>
|
||||
<citation position="8">
|
||||
<rawText>8 Scartezzini P Speroni E Review on some plants of Indian
|
||||
traditional medicine with antioxidant activity. J Ethnopharmacol.
|
||||
2000;71(1–2):23–43.10904144</rawText>
|
||||
<id value="dedup_wf_001::4bdc528dcf25cfa21d6d668263b519f4" type="openaire"
|
||||
confidenceLevel="0.9"/>
|
||||
<id value="10904144" type="pmid" confidenceLevel="0.9"/>
|
||||
</citation>
|
||||
<citation position="9">
|
||||
<rawText>9 Mishra LC Singh BB Dagenais S Scientific basis for the
|
||||
therapeutic use of Withania somnifera (ashwagandha): a review. Altern
|
||||
Med Rev. 2000;5(4):334–346.10956379</rawText>
|
||||
<id value="scholexplore::8093622f33e4a82bf55d0dc741b5023c" type="openaire"
|
||||
confidenceLevel="0.9"/>
|
||||
<id value="10956379" type="pmid" confidenceLevel="0.9"/>
|
||||
</citation>
|
||||
<citation position="10">
|
||||
<rawText>10 Singh RH Exploring larger evidence-base for contemporary
|
||||
Ayurveda. Int J Ayurveda Res. 2010;1(2):65–66.20814517</rawText>
|
||||
<id value="dedup_wf_001::ceac054eb7c6b9bd15dfad24c6e339a5" type="openaire"
|
||||
confidenceLevel="0.9"/>
|
||||
<id value="20814517" type="pmid" confidenceLevel="0.9"/>
|
||||
</citation>
|
||||
<citation position="11">
|
||||
<rawText>11 Alam N Hossain M Mottalib MA Sulaiman SA Gan SH Khalil MI
|
||||
Methanolic extracts of Withania somnifera leaves, fruits and roots
|
||||
possess antioxidant properties and antibacterial activities. BMC
|
||||
Complement Altern Med. 2012;12:175.23039061</rawText>
|
||||
<id value="dedup_wf_001::d85dd0b9c21a5859b53d45391bc905c8" type="openaire"
|
||||
confidenceLevel="0.9"/>
|
||||
<id value="23039061" type="pmid" confidenceLevel="0.9"/>
|
||||
</citation>
|
||||
<citation position="12">
|
||||
<rawText>12 Gupta GL Rana AC Withania somnifera (ashwagandha): a review.
|
||||
Pharmacognosy Rev. 2007;1(1):129–136.</rawText>
|
||||
</citation>
|
||||
<citation position="13">
|
||||
<rawText>13 Durg S Dhadde SB Vandal R Shivakumar BS Charan CS Withania
|
||||
somnifera (ashwagandha) in neurobehavioural disorders induced by brain
|
||||
oxidative stress in rodents: a systematic review and meta-analysis. J
|
||||
Pharm Pharmacol. 2015;67(7):879–899.25828061</rawText>
|
||||
<id value="dedup_wf_001::aec7c43727fca72e466703fad9cd50d0" type="openaire"
|
||||
confidenceLevel="0.9"/>
|
||||
<id value="25828061" type="pmid" confidenceLevel="0.9"/>
|
||||
</citation>
|
||||
<citation position="14">
|
||||
<rawText>14 Kuboyama T Tohda C Komatsu K Effects of ashwagandha (roots of
|
||||
Withania somnifera) on neurodegenerative diseases. Biol Pharm Bull.
|
||||
2014;37(6):892–897.24882401</rawText>
|
||||
<id value="dedup_wf_001::e475da1c365be8b7938bd439cd91b1ce" type="openaire"
|
||||
confidenceLevel="0.9"/>
|
||||
<id value="24882401" type="pmid" confidenceLevel="0.9"/>
|
||||
</citation>
|
||||
<citation position="15">
|
||||
<rawText>15 Mirjalili MH Moyano E Bonfill M Cusido RM Palazon J Steroidal
|
||||
lactones from Withania somnifera, an ancient plant for novel medicine.
|
||||
Molecules. 2009;14(7):2373–2393.19633611</rawText>
|
||||
<id value="dedup_wf_001::034ea95279138fb4f2e3fc41e50c953f" type="openaire"
|
||||
confidenceLevel="0.9"/>
|
||||
<id value="19633611" type="pmid" confidenceLevel="0.9"/>
|
||||
</citation>
|
||||
<citation position="16">
|
||||
<rawText>16 Ven Murthy MR Ranjekar PK Ramassamy C Deshpande M Scientific
|
||||
basis for the use of Indian ayurvedic medicinal plants in the treatment
|
||||
of neurodegenerative disorders: ashwagandha. Cent Nerv Syst Agents Med
|
||||
Chem. 2010;10(3):238–246.20528765</rawText>
|
||||
<id value="scholexplore::ec8cea63a81d526a1a8133af3557674f" type="openaire"
|
||||
confidenceLevel="0.9"/>
|
||||
<id value="20528765" type="pmid" confidenceLevel="0.9"/>
|
||||
</citation>
|
||||
<citation position="17">
|
||||
<rawText>17 Singh RH Narsimhamurthy K Singh G Neuronutrient impact of
|
||||
Ayurvedic Rasayana therapy in brain aging. Biogerontology.
|
||||
2008;9(6):369–374.18931935</rawText>
|
||||
<id value="dedup_wf_001::41e1d24589d4c1e6b7bf322732b69227" type="openaire"
|
||||
confidenceLevel="0.9"/>
|
||||
<id value="18931935" type="pmid" confidenceLevel="0.9"/>
|
||||
</citation>
|
||||
<citation position="18">
|
||||
<rawText>18 Kulkarni SK Dhir A Withania somnifera: an Indian ginseng. Prog
|
||||
Neuropsychopharmacol Biol Psychiatry.
|
||||
2008;32(5):1093–1105.17959291</rawText>
|
||||
<id value="dedup_wf_001::c0c07dd044ffb2996b047e09c0eb8891" type="openaire"
|
||||
confidenceLevel="0.9"/>
|
||||
<id value="17959291" type="pmid" confidenceLevel="0.9"/>
|
||||
</citation>
|
||||
<citation position="19">
|
||||
<rawText>19 Cooley K Szczurko O Perri D Mills EJ Bernhardt B Zhou Q Seely D
|
||||
Naturopathic care for anxiety: a randomized controlled trial
|
||||
ISRCTN78958974. PLoS One. 2009;4(8):e6628.19718255</rawText>
|
||||
<id value="dedup_wf_001::6c8ad2b3098d9bf2207317744f8c8632" type="openaire"
|
||||
confidenceLevel="0.9"/>
|
||||
<id value="19718255" type="pmid" confidenceLevel="0.9"/>
|
||||
</citation>
|
||||
<citation position="20">
|
||||
<rawText>20 Chopra A Lavin P Patwardhan B Chitre D A 32-week randomized,
|
||||
placebo-controlled clinical evaluation of RA-11, an Ayurvedic drug, on
|
||||
osteoarthritis of the knees. J Clin Rheumatol.
|
||||
2004;10(5):236–245.17043520</rawText>
|
||||
<id value="dedup_wf_001::6ad0c8932a7eab3967c0800822af5177" type="openaire"
|
||||
confidenceLevel="0.9"/>
|
||||
<id value="17043520" type="pmid" confidenceLevel="0.9"/>
|
||||
</citation>
|
||||
<citation position="21">
|
||||
<rawText>21 Chaudhary G Sharma U Jagannathan NR Gupta YK Evaluation of
|
||||
Withania somnifera in a middle cerebral artery occlusion model of stroke
|
||||
in rats. Clin Exp Pharmacol Physiol.
|
||||
2003;30(5–6):399–404.12859433</rawText>
|
||||
<id value="12859433" type="pmid" confidenceLevel="0.9"/>
|
||||
</citation>
|
||||
<citation position="22">
|
||||
<rawText>22 Adams JD Jr Yang J Mishra LC Singh BB Effects of ashwagandha in
|
||||
a rat model of stroke. Altern Ther Health Med.
|
||||
2002;8(5):18–19.</rawText>
|
||||
</citation>
|
||||
<citation position="23">
|
||||
<rawText>23 Baitharu I Jain V Deep SN Hota KB Hota SK Prasad D Ilavazhagan G
|
||||
Withania somnifera root extract ameliorates hypobaric hypoxia induced
|
||||
memory impairment in rats. J Ethnopharmacol.
|
||||
2013;145(2):431–441.23211660</rawText>
|
||||
<id value="dedup_wf_001::744d9bbe76384c0e933cb2b8099105ba" type="openaire"
|
||||
confidenceLevel="0.9"/>
|
||||
<id value="23211660" type="pmid" confidenceLevel="0.9"/>
|
||||
</citation>
|
||||
<citation position="24">
|
||||
<rawText>24 RajaSankar S Manivasagam T Sankar V Prakash S Muthusamy R
|
||||
Krishnamurti A Surendran S Withania somnifera root extract improves
|
||||
catecholamines and physiological abnormalities seen in a Parkinson’s
|
||||
disease model mouse. J Ethnopharmacol.
|
||||
2009;125(3):369–373.19666100</rawText>
|
||||
<id value="dedup_wf_001::7d60b85f60390db7b841f13778fbbd8a" type="openaire"
|
||||
confidenceLevel="0.9"/>
|
||||
<id value="19666100" type="pmid" confidenceLevel="0.9"/>
|
||||
</citation>
|
||||
<citation position="25">
|
||||
<rawText>25 Pingali U Pilli R Fatima N Effect of standardized aqueous
|
||||
extract of Withania somnifera on tests of cognitive and psychomotor
|
||||
performanc e in healthy human participants. Pharmacognosy Res.
|
||||
2014;6(1):12–18.24497737</rawText>
|
||||
<id value="dedup_wf_001::024f29db87472548b39ca9ce8ff4c76e" type="openaire"
|
||||
confidenceLevel="0.9"/>
|
||||
<id value="24497737" type="pmid" confidenceLevel="0.9"/>
|
||||
</citation>
|
||||
<citation position="26">
|
||||
<rawText>26 Prabhakaran Y Dinakaran SK Macharala SP Ghosh S Karanam SR
|
||||
Kanthasamy N Avasarala H Molecular docking studies of withanolides
|
||||
against Cox-2 enzyme. Pak J Pharm Sci.
|
||||
2012;25(3):595–598.22713947</rawText>
|
||||
<id value="dedup_wf_001::5ff38da7b7b422ff22180741a908aa14" type="openaire"
|
||||
confidenceLevel="0.9"/>
|
||||
<id value="22713947" type="pmid" confidenceLevel="0.9"/>
|
||||
</citation>
|
||||
<citation position="27">
|
||||
<rawText>27 Mohan R Hammers HJ Bargagna-Mohan P Zhan XH Herbstritt CJ Ruiz A
|
||||
Zhang L Hanson AD Conner BP Rougas J Withaferin A is a potent inhibitor
|
||||
of angiogenesis. Angiogenesis. 2004;7(2):115–122.15516832</rawText>
|
||||
<id value="dedup_wf_001::dd552ab21a101677856a159c9d74908a" type="openaire"
|
||||
confidenceLevel="0.9"/>
|
||||
<id value="15516832" type="pmid" confidenceLevel="0.9"/>
|
||||
</citation>
|
||||
<citation position="28">
|
||||
<rawText>28 Friedemann T Otto B Klatschke K Schumacher U Tao Y Leung AK
|
||||
Efferth T Schroder S Coptis chinensis Franch. exhibits neuroprotective
|
||||
properties against oxidative stress in human neuroblastoma cells. J
|
||||
Ethnopharmacol. 2014;155(1):607–615.24929105</rawText>
|
||||
<id value="dedup_wf_001::9f8a8f6e0aedf9dff47a66b8229baf87" type="openaire"
|
||||
confidenceLevel="0.9"/>
|
||||
<id value="24929105" type="pmid" confidenceLevel="0.9"/>
|
||||
</citation>
|
||||
<citation position="29">
|
||||
<rawText>29 Hu S Han R Mak S Han Y Protection against
|
||||
1-methyl-4-phenylpyridinium ion (MPP+)-induced apoptosis by water
|
||||
extract of ginseng (Panax ginseng C.A. Meyer) in SH-SY5Y cells. J
|
||||
Ethnopharmacol. 2011;135(1):34–42.21349320</rawText>
|
||||
<id value="scholexplore::646e892807dc6e1a30938d439b879a76" type="openaire"
|
||||
confidenceLevel="0.9"/>
|
||||
<id value="21349320" type="pmid" confidenceLevel="0.9"/>
|
||||
</citation>
|
||||
<citation position="30">
|
||||
<rawText>30 Kane MJ Hatic H Delic V Dennis JS Butler CL Saykally JN Citron
|
||||
BA Modeling the pathobiology of repetitive traumatic brain injury in
|
||||
immortalized neuronal cell lines. Brain Res.
|
||||
2011;1425:123–131.22018688</rawText>
|
||||
<id value="22018688" type="pmid" confidenceLevel="0.9"/>
|
||||
</citation>
|
||||
<citation position="31">
|
||||
<rawText>31 Sehgal N Gupta A Valli RK Joshi SD Mills JT Hamel E Khanna P
|
||||
Jain SC Thakur SS Ravindranath V Withania somnifera reverses Alzheimer’s
|
||||
disease pathology by enhancing low-density lipoprotein receptor-related
|
||||
protein in liver. Proc Natl Acad Sci U S A.
|
||||
2012;109(9):3510–3515.22308347</rawText>
|
||||
<id value="dedup_wf_001::6a5a977979d2b9beed791c95191ca124" type="openaire"
|
||||
confidenceLevel="0.9"/>
|
||||
<id value="22308347" type="pmid" confidenceLevel="0.9"/>
|
||||
</citation>
|
||||
<citation position="32">
|
||||
<rawText>32 Arundine M Aarts M Lau A Tymianski M Vulnerability of central
|
||||
neurons to secondary insults after in vitro mechanical stretch. J
|
||||
Neurosci. 2004;24(37):8106–8123.15371512</rawText>
|
||||
<id value="scholexplore::a92bd7b567b76e9a41c190ee141483da" type="openaire"
|
||||
confidenceLevel="0.9"/>
|
||||
<id value="15371512" type="pmid" confidenceLevel="0.9"/>
|
||||
</citation>
|
||||
<citation position="33">
|
||||
<rawText>33 Lau A Arundine M Sun HS Jones M Tymianski M Inhibition of
|
||||
caspase-mediated apoptosis by peroxynitrite in traumatic brain injury. J
|
||||
Neurosci. 2006;26(45):11540–11553.17093075</rawText>
|
||||
<id value="17093075" type="pmid" confidenceLevel="0.9"/>
|
||||
</citation>
|
||||
<citation position="34">
|
||||
<rawText>34 Weber JT Rzigalinski BA Ellis EF Traumatic injury of cortical
|
||||
neurons causes changes in intracellular calcium stores and capacitative
|
||||
calcium influx. J Biol Chem. 2001;276(3):1800–1807.11050103</rawText>
|
||||
<id value="11050103" type="pmid" confidenceLevel="0.9"/>
|
||||
</citation>
|
||||
<citation position="35">
|
||||
<rawText>35 Ellis EF McKinney JS Willoughby KA Liang S Povlishock JT A new
|
||||
model for rapid stretch-induced injury of cells in culture:
|
||||
characterization of the model using astrocytes. J Neurotrauma.
|
||||
1995;12(3):325–339.7473807</rawText>
|
||||
<id value="7473807" type="pmid" confidenceLevel="0.9"/>
|
||||
</citation>
|
||||
<citation position="36">
|
||||
<rawText>36 Zhang Y Ba Y Liu C Sun G Ding L Gao S Hao J Yu Z Zhang J Zen K
|
||||
PGC-1alpha induces apoptosis in human epithelial ovarian cancer cells
|
||||
through a PPARgamma-dependent pathway. Cell Res.
|
||||
2007;17(4):363–373.17372612</rawText>
|
||||
<id value="17372612" type="pmid" confidenceLevel="0.9"/>
|
||||
</citation>
|
||||
<citation position="37">
|
||||
<rawText>37 Brooks AR Lelkes PI Rubanyi GM Gene expression profiling of
|
||||
human aortic endothelial cells exposed to disturbed flow and steady
|
||||
laminar flow. Physiol Genomics. 2002;9(1):27–41.11948288</rawText>
|
||||
<id value="11948288" type="pmid" confidenceLevel="0.9"/>
|
||||
</citation>
|
||||
<citation position="38">
|
||||
<rawText>38 Du Y Villeneuve NF Wang XJ Sun Z Chen W Li J Lou H Wong PK Zhang
|
||||
DD Oridonin confers protection against arsenic-induced toxicity through
|
||||
activation of the Nrf2-mediated defensive response. Environ Health
|
||||
Perspect. 2008;116(9):1154–1161.18795156</rawText>
|
||||
<id value="dedup_wf_001::c4cf0ed4f97b1c6e4c75fcb9c7afe9e0" type="openaire"
|
||||
confidenceLevel="0.9"/>
|
||||
<id value="18795156" type="pmid" confidenceLevel="0.9"/>
|
||||
</citation>
|
||||
<citation position="39">
|
||||
<rawText>39 Pool M Thiemann J Bar-Or A Fournier AE NeuriteTracer: a novel
|
||||
ImageJ plugin for automated quantification of neurite outgrowth. J
|
||||
Neurosci Methods. 2008;168(1):134–139.17936365</rawText>
|
||||
<id value="dedup_wf_001::6880dcaf7780c1e1c331a14f57657cb9" type="openaire"
|
||||
confidenceLevel="0.9"/>
|
||||
<id value="17936365" type="pmid" confidenceLevel="0.9"/>
|
||||
</citation>
|
||||
<citation position="40">
|
||||
<rawText>40 Chen J Wu X Shao B Zhao W Shi W Zhang S Ni L Shen A Increased
|
||||
expression of TNF receptor-associated factor 6 after rat traumatic brain
|
||||
injury. Cell Mol Neurobiol. 2011;31(2):269–275.21072581</rawText>
|
||||
<id value="21072581" type="pmid" confidenceLevel="0.9"/>
|
||||
</citation>
|
||||
<citation position="41">
|
||||
<rawText>41 Kuboyama T Tohda C Komatsu K Neuritic regeneration and synaptic
|
||||
reconstruction induced by withanolide A. Br J Pharmacol.
|
||||
2005;144(7):961–971.15711595</rawText>
|
||||
<id value="scholexplore::b4df67f5a2958ef86b5ad05198145918" type="openaire"
|
||||
confidenceLevel="0.9"/>
|
||||
<id value="15711595" type="pmid" confidenceLevel="0.9"/>
|
||||
</citation>
|
||||
<citation position="42">
|
||||
<rawText>42 Kuboyama T Tohda C Komatsu K Withanoside IV and its active
|
||||
metabolite, sominone, attenuate Abeta(25-35)-induced neurodegeneration
|
||||
Eur J Neurosci. 2006;23(6):1417–1426.16553605</rawText>
|
||||
<id value="scholexplore::76a1d92beacaba8b41d27bcfe74b499d" type="openaire"
|
||||
confidenceLevel="0.9"/>
|
||||
<id value="16553605" type="pmid" confidenceLevel="0.9"/>
|
||||
</citation>
|
||||
<citation position="43">
|
||||
<rawText>43 Jarrard LE On the role of the hippocampus in learning and memory
|
||||
in the rat. Behav Neural Biol. 1993;60(1):9–26.8216164</rawText>
|
||||
<id value="dedup_wf_001::b3c0dbd186731e31ce56da1154570e0f" type="openaire"
|
||||
confidenceLevel="0.9"/>
|
||||
<id value="8216164" type="pmid" confidenceLevel="0.9"/>
|
||||
</citation>
|
||||
<citation position="44">
|
||||
<rawText>44 Vareed SK Bauer AK Nair KM Liu Y Jayaprakasam B Nair MG
|
||||
Blood-brain barrier permeability of bioactive withanamides present in
|
||||
Withania somnifera fruit extract. Phytother Res.
|
||||
2014;28(8):1260–1264.24458838</rawText>
|
||||
<id value="scholexplore::72d81005d8571c5fd59daf66a9d0fc73" type="openaire"
|
||||
confidenceLevel="0.9"/>
|
||||
<id value="24458838" type="pmid" confidenceLevel="0.9"/>
|
||||
</citation>
|
||||
</citations>
|
||||
</extraInfo>
|
||||
</oaf:entity>
|
||||
</metadata>
|
||||
</result>
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<record>
|
||||
<result xmlns:dri="http://www.driver-repository.eu/namespace/dri" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<header>
|
||||
<dri:objIdentifier>openaire____::c63cd1db3b28cbef76046c7064c77735</dri:objIdentifier>
|
||||
<dri:dateOfCollection>2017-11-28</dri:dateOfCollection>
|
||||
<dri:dateOfTransformation/>
|
||||
<counters/>
|
||||
</header>
|
||||
<metadata>
|
||||
<oaf:entity xmlns:oaf="http://namespace.openaire.eu/oaf"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://namespace.openaire.eu/oaf http://namespace.openaire.eu/oaf http://www.openaire.eu/schema/0.2/oaf-0.2.xsd">
|
||||
<oaf:datasource>
|
||||
<subjects classid="keywords" classname="keywords"
|
||||
schemeid="dnet:subject_classification_typologies" schemename="dnet:subject_classification_typologies">{NULL}</subjects>
|
||||
<accessinfopackage>http://rifdt.instifdt.bg.ac.rs/oai/openaire</accessinfopackage>
|
||||
<englishname>RIFDT - Repository of Institute for Philosophy and Social Theory of the University in Belgrade</englishname>
|
||||
<logourl>http://rifdt.instifdt.bg.ac.rs/themes/MirageRIFDT/images/RIFDTOA.jpg</logourl>
|
||||
<dataprovider>false</dataprovider>
|
||||
<officialname>RIFDT - Repository of Institute for Philosophy and Social Theory, University of Belgrade</officialname>
|
||||
<serviceprovider>false</serviceprovider>
|
||||
<namespaceprefix>rifdtreposit</namespaceprefix>
|
||||
<websiteurl>http://rifdt.instifdt.bg.ac.rs/</websiteurl>
|
||||
<dateofvalidation>2017-11-28</dateofvalidation>
|
||||
<contactemail>biljana@rcub.bg.ac.rs</contactemail>
|
||||
<description>RIFDT contains all publications published by the researchers affiliated in Institute for Philosophy and Social Theory, University of Belgrade. Additionally it contains all texts published in the magazine Philosophy and Society.</description>
|
||||
<openairecompatibility classid="openaire3.0"
|
||||
classname="OpenAIRE 3.0 (OA, funding)"
|
||||
schemeid="dnet:datasourceCompatibilityLevel" schemename="dnet:datasourceCompatibilityLevel"/>
|
||||
<longitude>44.7</longitude>
|
||||
<datasourcetypeui
|
||||
classid="aggregator::pubsrepository::unknown"
|
||||
classname="Publication Repository Aggregator"
|
||||
schemeid="dnet:datasource_typologies" schemename="dnet:datasource_typologies"/>
|
||||
<datasourcetype classid="aggregator::pubsrepository::unknown"
|
||||
classname="Publication Repository Aggregator"
|
||||
schemeid="dnet:datasource_typologies" schemename="dnet:datasource_typologies"/>
|
||||
<latitude>20.4</latitude>
|
||||
<versioning>false</versioning>
|
||||
<odnumberofitems/>
|
||||
<odnumberofitemsdate/>
|
||||
<odpolicies/>
|
||||
<odlanguages/>
|
||||
<odcontenttypes/>
|
||||
<releasestartdate/>
|
||||
<releaseenddate/>
|
||||
<missionstatementurl/>
|
||||
<databaseaccesstype/>
|
||||
<datauploadtype/>
|
||||
<databaseaccessrestriction/>
|
||||
<datauploadrestriction/>
|
||||
<citationguidelineurl/>
|
||||
<qualitymanagementkind/>
|
||||
<pidsystems/>
|
||||
<certificates/>
|
||||
<policies id="" name=""/>
|
||||
<collectedfrom
|
||||
id="infrastruct_::f66f1bd369679b5b077dcdf006089556" name="OpenAIRE"/>
|
||||
<originalId>openaire____::UklGRFQgLSBSZXBvc2l0b3J5IG9mIEluc3RpdHV0ZSBmb3IgUGhpbG9zb3BoeSBhbmQgU29jaWFsIFRoZW9yeQ==</originalId>
|
||||
<originalId>piwik:121</originalId>
|
||||
<pid classid="" classname="" schemeid="" schemename=""/>
|
||||
<datainfo>
|
||||
<inferred>false</inferred>
|
||||
<deletedbyinference>false</deletedbyinference>
|
||||
<trust>0.9</trust>
|
||||
<inferenceprovenance/>
|
||||
<provenanceaction
|
||||
classid="sysimport:crosswalk:entityregistry"
|
||||
classname="sysimport:crosswalk:entityregistry"
|
||||
schemeid="dnet:provenance_actions" schemename="dnet:provenance_actions"/>
|
||||
</datainfo>
|
||||
<rels/>
|
||||
<children/>
|
||||
</oaf:datasource>
|
||||
</oaf:entity>
|
||||
</metadata>
|
||||
</result>
|
||||
</record>
|
Loading…
Reference in New Issue