SARS-CoV-2-Queries

[ en ja es pt ]

Literature

These queries list the latest 10 articles about a number of topics. It is no replacement for Scholia [1], which has a much richer overview of literature on the topic. Each section includes a link to the Scholia page for that topic. The queries used here are very basic, and only use the ‘main subject’ property. This tutorial explains how to annotation literature with main subjects in Wikidata.

about SARS-CoV-2

SARS-CoV-2 is the name of the virus.

SPARQL sparql/litSARSCoV2.rq (run, edit)

SELECT (MAX(?dates) as ?date) ?work ?workLabel ?doi WHERE {
  ?work wdt:P921 wd:Q82069695 .
  OPTIONAL { ?work wdt:P577 ?dates . }
  OPTIONAL { ?work wdt:P356 ?doi . }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en,en". }
} GROUP BY ?work ?workLabel ?doi ORDER BY DESC(?date) ?work

This gives these 10 papers:

date work doi
2023-09-01 Kaempferol inhibits SARS-CoV-2 invasion by impairing heptad repeats-mediated viral fusion (edit) 10.1016/J.PHYMED.2023.154942
2023-06-01 Head and neck reconstruction in the SARS-CoV-2 pandemic era: outcomes and lessons learned (edit) 10.21037/FOMM-21-4
2023-06-01 Uptake and effectiveness of a mobile application for real-time reporting and quality assurance of decentralized SARS-CoV-2 testing in Uganda (edit) 10.3389/FPUBH.2023.1053544
2023-05-31 Single-cell analysis of adult human heart across healthy and cardiovascular disease patients reveals the cellular landscape underlying SARS-CoV-2 invasion of myocardial tissue through ACE2 (edit) 10.1186/S12967-023-04224-1
2023-05-18 Impact of peptide:HLA complex stability for the identification of SARS-CoV-2-specific CD8+T cells (edit) 10.3389/FIMMU.2023.1151659
2023-05-08 Excess risk of SARS-CoV-2 infection among in-person nonhealthcare workers in six states, September 2020-June 2021 (edit) 10.1002/AJIM.23487
2023-04-19 Seroprevalence and SARS-CoV-2 invasion in general populations: A scoping review over the first year of the pandemic (edit) 10.1371/JOURNAL.PONE.0269104
2023-04-03 Oral Supplementation with AHCC, a Standardized Extract of Cultured Mycelia, Enhances Host Resistance against SARS-CoV-2 Infection (edit) 10.3390/PATHOGENS12040554
This table is truncated. See the full table at sparql/litSARSCoV2.rq

about the SARS-CoV-2 variants

Specific virus variants are getting particular interest, and we can find the articles about those variants too:

SPARQL sparql/litSARSCoV2Variants.rq (run, edit)

#defaultView:BarChart
SELECT ?variant ?variantLabel (COUNT(?work) AS ?count) WHERE {
  ?variant wdt:P31 wd:Q104450895 .
  ?work wdt:P921 ?variant .
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en,en". }
} GROUP BY ?variant ?variantLabel
  ORDER BY ASC(?variantLabel)

This gives:

about SARS-CoV-2 genes

We can also query for articles about the genes. It breaks down like this:

We get that bar chart with this query:

SPARQL sparql/articleCountPerGene.rq (run, edit)

#defaultView:BarChart
SELECT ?gene ?geneLabel (COUNT(?work) AS ?count) WHERE {
  ?gene wdt:P703 wd:Q82069695 ; wdt:P31 wd:Q7187 .
  ?work wdt:P921 ?gene .
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en,en". }
} GROUP BY ?gene ?geneLabel
  ORDER BY ASC(?geneLabel)

The articles themselves we can list with this query:

SPARQL sparql/litSARSCoV2Genes.rq (run, edit)

SELECT (MAX(?dates) as ?date) ?work ?workLabel ?doi WHERE {
  ?gene wdt:P703 wd:Q82069695 ; wdt:P31 wd:Q7187 .
  ?work wdt:P921 ?gene .
  OPTIONAL { ?work wdt:P577 ?dates . }
  OPTIONAL { ?work wdt:P356 ?doi . }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en,en". }
} GROUP BY ?work ?workLabel ?doi ORDER BY DESC(?date)

Which currently returns:

date work doi
2021-01-01 SARS-CoV-2 Accessory Protein ORF7b Mediates Tumor Necrosis Factor-α-Induced Apoptosis in Cells (edit) 10.3389/FMICB.2021.654709
2020-08-18 Effects of a major deletion in the SARS-CoV-2 genome on the severity of infection and the inflammatory response: an observational cohort study (edit) 10.1016/S0140-6736(20)31757-8
2020-07-21 Discovery and Genomic Characterization of a 382-Nucleotide Deletion in ORF7b and ORF8 during the Early Evolution of SARS-CoV-2 (edit) 10.1128/MBIO.01610-20
2020-06-22 A neutralizing human antibody binds to the N-terminal domain of the Spike protein of SARS-CoV-2 (edit) 10.1126/SCIENCE.ABC6952
2020-06-16 SARS-CoV-2 genomic surveillance in Taiwan revealed novel ORF8-deletion mutant and clade possibly associated with infections in Middle East (edit) 10.1080/22221751.2020.1782271
2020-05-25 Genomic surveillance of SARS-CoV-2 in Thailand reveals mixed imported populations, a local lineage expansion and a virus with truncated ORF7a (edit) 10.1101/2020.05.22.20108498
2020-05-18 Molecular conservation and Differential mutation on ORF3a gene in Indian SARS-CoV2 genomes (edit) 10.1101/2020.05.14.096107
2020-04-30 A SARS-CoV-2 protein interaction map reveals targets for drug repurposing (edit) 10.1038/S41586-020-2286-9
This table is truncated. See the full table at sparql/litSARSCoV2Genes.rq

about SARS-CoV-2 proteins

And about the virus proteins we have this distribution of articles:

We get that bar chart with this query:

SPARQL sparql/articleCountPerProtein.rq (run, edit)

#defaultView:BarChart
SELECT ?protein ?proteinLabel (COUNT(?work) AS ?count) WHERE {
  ?protein wdt:P703 wd:Q82069695 ; wdt:P31 wd:Q8054 .
  ?work wdt:P921 ?protein .
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en,en". }
} GROUP BY ?protein ?proteinLabel
  ORDER BY ASC(?proteinLabel)

The articles themselves we can list with this query:

SPARQL sparql/litSARSCoV2Proteins.rq (run, edit)

SELECT (MAX(?dates) as ?date) ?work ?workLabel ?doi WHERE {
  ?protein wdt:P703 wd:Q82069695 ; wdt:P31 wd:Q8054 .
  ?work wdt:P921 ?protein .
  OPTIONAL { ?work wdt:P577 ?dates . }
  OPTIONAL { ?work wdt:P356 ?doi . }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en,en". }
} GROUP BY ?work ?workLabel ?doi ORDER BY DESC(?date)

Which currently returns:

date work doi
2022-12-01 ABO blood group is involved in the quality of the specific immune response anti-SARS-CoV-2 (edit) 10.1080/21505594.2021.2019959
2022-12-01 Computational investigation of potent inhibitors against SARS-CoV-2 2′-O-methyltransferase (nsp16): Structure-based pharmacophore modeling, molecular docking, molecular dynamics simulations and binding free energy calculations (edit) 10.1016/J.JMGM.2022.108306
2022-09-01 Frequent occurrence of mutations in nsp3 and nsp4 of SARS-CoV-2, presumably caused by the inhaled asthma drug ciclesonide (edit) 10.1093/PNASNEXUS/PGAC197
2022-08-18 In silico identification of novel SARS-CoV-2 main protease and non-structural protein 13 (nsp13) inhibitors through consensus docking and free binding energy calculations. (edit) 10.2174/1386207325666220818141112
2022-05-27 The mechanisms of catalysis and ligand binding for the SARS-CoV-2 NSP3 macrodomain from neutron and x-ray diffraction at room temperature (edit) 10.1126/SCIADV.ABO5083
2022-05-26 Parsing the role of NSP1 in SARS-CoV-2 infection (edit)
2022-05-20 Refolding of lid subdomain of SARS-CoV-2 nsp14 upon nsp10 interaction releases exonuclease activity (edit) 10.1016/J.STR.2022.04.014
2022-05-12 The role of NSP6 in the biogenesis of the SARS-CoV-2 replication organelle (edit) 10.1038/S41586-022-04835-6
This table is truncated. See the full table at sparql/litSARSCoV2Proteins.rq

about coronaviruses

As outlined in Chapter 2, SARS-Cov-2 is one of the coronaviruses that can infect humans.

SPARQL sparql/litCoronaviruses.rq (run, edit)

SELECT (MAX(?dates) as ?date) ?work ?workLabel ?doi WHERE {
  ?work wdt:P921 wd:Q57751738 .
  OPTIONAL { ?work wdt:P577 ?dates . }
  OPTIONAL { ?work wdt:P356 ?doi . }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en,en". }
} GROUP BY ?work ?workLabel ?doi ORDER BY DESC(?date)

This gives these 10 papers:

date work doi
2022-08-05 A history of coronaviruses (edit) 10.15347/WJM/2022.005
2021-04-26 Fundamental evolution of all Orthocoronavirinae including three deadly lineages descendent from Chiroptera‐hosted coronaviruses: SARS‐CoV, MERS‐CoV and SARS‐CoV‐2 (edit) 10.1111/CLA.12454
2021-03-19 Major coronavirus variant found in pets for first time (edit) 10.1126/SCIENCE.ABI6152
2020-11-23 No Evidence of Coronaviruses or Other Potentially Zoonotic Viruses in Sunda pangolins (Manis javanica) Entering the Wildlife Trade via Malaysia (edit) 10.1007/S10393-020-01503-X
2020-09-08 Polyphenols vs. Coronaviruses: How Far Has Research Moved Forward? (edit) 10.3390/MOLECULES25184103
2020-09-01 A Guide to COVID-19: a global pandemic caused by the novel coronavirus SARS-CoV-2 (edit) 10.1111/FEBS.15375
2020-09-01 Wild birds as reservoirs for diverse and abundant gamma- and deltacoronaviruses (edit) 10.1093/FEMSRE/FUAA026
2020-08-27 Characterization of accessory genes in coronavirus genomes (edit) 10.1186/S12985-020-01402-1
This table is truncated. See the full table at sparql/litCoronaviruses.rq

about human coronaviruses

The seven human coronaviruses have more than 6000 thousand articles about them in Wikidata. The following query therefore is a bit tuned for performance and more complex. Also, the list is quite long, and not given on this page. To see the output, click below in the name of the litHumanCoronaviruses.rq file:

SPARQL sparql/litHumanCoronaviruses.rq (run, edit)

SELECT ?date ?work ?workLabel ?virus ?virusLabel ?doi ?pubmed WITH {
  SELECT (MAX(?dates) as ?date) ?work ?doi ?virus WHERE {
    VALUES ?virus {
      wd:Q82069695 # SARS-CoV-2
      wd:Q16983360 # HKU1
      wd:Q16991954 # OC43
      wd:Q8351095  # NL63 
      wd:Q16983356 # 229E 
      wd:Q4902157  # MERS-CoV
      wd:Q278567   # SARS-CoV
    }
    ?work wdt:P577 ?dates ;
          wdt:P921 ?virus .
  } GROUP BY ?work ?doi ?virus
    ORDER BY DESC(?date)
    LIMIT 5000
} AS %ARTICLES WHERE {
  INCLUDE %ARTICLES
  OPTIONAL { ?work wdt:P356 ?doi . }
  OPTIONAL { ?work wdt:P698 ?pubmed . }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en,en". }
}
ORDER BY DESC(?date) ?doi ?pubmed ?virus

Moreover, the number of articles for each virus varies significantly, which can be visualized with this query:

SPARQL sparql/litHumanCoronavirusesCounts.rq (run, edit)

SELECT ?virus ?virusLabel ?count WITH {
  SELECT ?virus (COUNT(DISTINCT ?work) AS ?count) WHERE {
    VALUES ?virus {
      wd:Q82069695 # SARS-CoV-2
      wd:Q16983360 # HKU1
      wd:Q16991954 # OC43
      wd:Q8351095  # NL63 
      wd:Q16983356 # 229E 
      wd:Q4902157  # MERS-CoV
      wd:Q278567   # SARS-CoV
    }
    ?work wdt:P921 ?virus .
  } GROUP BY ?virus
} AS %ARTICLES WHERE {
  INCLUDE %ARTICLES
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en,en". }
}
ORDER BY DESC(?count)

Which tells us:

virus count
SARS-CoV-2 (edit) 24131
SARSr-CoV (edit) 2487
Middle East respiratory syndrome coronavirus (edit) 1051
Human coronavirus OC43 (edit) 114
Human coronavirus 229E (edit) 107
human Coronavirus NL63 (edit) 94
Human coronavirus HKU1 (edit) 22

and their genes

SPARQL sparql/litHumanCoronavirusesGeneCounts.rq (run, edit)

SELECT ?virus ?virusLabel ?gene ?geneLabel ?count WITH {
  SELECT ?virus ?gene (COUNT(DISTINCT ?work) AS ?count) WHERE {
    VALUES ?virus {
      wd:Q82069695 # SARS-CoV-2
      wd:Q16983360 # HKU1
      wd:Q16991954 # OC43
      wd:Q8351095  # NL63 
      wd:Q16983356 # 229E 
      wd:Q4902157  # MERS-CoV
      wd:Q278567   # SARS-CoV
    }
    ?gene wdt:P703 ?virus ; wdt:P31 wd:Q7187 .
    ?work wdt:P921 ?gene .
  } GROUP BY ?virus ?gene
} AS %ARTICLES WHERE {
  INCLUDE %ARTICLES
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en,en". }
}
ORDER BY DESC(?count)

Which shows us:

virus gene count
human Coronavirus NL63 (edit) membrane protein (edit) 7
SARS-CoV-2 (edit) ORF8 protein (edit) 6
human Coronavirus NL63 (edit) nucleocapsid protein (edit) 3
human Coronavirus NL63 (edit) envelope protein (edit) 3
human Coronavirus NL63 (edit) spike protein (edit) 3
SARS-CoV-2 (edit) ORF7b (edit) 3
human Coronavirus NL63 (edit) ORF1a polyprotein;ORF1ab polyprotein (edit) 2
human Coronavirus NL63 (edit) protein 3 (edit) 2
Human coronavirus 229E (edit) nucleocapsid protein (edit) 2
Human coronavirus 229E (edit) surface glycoprotein (edit) 2
Human coronavirus OC43 (edit) spike surface glycoprotein (edit) 2
SARS-CoV-2 (edit) nucleocapsid phosphoprotein (edit) 2
SARS-CoV-2 (edit) ORF3a protein-encoding gene (edit) 2
SARS-CoV-2 (edit) surface glycoprotein (edit) 2
SARSr-CoV (edit) matrix protein (edit) 1
Human coronavirus 229E (edit) envelope protein (edit) 1
Human coronavirus 229E (edit) membrane protein (edit) 1
Human coronavirus 229E (edit) 4b protein (edit) 1
Human coronavirus 229E (edit) 4a protein (edit) 1
Human coronavirus HKU1 (edit) membrane glycoprotein (edit) 1
Human coronavirus HKU1 (edit) hemagglutinin-esterase glycoprotein (edit) 1
Human coronavirus HKU1 (edit) ORF1a polyprotein;ORF1ab polyprotein (edit) 1
Human coronavirus HKU1 (edit) nucleocapsid phosphoprotein (edit) 1
Human coronavirus HKU1 (edit) envelope protein (edit) 1
Human coronavirus HKU1 (edit) spike glycoprotein (edit) 1
Human coronavirus OC43 (edit) membrane protein (edit) 1
Human coronavirus OC43 (edit) I protein;nucleocapsid protein (edit) 1
Human coronavirus OC43 (edit) ns2 (edit) 1
SARS-CoV-2 (edit) ORF7a protein (edit) 1
SARS-CoV-2 (edit) membrane glycoprotein (edit) 1
SARS-CoV-2 (edit) envelope protein (edit) 1
SARS-CoV-2 (edit) ORF1a polyprotein;ORF1ab polyprotein (edit) 1

and their proteins

SPARQL sparql/litHumanCoronavirusesProteinCounts.rq (run, edit)

SELECT ?virus ?virusLabel ?protein ?proteinLabel ?count WITH {
  SELECT ?virus ?protein (COUNT(DISTINCT ?work) AS ?count) WHERE {
    VALUES ?virus {
      wd:Q82069695 # SARS-CoV-2
      wd:Q16983360 # HKU1
      wd:Q16991954 # OC43
      wd:Q8351095  # NL63 
      wd:Q16983356 # 229E 
      wd:Q4902157  # MERS-CoV
      wd:Q278567   # SARS-CoV
    }
    ?protein wdt:P31 wd:Q8054 .
    { ?protein wdt:P703 ?virus }
    UNION
    { ?protein wdt:P702 | ^wdt:P688 ?gene . ?gene wdt:P703 ?virus }
    ?work wdt:P921 ?protein .
  } GROUP BY ?virus ?protein
} AS %ARTICLES WHERE {
  INCLUDE %ARTICLES
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en,en". }
}
ORDER BY DESC(?count) ?virus ?protein

Where the counts are:

virus protein count
SARS-CoV-2 (edit) spike glycoprotein [SARS-CoV-2] (edit) 415
SARS-CoV-2 (edit) nucleocapsid protein [SARS-CoV-2] (edit) 108
SARSr-CoV (edit) spike glycoprotein [SARS-Cov] (edit) 98
SARS-CoV-2 (edit) Papain-like proteinase [SARS-CoV-2] (edit) 74
SARSr-CoV (edit) nucleoprotein [SARS-Cov] (edit) 70
SARSr-CoV (edit) 3C-like proteinase [SARS-Cov] (edit) 66
SARS-CoV-2 (edit) non-structural protein 5 [SARS-CoV-2] (edit) 59
SARS-CoV-2 (edit) Non-structural protein 10 [SARS CoV-2] (edit) 57
SARS-CoV-2 (edit) RNA-directed RNA polymerase [SARS-CoV-2] (edit) 57
SARS-CoV-2 (edit) Host translation inhibitor nsp1 [SARS-CoV-2] (edit) 51
SARSr-CoV (edit) papain-like proteinase [SARS-Cov] (edit) 46
SARS-CoV-2 (edit) non-structural protein 16 [SARS-CoV-2] (edit) 45
SARS-CoV-2 (edit) Non-structural protein 14 [SARS-CoV-2] (edit) 43
SARSr-CoV (edit) Protein 3a [SARS-Cov] (edit) 41
SARS-CoV-2 (edit) Helicase [SARS-CoV-2] (edit) 41
SARSr-CoV (edit) Envelope small membrane protein [SARS-Cov] (edit) 38
SARS-CoV-2 (edit) envelope protein [SARS-CoV-2] (edit) 34
SARS-CoV-2 (edit) ORF8 protein [SARS-CoV-2] (edit) 31
SARS-CoV-2 (edit) Viroporin 3a [SARS-CoV-2] (edit) 30
SARS-CoV-2 (edit) non-structural protein 15 [SARS-CoV-2] (edit) 28
SARS-CoV-2 (edit) Non-structural protein 7 [SARS-CoV-2] (edit) 26
SARSr-CoV (edit) Membrane protein [SARS-Cov] (edit) 25
SARS-CoV-2 (edit) membrane protein [SARS-CoV-2] (edit) 25
SARS-CoV-2 (edit) Non-structural protein nsp8 [SARS-CoV-2] (edit) 25
SARSr-CoV (edit) Non-structural protein NS6 [SARS-Cov] (edit) 20
SARS-CoV-2 (edit) ORF6 protein [SARS-CoV-2] (edit) 20
SARS-CoV-2 (edit) Protein 7a [SARS-CoV-2] (edit) 19
SARSr-CoV (edit) host translation inhibitor nsp1 [SARS-Cov] (edit) 17
SARS-CoV-2 (edit) Non-structural protein 9 [SARS-CoV-2] (edit) 17
SARSr-CoV (edit) Protein 7a [SARS-Cov] (edit) 15
SARS-CoV-2 (edit) Protein ORF9b [SARS-CoV-2] (edit) 15
SARS-CoV-2 (edit) Non-structural protein 2 [SARS CoV-2] (edit) 14
SARS-CoV-2 (edit) non-structural protein 6 [SARS-CoV-2] (edit) 12
SARSr-CoV (edit) Non-structural protein 3b [SARS-Cov] (edit) 10
SARSr-CoV (edit) 2'-O-methyltransferase [SARS-Cov] (edit) 10
SARSr-CoV (edit) Guanine-N7 methyltransferase [SARS-Cov] (edit) 10
SARSr-CoV (edit) protein non-structural 8a [SARS-Cov] (edit) 10
Middle East respiratory syndrome coronavirus (edit) spike glycoprotein (edit) 10
SARSr-CoV (edit) helicase [SARS-Cov] (edit) 9
SARS-CoV-2 (edit) Non-structural protein 4 [SARS-CoV-2] (edit) 9
SARSr-CoV (edit) Protein 9b [SARS-Cov] (edit) 8
SARSr-CoV (edit) uridylate-specific endoribonuclease [SARS-Cov] (edit) 8
SARSr-CoV (edit) non-structural protein 10 [SARS-Cov] (edit) 8
SARSr-CoV (edit) protein non-structural 8b [SARS-Cov] (edit) 8
SARS-CoV-2 (edit) ORF10 protein [SARS-CoV-2] (edit) 8
SARSr-CoV (edit) replicase polyprotein 1ab [SARS-Cov] (edit) 7
SARSr-CoV (edit) RNA-directed RNA polymerase [SARS-Cov] (edit) 7
SARS-CoV-2 (edit) ORF3b protein [SARS-CoV-2] (edit) 7
SARS-CoV-2 (edit) Protein non-structural 7b [SARS-CoV-2] (edit) 7
SARSr-CoV (edit) Protein non-structural 7b [SARS-Cov] (edit) 6
SARSr-CoV (edit) non-structural protein 7 [SARS-Cov] (edit) 6
SARSr-CoV (edit) non-structural protein 8 [SARS-Cov] (edit) 6
Human coronavirus OC43 (edit) nucleocapsid protein (edit) 5
SARSr-CoV (edit) non-structural protein 9 [SARS-Cov] (edit) 5
SARSr-CoV (edit) spike protein S2 [SARS-Cov] (edit) 5
SARSr-CoV (edit) non-structural protein 4 [SARS-Cov] (edit) 5
human Coronavirus NL63 (edit) Spike glycoprotein [NL63] (edit) 5
Human coronavirus OC43 (edit) spike surface glycoprotein (edit) 4
Human coronavirus HKU1 (edit) Spike glycoprotein (edit) 3
SARSr-CoV (edit) non-structural protein 6 [SARS-Cov] (edit) 3
SARSr-CoV (edit) non-structural protein 2 [SARS-Cov] (edit) 3
Middle East respiratory syndrome coronavirus (edit) nucleoprotein (edit) 3
SARS-CoV-2 (edit) orf1ab polyprotein [SARS-Cov 2] (edit) 3
Human coronavirus 229E (edit) Non-structural protein 4b (edit) 2
Human coronavirus 229E (edit) Spike glycoprotein (edit) 2
Human coronavirus HKU1 (edit) Replicase polyprotein 1ab (edit) 2
Human coronavirus OC43 (edit) ns12.9 (edit) 2
Human coronavirus OC43 (edit) hemagglutinin-esterase (edit) 2
SARS-CoV-2 (edit) Non-structural protein 11 [SARS CoV-2] (edit) 2
SARS-CoV-2 (edit) ORF9c protein [SARS CoV-2] (edit) 2
human Coronavirus NL63 (edit) Nucleoprotein (edit) 2
Human coronavirus 229E (edit) Non-structural protein 4a (edit) 1
Human coronavirus 229E (edit) Nucleoprotein (edit) 1
Human coronavirus 229E (edit) Replicase polyprotein 1ab (edit) 1
Human coronavirus HKU1 (edit) Spike glycoprotein (edit) 1
Human coronavirus HKU1 (edit) Membrane protein (edit) 1
Human coronavirus OC43 (edit) ns2 (edit) 1
Human coronavirus OC43 (edit) membrane protein (edit) 1
SARSr-CoV (edit) Replicase polyprotein 1a (edit) 1
Middle East respiratory syndrome coronavirus (edit) NS4B protein (edit) 1
SARS-CoV-2 (edit) putative protein ORF3c (edit) 1
human Coronavirus NL63 (edit) Membrane protein (edit) 1

References

  1. Rasberry L, Willighagen E, Nielsen FÅ, Mietchen D. Robustifying Scholia: paving the way for knowledge discovery and research assessment through Wikidata. RIO Journal [Internet]. 2019 May 2;5. Available from: https://riojournal.com/article/35820/ doi:10.3897/RIO.5.E35820 (Scholia)