diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 29f69dff137571064de8173e9fc0bafabef2764d..88621f6cfc73794fde06209186e7a04454492c17 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -52,6 +52,20 @@ stages: # when: on_success # expire_in: "30 days" +get-zotero: + image: python:3.11-bullseye + stage: get-data + before_script: + - apt update + - pip install pyzotero + script: + - ./scripts/get-articles.py -k ${ZOTERO_API_KEY} + - mv articles.json public/ + artifacts: + paths: + - public/articles.json + + get-pfam: image: ubuntu:23.04 stage: get-data diff --git a/README.md b/README.md index 4c626cda873bee54a1460bccef94f4ad10d1e8f0..6e0b55d480abc6de67e22edf210fc9cb15f85028 100755 --- a/README.md +++ b/README.md @@ -1,8 +1,45 @@ -# Content v2 Minimal Starter +# Knowledge database of information about defense systems in prokaryotes + +## How to use references in the wiki pages + +You can add article references by providing a doi directly in the markdown files. +There is two syntaxes that won't do exactly the same thing. + +You can add the doi in the [front-matter](https://content.nuxt.com/usage/markdown#front-matter) like : + +```yaml +relevantAbstracts: + - doi: 10.1016/j.mib.2005.06.006 + - doi: 10.1023/A:1002027321171 +``` + +or directly in the content of the page using: + +```md +:ref{doi=10.1023/A:1002027321171} +``` + +In both cases, before the page is rendered, these doi are parsed, the associated metadatas are automatically fetched and displayed at the bottom of the page like: + + + +When using the `:ref{doi=10.1023/A:1002027321171}` syntax, a link is added like `(Barrangou et al, 2017)` + +## Article metadata source + +They come from a local file [articles.json](public/articles.json). This file is automatically generated during each run of the production [deployment pipeline](/.gitlab-ci.yml) from a [Zotero collection](https://www.zotero.org/groups/5151022/mdmlab/collections/BSWL96X3) using the script [get-articles.py](/scripts/get-articles.py). If the doi is not found in this file, [crossref](https://api.crossref.org/) is used as fallback. + +## How can we update the [Zotero collection](https://www.zotero.org/groups/5151022/mdmlab/collections/BSWL96X3) + +Whoever belongs to the MDM Zotero group can update it. + +For person external, you can create an [issue](https://gitlab.pasteur.fr/mdm-lab/wiki/-/issues/new) that list at least doi you want to add. + +## Contributing Look at the [Content documentation](https://content-v2.nuxtjs.org/) to learn more. -## Setup +### Setup Make sure to install the dependencies: @@ -17,15 +54,15 @@ npm install pnpm install ``` -## Development Server +### Development Server -Start the development server on http://localhost:3000 +Start the development server on <http://localhost:3000> ```bash npm run dev ``` -## Production +### Production Build the application for production: diff --git a/components/content/ArticleDoi.vue b/components/content/ArticleDoi.vue index ea79d24030e5faaeacba3c78f8caf8bafb9c9c40..9cc73e482d95cdb9fa1ec57d7cddf3942456ee25 100644 --- a/components/content/ArticleDoi.vue +++ b/components/content/ArticleDoi.vue @@ -19,10 +19,10 @@ const { mobile } = useDisplay(); const show = ref(false); const articleTitle = computed(() => { - return props?.title ?? article.value?.title ?? props.doi; + return props?.title ?? article?.value?.title ?? props.doi; }); const articleAbstract = computed(() => { - return props.abstract ?? article.value?.abstract; + return props.abstract ?? article?.value?.abstract; }); </script> <template> diff --git a/components/content/ReferencesList.vue b/components/content/ReferencesList.vue index f8e80b1d01a1d8840d45b9e8fe3243ea2fa1b531..b7bf48dc6b8e22f013d9aa82f6af53f4d6628454 100644 --- a/components/content/ReferencesList.vue +++ b/components/content/ReferencesList.vue @@ -16,7 +16,7 @@ const doiBaseUrl = ref(new URL("https://doi.org/")); const fetchedDoi = ref( await Promise.all( props.items.map(async (doi) => { - const url = new URL(`/works/${doi}`, " https://api.crossref.org/").href; + const url = new URL(`/works/${doi}`, "https://api.crossref.org/").href; const { data, error } = await useFetchVueUse<{ message: { DOI: string; diff --git a/composables/useFetchArticle.ts b/composables/useFetchArticle.ts index a829bc4a2ab8b1ca7e9375119dcf18e0189d73e3..daa73e806f19c765369c7a5477ec93b05fb4ec6e 100644 --- a/composables/useFetchArticle.ts +++ b/composables/useFetchArticle.ts @@ -1,7 +1,7 @@ -import { useArticlesStore } from '@/stores/articles' -import { ref, computed, watchEffect, queryContent } from '#imports' - -import { CslJson } from '@/stores/articles' +import { useArticlesStore, CslJson } from '../stores/articles' +import { ref, computed, watchEffect, toValue } from "vue" +// import { useFetch } from '#app'; +// import { useFetch } from "nuxt" export interface ArticleMessage { DOI: string; @@ -48,7 +48,6 @@ export function useFetchArticle(doi: string) { const pending = ref(false) const doiBaseUrl = ref(new URL("https://doi.org/")); const url = ref(new URL(`/works/${doi}`, " https://api.crossref.org/").href); - const article = computed(() => { if (srcArticle.value != undefined) { const { @@ -86,29 +85,50 @@ export function useFetchArticle(doi: string) { } else { return srcArticle.value } }) + const zoteroArticles = ref([]) + // const config = useRuntimeConfig() + // console.log(config.value) + + + const fetchLocalArticles = () => { + useFetch<RawArticle[]>( + "/articles.json", + { lazy: true, server: false } + ).then(({ data }) => { + zoteroArticles.value = data.value + }) // localPending.value = articlesPending.value + if (zoteroArticles.value?.length > 0) { + for (const article of zoteroArticles.value) { + // console.log("article files : ", article.DOI) + store.add(article) + } + } - watchEffect(async () => { + } - if (store.articles.size === 0) { - const localArticles = await queryContent('/_partials/_articles').where({ _partial: true }).findOne() - if (localArticles?.articles && store.articles.size <= 0) { - for (const article of localArticles.articles) { - store.add(article) - } + const fetchCrossRef = () => { + useFetch<RawArticle>(toValue(url), { + lazy: true, server: false, + }).then(({ data, pending: pendingUseFetch }) => { + if (data.value?.message) { + srcArticle.value = data.value.message } + pending.value = pendingUseFetch.value + }) + + } + + watchEffect(() => { + // no article in the store + if (store.articles.size === 0) { + fetchLocalArticles() } if (store.articles.has(doi)) { srcArticle.value = store.articles.get(doi) return } else { - const { data, pending: pendingUseFetch, error, refresh } = await useFetch<RawArticle>(toValue(url), { - lazy: true, server: false, - }) - if (data.value?.message) { - srcArticle.value = data.value.message - } - pending.value = pendingUseFetch.value + fetchCrossRef() } }) @@ -124,4 +144,6 @@ export function useFetchArticle(doi: string) { return new URL(doi, doiBaseUrl.value).href; } return { article, pending } -} \ No newline at end of file +} + + diff --git a/public/articles.json b/public/articles.json new file mode 100644 index 0000000000000000000000000000000000000000..5e2fd4d288bbf575f61faf530ac672ca3151a02b --- /dev/null +++ b/public/articles.json @@ -0,0 +1,5298 @@ +[ + { + "id": "http://zotero.org/users/7432213/items/AJ93Y7EE", + "type": "article-journal", + "abstract": "Organisms from all domains of life are infected by viruses. In eukaryotes, serine/threonine kinases play a central role in antiviral response. Bacteria, however, are not commonly known to use protein phosphorylation as part of their defense against phages. Here we identify Stk2, a staphylococcal serine/threonine kinase that provides efficient immunity against bacteriophages by inducing abortive infection. A phage protein of unknown function activates the Stk2 kinase. This leads to the Stk2-dependent phosphorylation of several proteins involved in translation, global transcription control, cell-cycle control, stress response, DNA topology, DNA repair, and central metabolism. Bacterial host cells die as a consequence of Stk2 activation, thereby preventing propagation of the phage to the rest of the bacterial population. Our work shows that mechanisms of viral defense that rely on protein phosphorylation constitute a conserved antiviral strategy across multiple domains of life.", + "container-title": "Cell Host & Microbe", + "DOI": "10.1016/j.chom.2016.08.010", + "ISSN": "1934-6069", + "issue": "4", + "journalAbbreviation": "Cell Host Microbe", + "language": "eng", + "note": "PMID: 27667697", + "page": "471-481", + "source": "PubMed", + "title": "A Eukaryotic-like Serine/Threonine Kinase Protects Staphylococci against Phages", + "volume": "20", + "author": [ + { + "family": "Depardieu", + "given": "Florence" + }, + { + "family": "Didier", + "given": "Jean-Philippe" + }, + { + "family": "Bernheim", + "given": "Aude" + }, + { + "family": "Sherlock", + "given": "Andrew" + }, + { + "family": "Molina", + "given": "Henrik" + }, + { + "family": "Duclos", + "given": "Bertrand" + }, + { + "family": "Bikard", + "given": "David" + } + ], + "issued": { + "date-parts": [ + [ + "2016", + 10, + 12 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/Y2H7DIBY", + "type": "article", + "abstract": "Jumbo bacteriophages of the ⌽KZ-like family are characterized by large genomes (>200 kb) and the remarkable ability to assemble a proteinaceous nucleus-like structure. The nucleus protects the phage genome from canonical DNA-targeting immune systems, such as CRISPR-Cas and restriction-modification. We hypothesized that the failure of common bacterial defenses creates selective pressure for immune systems that target the unique jumbo phage biology. Here, we identify the “jumbo phage killer†(Juk) immune system that is deployed by a clinical isolate of Pseudomonas aeruginosa to resist ⌽KZ. Juk immunity rescues the cell by preventing early phage transcription, DNA replication, and nucleus assembly. Phage infection is first sensed by JukA (formerly YaaW), which localizes rapidly to the site of phage infection at the cell pole, triggered by ejected phage factors. The effector protein JukB is recruited by JukA, which is required to enable immunity and the subsequent degradation of the phage DNA. JukA homologs are found in several bacterial phyla and are associated with numerous other putative effectors, many of which provided specific anti-⌽KZ activity when expressed in P. aeruginosa. Together, these data reveal a novel strategy for immunity whereby immune factors are recruited to the site of phage protein and DNA ejection to prevent phage progression and save the cell.", + "DOI": "10.1101/2022.09.17.508391", + "language": "en", + "license": "© 2022, Posted by Cold Spring Harbor Laboratory. This pre-print is available under a Creative Commons License (Attribution-NonCommercial-NoDerivs 4.0 International), CC BY-NC-ND 4.0, as described at http://creativecommons.org/licenses/by-nc-nd/4.0/", + "note": "page: 2022.09.17.508391\nsection: New Results", + "publisher": "bioRxiv", + "source": "bioRxiv", + "title": "A family of novel immune systems targets early infection of nucleus-forming jumbo phages", + "URL": "https://www.biorxiv.org/content/10.1101/2022.09.17.508391v1", + "author": [ + { + "family": "Li", + "given": "Yuping" + }, + { + "family": "Guan", + "given": "Jingwen" + }, + { + "family": "Hareendranath", + "given": "Surabhi" + }, + { + "family": "Crawford", + "given": "Emily" + }, + { + "family": "Agard", + "given": "David A." + }, + { + "family": "Makarova", + "given": "Kira S." + }, + { + "family": "Koonin", + "given": "Eugene V." + }, + { + "family": "Bondy-Denomy", + "given": "Joseph" + } + ], + "accessed": { + "date-parts": [ + [ + "2023", + 1, + 18 + ] + ] + }, + "issued": { + "date-parts": [ + [ + "2022", + 9, + 18 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/YA88BZQB", + "type": "article-journal", + "abstract": "Archaea and Bacteria have evolved different defence strategies that target virtually all steps of the viral life cycle. The diversified virion morphotypes and genome contents of archaeal viruses result in a highly complex array of archaea-virus interactions. However, our understanding of archaeal antiviral activities lags far behind our knowledges of those in bacteria. Here we report a new archaeal defence system that involves DndCDEA-specific DNA phosphorothioate (PT) modification and the PbeABCD-mediated halt of virus propagation via inhibition of DNA replication. In contrast to the breakage of invasive DNA by DndFGH in bacteria, DndCDEA-PbeABCD does not degrade or cleave viral DNA. The PbeABCD-mediated PT defence system is widespread and exhibits extensive interdomain and intradomain gene transfer events. Our results suggest that DndCDEA-PbeABCD is a new type of PT-based virus resistance system, expanding the known arsenal of defence systems as well as our understanding of host-virus interactions.", + "container-title": "Nature Communications", + "DOI": "10.1038/s41467-019-09390-9", + "ISSN": "2041-1723", + "issue": "1", + "journalAbbreviation": "Nat Commun", + "language": "en", + "license": "2019 The Author(s)", + "note": "number: 1\npublisher: Nature Publishing Group", + "page": "1688", + "source": "www-nature-com.proxy.insermbiblio.inist.fr", + "title": "A new type of DNA phosphorothioation-based antiviral system in archaea", + "URL": "https://www.nature.com/articles/s41467-019-09390-9", + "volume": "10", + "author": [ + { + "family": "Xiong", + "given": "Lei" + }, + { + "family": "Liu", + "given": "Siyi" + }, + { + "family": "Chen", + "given": "Si" + }, + { + "family": "Xiao", + "given": "Yao" + }, + { + "family": "Zhu", + "given": "Bochen" + }, + { + "family": "Gao", + "given": "Yali" + }, + { + "family": "Zhang", + "given": "Yujing" + }, + { + "family": "Chen", + "given": "Beibei" + }, + { + "family": "Luo", + "given": "Jie" + }, + { + "family": "Deng", + "given": "Zixin" + }, + { + "family": "Chen", + "given": "Xiangdong" + }, + { + "family": "Wang", + "given": "Lianrong" + }, + { + "family": "Chen", + "given": "Shi" + } + ], + "accessed": { + "date-parts": [ + [ + "2023", + 1, + 18 + ] + ] + }, + "issued": { + "date-parts": [ + [ + "2019", + 4, + 11 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/5S9PQE6V", + "type": "article-journal", + "abstract": "The arms race between bacteria and phages has led to the development of exquisite bacterial defense systems including a number of uncharacterized systems distinct from the well-known restriction-modification and CRISPR/Cas systems. Here, we report functional analyses of the GajA protein from the newly predicted Gabija system. The GajA protein is revealed as a sequence-specific DNA nicking endonuclease unique in that its activity is strictly regulated by nucleotide concentration. NTP and dNTP at physiological concentrations can fully inhibit the robust DNA cleavage activity of GajA. Interestingly, the nucleotide inhibition is mediated by an ATPase-like domain, which usually hydrolyzes ATP to stimulate the DNA cleavage when associated with other nucleases. These features suggest a mechanism of the Gabija defense in which an endonuclease activity is suppressed under normal conditions, while it is activated by the depletion of NTP and dNTP upon the replication and transcription of invading phages. This work highlights a concise strategy to utilize a DNA nicking endonuclease for phage resistance via nucleotide regulation.", + "container-title": "Nucleic Acids Research", + "DOI": "10.1093/nar/gkab277", + "ISSN": "1362-4962", + "issue": "9", + "journalAbbreviation": "Nucleic Acids Res", + "language": "eng", + "note": "PMID: 33885789\nPMCID: PMC8136825", + "page": "5216-5229", + "source": "PubMed", + "title": "A nucleotide-sensing endonuclease from the Gabija bacterial defense system", + "volume": "49", + "author": [ + { + "family": "Cheng", + "given": "Rui" + }, + { + "family": "Huang", + "given": "Fengtao" + }, + { + "family": "Wu", + "given": "Hui" + }, + { + "family": "Lu", + "given": "Xuelin" + }, + { + "family": "Yan", + "given": "Yan" + }, + { + "family": "Yu", + "given": "Bingbing" + }, + { + "family": "Wang", + "given": "Xionglue" + }, + { + "family": "Zhu", + "given": "Bin" + } + ], + "issued": { + "date-parts": [ + [ + "2021", + 5, + 21 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/5BBCKDQ7", + "type": "article", + "abstract": "PLEs are phage parasites integrated into the chromosome of epidemic Vibrio cholerae. In response to infection by its viral host ICP1, PLE excises, replicates and hijacks ICP1 structural components for transduction. Through an unknown mechanism PLE prevents ICP1 from transitioning to rolling circle replication (RCR), a prerequisite for efficient packaging of the viral genome. Here, we characterize a PLE-encoded nuclease, NixI, that blocks phage development likely by nicking ICP1’s genome as it transitions to RCR. NixI-dependent cleavage sites appear in ICP1’s genome during infection of PLE(+) V. cholerae. Purified NixI demonstrates in vitro specificity for sites in ICP1’s genome and NixI activity is enhanced by a putative specificity determinant co-expressed with NixI during phage infection. Importantly, NixI is sufficient to limit ICP1 genome replication and eliminate progeny production. We identify distant NixI homologs in an expanded family of putative phage satellites in Vibrios that lack nucleotide homology to PLEs but nonetheless share genomic synteny with PLEs. More generally, our results reveal a previously unknown mechanism deployed by phage parasites to limit packaging of their viral hosts’ genome and highlight the prominent role of nuclease effectors as weapons in the arms race between antagonizing genomes.", + "DOI": "10.1101/2021.07.12.452122", + "language": "en", + "license": "© 2021, Posted by Cold Spring Harbor Laboratory. This pre-print is available under a Creative Commons License (Attribution-NoDerivs 4.0 International), CC BY-ND 4.0, as described at http://creativecommons.org/licenses/by-nd/4.0/", + "note": "page: 2021.07.12.452122\nsection: New Results", + "publisher": "bioRxiv", + "source": "bioRxiv", + "title": "A phage parasite deploys a nicking nuclease effector to inhibit replication of its viral host", + "URL": "https://www.biorxiv.org/content/10.1101/2021.07.12.452122v1", + "author": [ + { + "family": "LeGault", + "given": "Kristen N." + }, + { + "family": "Barth", + "given": "Zachary K." + }, + { + "family": "DePaola", + "given": "Peter" + }, + { + "family": "Seed", + "given": "Kimberley D." + } + ], + "accessed": { + "date-parts": [ + [ + "2023", + 1, + 18 + ] + ] + }, + "issued": { + "date-parts": [ + [ + "2021", + 7, + 13 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/6TJFYCF3", + "type": "article-journal", + "abstract": "Argonaute (Ago) proteins are widespread nucleic-acid-guided enzymes that recognize targets through complementary base pairing. Although, in eukaryotes, Agos are involved in RNA silencing, the functions of prokaryotic Agos (pAgos) remain largely unknown. In particular, a clade of truncated and catalytically inactive pAgos (short pAgos) lacks characterization. Here, we reveal that a short pAgo protein in the archaeon Sulfolobus islandicus, together with its two genetically associated proteins, Aga1 and Aga2, provide robust antiviral protection via abortive infection. Aga2 is a toxic transmembrane effector that binds anionic phospholipids via a basic pocket, resulting in membrane depolarization and cell killing. Ago and Aga1 form a stable complex that exhibits nucleic-acid-directed nucleic-acid-recognition ability and directly interacts with Aga2, pointing to an immune sensing mechanism. Together, our results highlight the cooperation between pAgos and their widespread associated proteins, suggesting an uncharted diversity of pAgo-derived immune systems.", + "container-title": "Cell Host & Microbe", + "DOI": "10.1016/j.chom.2022.04.015", + "ISSN": "1934-6069", + "issue": "7", + "journalAbbreviation": "Cell Host Microbe", + "language": "eng", + "note": "PMID: 35594868", + "page": "930-943.e6", + "source": "PubMed", + "title": "A short prokaryotic Argonaute activates membrane effector to confer antiviral defense", + "volume": "30", + "author": [ + { + "family": "Zeng", + "given": "Zhifeng" + }, + { + "family": "Chen", + "given": "Yu" + }, + { + "family": "Pinilla-Redondo", + "given": "Rafael" + }, + { + "family": "Shah", + "given": "Shiraz A." + }, + { + "family": "Zhao", + "given": "Fen" + }, + { + "family": "Wang", + "given": "Chen" + }, + { + "family": "Hu", + "given": "Zeyu" + }, + { + "family": "Wu", + "given": "Chang" + }, + { + "family": "Zhang", + "given": "Changyi" + }, + { + "family": "Whitaker", + "given": "Rachel J." + }, + { + "family": "She", + "given": "Qunxin" + }, + { + "family": "Han", + "given": "Wenyuan" + } + ], + "issued": { + "date-parts": [ + [ + "2022", + 7, + 13 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/9YWBTIKJ", + "type": "article-journal", + "abstract": "The perpetual arms race between bacteria and their viruses (phages) has given rise to diverse immune systems, including restriction-modification and CRISPR-Cas, which sense and degrade phage-derived nucleic acids. These complex systems rely upon production and maintenance of multiple components to achieve antiphage defense. However, the prevalence and effectiveness of minimal, single-component systems that cleave DNA remain unknown. Here, we describe a unique mode of nucleic acid immunity mediated by a single enzyme with nuclease and helicase activities, herein referred to as Nhi (nuclease-helicase immunity). This enzyme provides robust protection against diverse staphylococcal phages and prevents phage DNA accumulation in cells stripped of all other known defenses. Our observations support a model in which Nhi targets and degrades phage-specific replication intermediates. Importantly, Nhi homologs are distributed in diverse bacteria and exhibit functional conservation, highlighting the versatility of such compact weapons as major players in antiphage defense.", + "container-title": "Cell Host & Microbe", + "DOI": "10.1016/j.chom.2022.03.001", + "ISSN": "1934-6069", + "issue": "4", + "journalAbbreviation": "Cell Host Microbe", + "language": "eng", + "note": "PMID: 35421352", + "page": "570-582.e7", + "source": "PubMed", + "title": "A unique mode of nucleic acid immunity performed by a multifunctional bacterial enzyme", + "volume": "30", + "author": [ + { + "family": "Bari", + "given": "S. M. Nayeemul" + }, + { + "family": "Chou-Zheng", + "given": "Lucy" + }, + { + "family": "Howell", + "given": "Olivia" + }, + { + "family": "Hossain", + "given": "Motaher" + }, + { + "family": "Hill", + "given": "Courtney M." + }, + { + "family": "Boyle", + "given": "Tori A." + }, + { + "family": "Cater", + "given": "Katie" + }, + { + "family": "Dandu", + "given": "Vidya Sree" + }, + { + "family": "Thomas", + "given": "Alexander" + }, + { + "family": "Aslan", + "given": "Barbaros" + }, + { + "family": "Hatoum-Aslan", + "given": "Asma" + } + ], + "issued": { + "date-parts": [ + [ + "2022", + 4, + 13 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/QSMR93FJ", + "type": "article-journal", + "abstract": "In the process of clone-based genome sequencing, initial assemblies frequently contain cloning gaps that can be resolved using cloning-independent methods, but the reason for their occurrence is largely unknown. By analyzing 9,328,693 sequencing clones from 393 microbial genomes, we systematically mapped more than 15,000 genes residing in cloning gaps and experimentally showed that their expression products are toxic to the Escherichia coli host. A subset of these toxic sequences was further evaluated through a series of functional assays exploring the mechanisms of their toxicity. Among these genes, our assays revealed novel toxins and restriction enzymes, and new classes of small, non-coding toxic RNAs that reproducibly inhibit E. coli growth. Further analyses also revealed abundant, short, toxic DNA fragments that were predicted to suppress E. coli growth by interacting with the replication initiator DnaA. Our results show that cloning gaps, once considered the result of technical problems, actually serve as a rich source for the discovery of biotechnologically valuable functions, and suggest new modes of antimicrobial interventions.", + "container-title": "Genome Research", + "DOI": "10.1101/gr.133850.111", + "ISSN": "1088-9051", + "issue": "4", + "journalAbbreviation": "Genome research", + "language": "English", + "note": "publisher: Cold Spring Harbor Laboratory Press", + "page": "802-809", + "source": "cris.tau.ac.il", + "title": "A vast collection of microbial genes that are toxic to bacteria", + "URL": "https://cris.tau.ac.il/en/publications/a-vast-collection-of-microbial-genes-that-are-toxic-to-bacteria", + "volume": "22", + "author": [ + { + "family": "Kimelman", + "given": "Aya" + }, + { + "family": "Levy", + "given": "Asaf" + }, + { + "family": "Sberro", + "given": "Hila" + }, + { + "family": "Kidron", + "given": "Shahar" + }, + { + "family": "Leavitt", + "given": "Azita" + }, + { + "family": "Amitai", + "given": "Gil" + }, + { + "family": "Yoder-Himes", + "given": "Deborah R." + }, + { + "family": "Wurtzel", + "given": "Omri" + }, + { + "family": "Zhu", + "given": "Yiwen" + }, + { + "family": "Rubin", + "given": "Edward M." + }, + { + "family": "Sorek", + "given": "Rotem" + } + ], + "accessed": { + "date-parts": [ + [ + "2023", + 1, + 18 + ] + ] + }, + "issued": { + "date-parts": [ + [ + "2012", + 4 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/49QQ63YH", + "type": "article-journal", + "abstract": "Bacterial abortive infection (Abi) systems are 'altruistic' cell death systems that are activated by phage infection and limit viral replication, thereby providing protection to the bacterial population. Here, we have used a novel approach of screening Abi systems as a tool to identify and characterize toxin-antitoxin (TA)-acting Abi systems. We show that AbiE systems are encoded by bicistronic operons and function via a non-interacting (Type IV) bacteriostatic TA mechanism. The abiE operon was negatively autoregulated by the antitoxin, AbiEi, a member of a widespread family of putative transcriptional regulators. AbiEi has an N-terminal winged-helix-turn-helix domain that is required for repression of abiE transcription, and an uncharacterized bi-functional C-terminal domain, which is necessary for transcriptional repression and sufficient for toxin neutralization. The cognate toxin, AbiEii, is a predicted nucleotidyltransferase (NTase) and member of the DNA polymerase β family. AbiEii specifically bound GTP, and mutations in conserved NTase motifs (I-III) and a newly identified motif (IV), abolished GTP binding and subsequent toxicity. The AbiE systems can provide phage resistance and enable stabilization of mobile genetic elements, such as plasmids. Our study reveals molecular insights into the regulation and function of the widespread bi-functional AbiE Abi-TA systems and the biochemical properties of both toxin and antitoxin proteins.", + "container-title": "Nucleic Acids Research", + "DOI": "10.1093/nar/gkt1419", + "ISSN": "1362-4962", + "issue": "7", + "journalAbbreviation": "Nucleic Acids Res", + "language": "eng", + "note": "PMID: 24465005\nPMCID: PMC3985639", + "page": "4590-4605", + "source": "PubMed", + "title": "A widespread bacteriophage abortive infection system functions through a Type IV toxin-antitoxin mechanism", + "volume": "42", + "author": [ + { + "family": "Dy", + "given": "Ron L." + }, + { + "family": "Przybilski", + "given": "Rita" + }, + { + "family": "Semeijn", + "given": "Koen" + }, + { + "family": "Salmond", + "given": "George P. C." + }, + { + "family": "Fineran", + "given": "Peter C." + } + ], + "issued": { + "date-parts": [ + [ + "2014", + 4 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/7HDAXR4A", + "type": "article-journal", + "abstract": "Lactococcus lactis W-37 is highly resistant to phage infection. The cryptic plasmids from this strain were coelectroporated, along with the shuttle vector pSA3, into the plasmid-free host L. lactis LM0230. In addition to pSA3, erythromycin- and phage-resistant isolates carried pSRQ900, an 11-kb plasmid from L. lactis W-37. This plasmid made the host bacteria highly resistant (efficiency of plaquing <10(-8)) to c2- and 936-like phages. pSRQ900 did not confer any resistance to phages of the P335 species. Adsorption, cell survival, and endonucleolytic activity assays showed that pSRQ900 encodes an abortive infection mechanism. The phage resistance mechanism is limited to a 2.2-kb EcoRV/BclI fragment. Sequence analysis of this fragment revealed a complete open reading frame (abiQ), which encodes a putative protein of 183 amino acids. A frameshift mutation within abiQ completely abolished the resistant phenotype. The predicted peptide has a high content of positively charged residues (pI = 10.5) and is, in all likelihood, a cytosolic protein. AbiQ has no homology to known or deduced proteins in the databases. DNA replication assays showed that phage c21 (c2-like) and phage p2 (936-like) can still replicate in cells harboring AbiQ. However, phage DNA accumulated in its concatenated form in the infected AbiQ+ cells, whereas the AbiQ- cells contained processed (mature) phage DNA in addition to the concatenated form. The production of the major capsid protein of phage c21 was not hindered in the cells harboring AbiQ.", + "container-title": "Applied and Environmental Microbiology", + "DOI": "10.1128/AEM.64.12.4748-4756.1998", + "ISSN": "0099-2240", + "issue": "12", + "journalAbbreviation": "Appl Environ Microbiol", + "language": "eng", + "note": "PMID: 9835558\nPMCID: PMC90918", + "page": "4748-4756", + "source": "PubMed", + "title": "AbiQ, an abortive infection mechanism from Lactococcus lactis", + "volume": "64", + "author": [ + { + "family": "Emond", + "given": "E." + }, + { + "family": "Dion", + "given": "E." + }, + { + "family": "Walker", + "given": "S. A." + }, + { + "family": "Vedamuthu", + "given": "E. R." + }, + { + "family": "Kondo", + "given": "J. K." + }, + { + "family": "Moineau", + "given": "S." + } + ], + "issued": { + "date-parts": [ + [ + "1998", + 12 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/GWR5PCQK", + "type": "article-journal", + "abstract": "Insertional mutagenesis with pGhost9::ISS1 resulted in independent insertions in a 350-bp region of the chromosome of Lactococcus lactis subsp. cremoris MG1363 that conferred phage resistance to the integrants. The orientation and location of the insertions suggested that the phage resistance phenotype was caused by a chromosomal gene turned on by a promoter from the inserted construct. Reverse transcription-PCR analysis confirmed that there were higher levels of transcription of a downstream open reading frame (ORF) in the phage-resistant integrants than in the phage-sensitive strain L. lactis MG1363. This gene was also found to confer phage resistance to L. lactis MG1363 when it was cloned into an expression vector. A subsequent frameshift mutation in the ORF completely eliminated the phage resistance phenotype, confirming that the ORF was necessary for phage resistance. This ORF provided resistance against virulent lactococcal phages belonging to the 936 and c2 species with an efficiency of plaquing of 10−4, but it did not protect against members of the P335 species. A high level of expression of the ORF did not affect the cellular growth rate. Assays for phage adsorption, DNA ejection, restriction/modification activity, plaque size, phage DNA replication, and cell survival showed that the ORF encoded an abortive infection (Abi) mechanism. Sequence analysis revealed a deduced protein consisting of 201 amino acids which, in its native state, probably forms a dimer in the cytosol. Similarity searches revealed no homology to other phage resistance mechanisms, and thus, this novel Abi mechanism was designated AbiV. The mode of action of AbiV is unknown, but the activity of AbiV prevented cleavage of the replicated phage DNA of 936-like phages.", + "container-title": "Applied and Environmental Microbiology", + "DOI": "10.1128/AEM.00780-08", + "ISSN": "0099-2240", + "issue": "21", + "journalAbbreviation": "Appl Environ Microbiol", + "note": "PMID: 18776030\nPMCID: PMC2576692", + "page": "6528-6537", + "source": "PubMed Central", + "title": "AbiV, a Novel Antiphage Abortive Infection Mechanism on the Chromosome of Lactococcus lactis subsp. cremoris MG1363", + "URL": "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC2576692/", + "volume": "74", + "author": [ + { + "family": "Haaber", + "given": "Jakob" + }, + { + "family": "Moineau", + "given": "Sylvain" + }, + { + "family": "Fortier", + "given": "Louis-Charles" + }, + { + "family": "Hammer", + "given": "Karin" + } + ], + "accessed": { + "date-parts": [ + [ + "2023", + 1, + 18 + ] + ] + }, + "issued": { + "date-parts": [ + [ + "2008", + 11 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/3YQHHD6F", + "type": "article-journal", + "abstract": "The conjugative plasmid pTR2030 has been used extensively to confer phage resistance in commercial Lactococcus starter cultures. The plasmid harbors a 16-kb region, flanked by insertion sequence (IS) elements, that encodes the restriction/modification system LlaI and carries an abortive infection gene, abiA. The AbiA system inhibits both prolate and small isometric phages by interfering with the early stages of phage DNA replication. However, abiA alone does not account for the full abortive activity reported for pTR2030. In this study, a 7.5-kb region positioned within the IS elements and downstream of abiA was sequenced to reveal seven additional open reading frames (ORFs). A single ORF, designated abiZ, was found to be responsible for a significant reduction in plaque size and an efficiency of plaquing (EOP) of 10−6, without affecting phage adsorption. AbiZ causes phage φ31-infected Lactococcus lactis NCK203 to lyse 15 min early, reducing the burst size of φ31 100-fold. Thirteen of 14 phages of the P335 group were sensitive to AbiZ, through reduction in either plaque size, EOP, or both. The predicted AbiZ protein contains two predicted transmembrane helices but shows no significant DNA homologies. When the phage φ31 lysin and holin genes were cloned into the nisin-inducible shuttle vector pMSP3545, nisin induction of holin and lysin caused partial lysis of NCK203. In the presence of AbiZ, lysis occurred 30 min earlier. In holin-induced cells, membrane permeability as measured using propidium iodide was greater in the presence of AbiZ. These results suggest that AbiZ may interact cooperatively with holin to cause premature lysis.", + "container-title": "Journal of Bacteriology", + "DOI": "10.1128/JB.00904-06", + "ISSN": "0021-9193", + "issue": "4", + "journalAbbreviation": "J Bacteriol", + "note": "PMID: 17012400\nPMCID: PMC1797342", + "page": "1417-1425", + "source": "PubMed Central", + "title": "Abortive Phage Resistance Mechanism AbiZ Speeds the Lysis Clock To Cause Premature Lysis of Phage-Infected Lactococcus lactis", + "URL": "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC1797342/", + "volume": "189", + "author": [ + { + "family": "Durmaz", + "given": "Evelyn" + }, + { + "family": "Klaenhammer", + "given": "Todd R." + } + ], + "accessed": { + "date-parts": [ + [ + "2023", + 1, + 18 + ] + ] + }, + "issued": { + "date-parts": [ + [ + "2007", + 2 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/ZAIKPX7A", + "type": "article-journal", + "abstract": "Bacterial anti-phage systems are frequently clustered in microbial genomes, forming defense islands. This property enabled the recent discovery of multiple defense systems based on their genomic co-localization with known systems, but the full arsenal of anti-phage mechanisms remains unknown. We report the discovery of 21 defense systems that protect bacteria from phages, based on computational genomic analyses and phage-infection experiments. We identified multiple systems with domains involved in eukaryotic antiviral immunity, including those homologous to the ubiquitin-like ISG15 protein, dynamin-like domains, and SEFIR domains, and show their participation in bacterial defenses. Additional systems include domains predicted to manipulate DNA and RNA molecules, alongside toxin-antitoxin systems shown here to function in anti-phage defense. These systems are widely distributed in microbial genomes, and in some bacteria, they form a considerable fraction of the immune arsenal. Our data substantially expand the inventory of defense systems utilized by bacteria to counteract phage infection.", + "container-title": "Cell Host & Microbe", + "DOI": "10.1016/j.chom.2022.09.017", + "ISSN": "1934-6069", + "issue": "11", + "journalAbbreviation": "Cell Host Microbe", + "language": "eng", + "note": "PMID: 36302390", + "page": "1556-1569.e5", + "source": "PubMed", + "title": "An expanded arsenal of immune systems that protect bacteria from phages", + "volume": "30", + "author": [ + { + "family": "Millman", + "given": "Adi" + }, + { + "family": "Melamed", + "given": "Sarah" + }, + { + "family": "Leavitt", + "given": "Azita" + }, + { + "family": "Doron", + "given": "Shany" + }, + { + "family": "Bernheim", + "given": "Aude" + }, + { + "family": "Hör", + "given": "Jens" + }, + { + "family": "Garb", + "given": "Jeremy" + }, + { + "family": "Bechon", + "given": "Nathalie" + }, + { + "family": "Brandis", + "given": "Alexander" + }, + { + "family": "Lopatina", + "given": "Anna" + }, + { + "family": "Ofir", + "given": "Gal" + }, + { + "family": "Hochhauser", + "given": "Dina" + }, + { + "family": "Stokar-Avihail", + "given": "Avigail" + }, + { + "family": "Tal", + "given": "Nitzan" + }, + { + "family": "Sharir", + "given": "Saar" + }, + { + "family": "Voichek", + "given": "Maya" + }, + { + "family": "Erez", + "given": "Zohar" + }, + { + "family": "Ferrer", + "given": "Jose Lorenzo M." + }, + { + "family": "Dar", + "given": "Daniel" + }, + { + "family": "Kacen", + "given": "Assaf" + }, + { + "family": "Amitai", + "given": "Gil" + }, + { + "family": "Sorek", + "given": "Rotem" + } + ], + "issued": { + "date-parts": [ + [ + "2022", + 11, + 9 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/XXEWRJKR", + "type": "article-journal", + "abstract": "The Toll/interleukin-1 receptor (TIR) domain is a canonical component of animal and plant immune systems1,2. In plants, intracellular pathogen sensing by immune receptors triggers their TIR domains to generate a molecule that is a variant of cyclic ADP-ribose3,4. This molecule is hypothesized to mediate plant cell death through a pathway that has yet to be resolved5. TIR domains have also been shown to be involved in a bacterial anti-phage defence system called Thoeris6, but the mechanism of Thoeris defence remained unknown. Here we show that phage infection triggers Thoeris TIR-domain proteins to produce an isomer of cyclic ADP-ribose. This molecular signal activates a second protein, ThsA, which then depletes the cell of the essential molecule nicotinamide adenine dinucleotide (NAD) and leads to abortive infection and cell death. We also show that, similar to eukaryotic innate immune systems, bacterial TIR-domain proteins determine the immunological specificity to the invading pathogen. Our results describe an antiviral signalling pathway in bacteria, and suggest that the generation of intracellular signalling molecules is an ancient immunological function of TIR domains that is conserved in both plant and bacterial immunity.", + "container-title": "Nature", + "DOI": "10.1038/s41586-021-04098-7", + "ISSN": "1476-4687", + "issue": "7887", + "journalAbbreviation": "Nature", + "language": "eng", + "note": "PMID: 34853457", + "page": "116-120", + "source": "PubMed", + "title": "Antiviral activity of bacterial TIR domains via immune signalling molecules", + "volume": "600", + "author": [ + { + "family": "Ofir", + "given": "Gal" + }, + { + "family": "Herbst", + "given": "Ehud" + }, + { + "family": "Baroz", + "given": "Maya" + }, + { + "family": "Cohen", + "given": "Daniel" + }, + { + "family": "Millman", + "given": "Adi" + }, + { + "family": "Doron", + "given": "Shany" + }, + { + "family": "Tal", + "given": "Nitzan" + }, + { + "family": "Malheiro", + "given": "Daniel B. A." + }, + { + "family": "Malitsky", + "given": "Sergey" + }, + { + "family": "Amitai", + "given": "Gil" + }, + { + "family": "Sorek", + "given": "Rotem" + } + ], + "issued": { + "date-parts": [ + [ + "2021", + 12 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/ZP32YEMX", + "type": "article-journal", + "abstract": "DNA viruses and retroviruses consume large quantities of deoxynucleotides (dNTPs) when replicating. The human antiviral factor SAMHD1 takes advantage of this vulnerability in the viral lifecycle, and inhibits viral replication by degrading dNTPs into their constituent deoxynucleosides and inorganic phosphate. Here, we report that bacteria use a similar strategy to defend against bacteriophage infection. We identify a family of defensive bacterial deoxycytidine triphosphate (dCTP) deaminase proteins that convert dCTP into deoxyuracil nucleotides in response to phage infection. We also identify a family of phage resistance genes that encode deoxyguanosine triphosphatase (dGTPase) enzymes, which degrade dGTP into phosphate-free deoxyguanosine and are distant homologues of human SAMHD1. Our results suggest that bacterial defensive proteins deplete specific deoxynucleotides (either dCTP or dGTP) from the nucleotide pool during phage infection, thus starving the phage of an essential DNA building block and halting its replication. Our study shows that manipulation of the dNTP pool is a potent antiviral strategy shared by both prokaryotes and eukaryotes.", + "container-title": "Nature Microbiology", + "DOI": "10.1038/s41564-022-01158-0", + "ISSN": "2058-5276", + "issue": "8", + "journalAbbreviation": "Nat Microbiol", + "language": "eng", + "note": "PMID: 35817891", + "page": "1200-1209", + "source": "PubMed", + "title": "Bacteria deplete deoxynucleotides to defend against bacteriophage infection", + "volume": "7", + "author": [ + { + "family": "Tal", + "given": "Nitzan" + }, + { + "family": "Millman", + "given": "Adi" + }, + { + "family": "Stokar-Avihail", + "given": "Avigail" + }, + { + "family": "Fedorenko", + "given": "Taya" + }, + { + "family": "Leavitt", + "given": "Azita" + }, + { + "family": "Melamed", + "given": "Sarah" + }, + { + "family": "Yirmiya", + "given": "Erez" + }, + { + "family": "Avraham", + "given": "Carmel" + }, + { + "family": "Brandis", + "given": "Alexander" + }, + { + "family": "Mehlman", + "given": "Tevie" + }, + { + "family": "Amitai", + "given": "Gil" + }, + { + "family": "Sorek", + "given": "Rotem" + } + ], + "issued": { + "date-parts": [ + [ + "2022", + 8 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/Y8FYARDR", + "type": "article-journal", + "abstract": "The study of the interactions between lactic acid bacteria and their bacteriophages has been a vibrant and rewarding research activity for a considerable number of years. In the more recent past, the application of molecular genetics for the analysis of phage-host relationships has contributed enormously to the unravelling of specific events which dictate insensitivity to bacteriophage infection and has revealed that while they are complex and intricate in nature, they are also extremely effective. In addition, the strategy has laid solid foundations for the construction of phage resistant strains for use in commercial applications and has provided a sound basis for continued investigations into existing, naturally-derived and novel, genetically-engineered defence systems. Of course, it has also become clear that phage particles are highly dynamic in their response to those defence systems which they do encounter and that they can readily adapt to them as a consequence of their genetic flexibility and plasticity. This paper reviews the exciting developments that have been described in the literature regarding the study of phage-host interactions in lactic acid bacteria and the innovative approaches that can be taken to exploit this basic information for curtailing phage infection.", + "container-title": "Antonie Van Leeuwenhoek", + "ISSN": "0003-6072", + "issue": "1-4", + "journalAbbreviation": "Antonie Van Leeuwenhoek", + "language": "eng", + "note": "PMID: 10532374", + "page": "89-113", + "source": "PubMed", + "title": "Bacteriophage defence systems in lactic acid bacteria", + "volume": "76", + "author": [ + { + "family": "Forde", + "given": "A." + }, + { + "family": "Fitzgerald", + "given": "G. F." + } + ], + "issued": { + "date-parts": [ + [ + "1999" + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/AM4BX6EB", + "type": "article-journal", + "abstract": "Prokaryotes use CRISPR–Cas systems for adaptive immunity, but the reasons for the frequent existence of multiple CRISPRs and cas clusters remain poorly understood. Here, we analysed the joint distribution of CRISPR and cas genes in a large set of fully sequenced bacterial genomes and their mobile genetic elements. Our analysis suggests few negative and many positive epistatic interactions between Cas subtypes. The latter often result in complex genetic organizations, where a locus has a single adaptation module and diverse interference mechanisms that might provide more effective immunity. We typed CRISPRs that could not be unambiguously associated with a cas cluster and found that such complex loci tend to have unique type I repeats in multiple CRISPRs. Many chromosomal CRISPRs lack a neighboring Cas system and they often have repeats compatible with the Cas systems encoded in trans. Phages and 25 000 prophages were almost devoid of CRISPR–Cas systems, whereas 3% of plasmids had CRISPR–Cas systems or isolated CRISPRs. The latter were often compatible with the chromosomal cas clusters, suggesting that plasmids can co-opt the latter. These results highlight the importance of interactions between CRISPRs and cas present in multiple copies and in distinct genomic locations in the function and evolution of bacterial immunity.", + "container-title": "Nucleic Acids Research", + "DOI": "10.1093/nar/gkz1091", + "ISSN": "0305-1048", + "issue": "2", + "journalAbbreviation": "Nucleic Acids Research", + "page": "748-760", + "source": "Silverchair", + "title": "Atypical organizations and epistatic interactions of CRISPRs and cas clusters in genomes and their mobile genetic elements", + "URL": "https://doi.org/10.1093/nar/gkz1091", + "volume": "48", + "author": [ + { + "family": "Bernheim", + "given": "Aude" + }, + { + "family": "Bikard", + "given": "David" + }, + { + "family": "Touchon", + "given": "Marie" + }, + { + "family": "Rocha", + "given": "Eduardo P C" + } + ], + "accessed": { + "date-parts": [ + [ + "2023", + 1, + 18 + ] + ] + }, + "issued": { + "date-parts": [ + [ + "2020", + 1, + 24 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/TQ5LA49W", + "type": "article-journal", + "abstract": "Gasdermin proteins form large membrane pores in human cells that release immune cytokines and induce lytic cell death. Gasdermin pore formation is triggered by caspase-mediated cleavage during inflammasome signaling and is critical for defense against pathogens and cancer. We discovered gasdermin homologs encoded in bacteria that defended against phages and executed cell death. Structures of bacterial gasdermins revealed a conserved pore-forming domain that was stabilized in the inactive state with a buried lipid modification. Bacterial gasdermins were activated by dedicated caspase-like proteases that catalyzed site-specific cleavage and the removal of an inhibitory C-terminal peptide. Release of autoinhibition induced the assembly of large and heterogeneous pores that disrupted membrane integrity. Thus, pyroptosis is an ancient form of regulated cell death shared between bacteria and animals.", + "container-title": "Science (New York, N.Y.)", + "DOI": "10.1126/science.abj8432", + "ISSN": "1095-9203", + "issue": "6577", + "journalAbbreviation": "Science", + "language": "eng", + "note": "PMID: 35025633\nPMCID: PMC9134750", + "page": "221-225", + "source": "PubMed", + "title": "Bacterial gasdermins reveal an ancient mechanism of cell death", + "volume": "375", + "author": [ + { + "family": "Johnson", + "given": "Alex G." + }, + { + "family": "Wein", + "given": "Tanita" + }, + { + "family": "Mayer", + "given": "Megan L." + }, + { + "family": "Duncan-Lowey", + "given": "Brianna" + }, + { + "family": "Yirmiya", + "given": "Erez" + }, + { + "family": "Oppenheimer-Shaanan", + "given": "Yaara" + }, + { + "family": "Amitai", + "given": "Gil" + }, + { + "family": "Sorek", + "given": "Rotem" + }, + { + "family": "Kranzusch", + "given": "Philip J." + } + ], + "issued": { + "date-parts": [ + [ + "2022", + 1, + 14 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/7XMCSQSR", + "type": "article", + "abstract": "Bacteria use a wide range of immune systems to counter phage infection. A subset of these genes share homology with components of eukaryotic immune systems, suggesting that eukaryotes horizontally acquired certain innate immune genes from bacteria. Here we show that proteins containing a NACHT module, the central feature of the animal nucleotide-binding domain and leucine-rich repeat containing gene family (NLRs), are found in bacteria and defend against phages. NACHT proteins are widespread in bacteria, provide immunity against both DNA and RNA phages, and display the characteristic C-terminal sensor, central NACHT, and N-terminal effector modules. Some bacterial NACHT proteins have domain architectures similar to human NLRs that are critical components of inflammasomes. Human disease-associated NLR mutations that cause stimulus-independent activation of the inflammasome also activate bacterial NACHT proteins, supporting a shared signaling mechanism. This work establishes that NACHT module-containing proteins are ancient mediators of innate immunity across the tree of life.", + "DOI": "10.1101/2022.07.19.500537", + "language": "en", + "license": "© 2022, Posted by Cold Spring Harbor Laboratory. This pre-print is available under a Creative Commons License (Attribution-NonCommercial-NoDerivs 4.0 International), CC BY-NC-ND 4.0, as described at http://creativecommons.org/licenses/by-nc-nd/4.0/", + "note": "page: 2022.07.19.500537\nsection: New Results", + "publisher": "bioRxiv", + "source": "bioRxiv", + "title": "Bacterial NLR-related proteins protect against phage", + "URL": "https://www.biorxiv.org/content/10.1101/2022.07.19.500537v1", + "author": [ + { + "family": "Kibby", + "given": "Emily M." + }, + { + "family": "Conte", + "given": "Amy N." + }, + { + "family": "Burroughs", + "given": "A. Maxwell" + }, + { + "family": "Nagy", + "given": "Toni A." + }, + { + "family": "Vargas", + "given": "Jose A." + }, + { + "family": "Aravind", + "given": "L." + }, + { + "family": "Whiteley", + "given": "Aaron T." + } + ], + "accessed": { + "date-parts": [ + [ + "2023", + 1, + 18 + ] + ] + }, + "issued": { + "date-parts": [ + [ + "2022", + 7, + 20 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/YB3IE62S", + "type": "article-journal", + "abstract": "Retrons are prokaryotic genetic retroelements encoding a reverse transcriptase that produces multi-copy single-stranded DNA1 (msDNA). Despite decades of research on the biosynthesis of msDNA2, the function and physiological roles of retrons have remained unknown. Here we show that Retron-Sen2 of Salmonella enterica serovar Typhimurium encodes an accessory toxin protein, STM14_4640, which we renamed as RcaT. RcaT is neutralized by the reverse transcriptase-msDNA antitoxin complex, and becomes active upon perturbation of msDNA biosynthesis. The reverse transcriptase is required for binding to RcaT, and the msDNA is required for the antitoxin activity. The highly prevalent RcaT-containing retron family constitutes a new type of tripartite DNA-containing toxin-antitoxin system. To understand the physiological roles of such toxin-antitoxin systems, we developed toxin activation-inhibition conjugation (TAC-TIC), a high-throughput reverse genetics approach that identifies the molecular triggers and blockers of toxin-antitoxin systems. By applying TAC-TIC to Retron-Sen2, we identified multiple trigger and blocker proteins of phage origin. We demonstrate that phage-related triggers directly modify the msDNA, thereby activating RcaT and inhibiting bacterial growth. By contrast, prophage proteins circumvent retrons by directly blocking RcaT. Consistently, retron toxin-antitoxin systems act as abortive infection anti-phage defence systems, in line with recent reports3,4. Thus, RcaT retrons are tripartite DNA-regulated toxin-antitoxin systems, which use the reverse transcriptase-msDNA complex both as an antitoxin and as a sensor of phage protein activities.", + "container-title": "Nature", + "DOI": "10.1038/s41586-022-05091-4", + "ISSN": "1476-4687", + "issue": "7925", + "journalAbbreviation": "Nature", + "language": "eng", + "note": "PMID: 35850148", + "page": "144-150", + "source": "PubMed", + "title": "Bacterial retrons encode phage-defending tripartite toxin-antitoxin systems", + "volume": "609", + "author": [ + { + "family": "Bobonis", + "given": "Jacob" + }, + { + "family": "Mitosch", + "given": "Karin" + }, + { + "family": "Mateus", + "given": "André" + }, + { + "family": "Karcher", + "given": "Nicolai" + }, + { + "family": "Kritikos", + "given": "George" + }, + { + "family": "Selkrig", + "given": "Joel" + }, + { + "family": "Zietek", + "given": "Matylda" + }, + { + "family": "Monzon", + "given": "Vivian" + }, + { + "family": "Pfalz", + "given": "Birgit" + }, + { + "family": "Garcia-Santamarina", + "given": "Sarela" + }, + { + "family": "Galardini", + "given": "Marco" + }, + { + "family": "Sueki", + "given": "Anna" + }, + { + "family": "Kobayashi", + "given": "Callie" + }, + { + "family": "Stein", + "given": "Frank" + }, + { + "family": "Bateman", + "given": "Alex" + }, + { + "family": "Zeller", + "given": "Georg" + }, + { + "family": "Savitski", + "given": "Mikhail M." + }, + { + "family": "Elfenbein", + "given": "Johanna R." + }, + { + "family": "Andrews-Polymenis", + "given": "Helene L." + }, + { + "family": "Typas", + "given": "Athanasios" + } + ], + "issued": { + "date-parts": [ + [ + "2022", + 9 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/2ISJJ7YW", + "type": "article-journal", + "abstract": "Retrons are bacterial genetic elements comprised of a reverse transcriptase (RT) and a non-coding RNA (ncRNA). The RT uses the ncRNA as template, generating a chimeric RNA/DNA molecule in which the RNA and DNA components are covalently linked. Although retrons were discovered three decades ago, their function remained unknown. We report that retrons function as anti-phage defense systems. The defensive unit is composed of three components: the RT, the ncRNA, and an effector protein. We examined multiple retron systems and show that they confer defense against a broad range of phages via abortive infection. Focusing on retron Ec48, we show evidence that it \"guards\" RecBCD, a complex with central anti-phage functions in bacteria. Inhibition of RecBCD by phage proteins activates the retron, leading to abortive infection and cell death. Thus, the Ec48 retron forms a second line of defense that is triggered if the first lines of defense have collapsed.", + "container-title": "Cell", + "DOI": "10.1016/j.cell.2020.09.065", + "ISSN": "1097-4172", + "issue": "6", + "journalAbbreviation": "Cell", + "language": "eng", + "note": "PMID: 33157039", + "page": "1551-1561.e12", + "source": "PubMed", + "title": "Bacterial Retrons Function In Anti-Phage Defense", + "volume": "183", + "author": [ + { + "family": "Millman", + "given": "Adi" + }, + { + "family": "Bernheim", + "given": "Aude" + }, + { + "family": "Stokar-Avihail", + "given": "Avigail" + }, + { + "family": "Fedorenko", + "given": "Taya" + }, + { + "family": "Voichek", + "given": "Maya" + }, + { + "family": "Leavitt", + "given": "Azita" + }, + { + "family": "Oppenheimer-Shaanan", + "given": "Yaara" + }, + { + "family": "Sorek", + "given": "Rotem" + } + ], + "issued": { + "date-parts": [ + [ + "2020", + 12, + 10 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/PQ6PGWIJ", + "type": "article-journal", + "abstract": "Bacteria encode sophisticated anti-phage systems that are diverse and versatile and display high genetic mobility. How this variability and mobility occurs remains largely unknown. Here, we demonstrate that a widespread family of pathogenicity islands, the phage-inducible chromosomal islands (PICIs), carry an impressive arsenal of defense mechanisms, which can be disseminated intra- and inter-generically by helper phages. These defense systems provide broad immunity, blocking not only phage reproduction, but also plasmid and non-cognate PICI transfer. Our results demonstrate that phages can mobilize PICI-encoded immunity systems to use them against other mobile genetic elements, which compete with the phages for the same bacterial hosts. Therefore, despite the cost, mobilization of PICIs may be beneficial for phages, PICIs, and bacteria in nature. Our results suggest that PICIs are important players controlling horizontal gene transfer and that PICIs and phages establish mutualistic interactions that drive bacterial ecology and evolution.", + "container-title": "Cell", + "DOI": "10.1016/j.cell.2022.07.014", + "ISSN": "0092-8674", + "issue": "17", + "journalAbbreviation": "Cell", + "language": "en", + "page": "3248-3262.e20", + "source": "ScienceDirect", + "title": "Bacteriophages benefit from mobilizing pathogenicity islands encoding immune systems against competitors", + "URL": "https://www.sciencedirect.com/science/article/pii/S0092867422009175", + "volume": "185", + "author": [ + { + "family": "Fillol-Salom", + "given": "Alfred" + }, + { + "family": "Rostøl", + "given": "Jakob T." + }, + { + "family": "Ojiogu", + "given": "Adaeze D." + }, + { + "family": "Chen", + "given": "John" + }, + { + "family": "Douce", + "given": "Gill" + }, + { + "family": "Humphrey", + "given": "Suzanne" + }, + { + "family": "Penadés", + "given": "José R." + } + ], + "accessed": { + "date-parts": [ + [ + "2023", + 1, + 18 + ] + ] + }, + "issued": { + "date-parts": [ + [ + "2022", + 8, + 18 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/5ZBXCITD", + "type": "article-journal", + "abstract": "The perpetual arms race between bacteria and phage has resulted in the evolution of efficient resistance systems that protect bacteria from phage infection. Such systems, which include the CRISPR-Cas and restriction-modification systems, have proven to be invaluable in the biotechnology and dairy industries. Here, we report on a six-gene cassette in Bacillus cereus which, when integrated into the Bacillus subtilis genome, confers resistance to a broad range of phages, including both virulent and temperate ones. This cassette includes a putative Lon-like protease, an alkaline phosphatase domain protein, a putative RNA-binding protein, a DNA methylase, an ATPase-domain protein, and a protein of unknown function. We denote this novel defense system BREX (Bacteriophage Exclusion) and show that it allows phage adsorption but blocks phage DNA replication. Furthermore, our results suggest that methylation on non-palindromic TAGGAG motifs in the bacterial genome guides self/non-self discrimination and is essential for the defensive function of the BREX system. However, unlike restriction-modification systems, phage DNA does not appear to be cleaved or degraded by BREX, suggesting a novel mechanism of defense. Pan genomic analysis revealed that BREX and BREX-like systems, including the distantly related Pgl system described in Streptomyces coelicolor, are widely distributed in ~10% of all sequenced microbial genomes and can be divided into six coherent subtypes in which the gene composition and order is conserved. Finally, we detected a phage family that evades the BREX defense, implying that anti-BREX mechanisms may have evolved in some phages as part of their arms race with bacteria.", + "container-title": "The EMBO journal", + "DOI": "10.15252/embj.201489455", + "ISSN": "1460-2075", + "issue": "2", + "journalAbbreviation": "EMBO J", + "language": "eng", + "note": "PMID: 25452498\nPMCID: PMC4337064", + "page": "169-183", + "source": "PubMed", + "title": "BREX is a novel phage resistance system widespread in microbial genomes", + "volume": "34", + "author": [ + { + "family": "Goldfarb", + "given": "Tamara" + }, + { + "family": "Sberro", + "given": "Hila" + }, + { + "family": "Weinstock", + "given": "Eyal" + }, + { + "family": "Cohen", + "given": "Ofir" + }, + { + "family": "Doron", + "given": "Shany" + }, + { + "family": "Charpak-Amikam", + "given": "Yoav" + }, + { + "family": "Afik", + "given": "Shaked" + }, + { + "family": "Ofir", + "given": "Gal" + }, + { + "family": "Sorek", + "given": "Rotem" + } + ], + "issued": { + "date-parts": [ + [ + "2015", + 1, + 13 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/IGVQBT2P", + "type": "article-journal", + "abstract": "Prokaryotes evolved numerous systems that defend against predation by bacteriophages. In addition to well-known restriction-modification and CRISPR-Cas immunity systems, many poorly characterized systems exist. One class of such systems, named BREX, consists of a putative phosphatase, a methyltransferase and four other proteins. A Bacillus cereus BREX system provides resistance to several unrelated phages and leads to modification of specific motif in host DNA. Here, we study the action of BREX system from a natural Escherichia coli isolate. We show that while it makes cells resistant to phage λ infection, induction of λ prophage from cells carrying BREX leads to production of viruses that overcome the defense. The induced phage DNA contains a methylated adenine residue in a specific motif. The same modification is found in the genome of BREX-carrying cells. The results establish, for the first time, that immunity to BREX system defense is provided by an epigenetic modification.", + "container-title": "Nucleic Acids Research", + "DOI": "10.1093/nar/gky1125", + "ISSN": "1362-4962", + "issue": "1", + "journalAbbreviation": "Nucleic Acids Res", + "language": "eng", + "note": "PMID: 30418590\nPMCID: PMC6326788", + "page": "253-265", + "source": "PubMed", + "title": "BREX system of Escherichia coli distinguishes self from non-self by methylation of a specific DNA site", + "volume": "47", + "author": [ + { + "family": "Gordeeva", + "given": "Julia" + }, + { + "family": "Morozova", + "given": "Natalya" + }, + { + "family": "Sierro", + "given": "Nicolas" + }, + { + "family": "Isaev", + "given": "Artem" + }, + { + "family": "Sinkunas", + "given": "Tomas" + }, + { + "family": "Tsvetkova", + "given": "Ksenia" + }, + { + "family": "Matlashov", + "given": "Mikhail" + }, + { + "family": "Truncaite", + "given": "Lidija" + }, + { + "family": "Morgan", + "given": "Richard D." + }, + { + "family": "Ivanov", + "given": "Nikolai V." + }, + { + "family": "Siksnys", + "given": "Virgis" + }, + { + "family": "Zeng", + "given": "Lanying" + }, + { + "family": "Severinov", + "given": "Konstantin" + } + ], + "issued": { + "date-parts": [ + [ + "2019", + 1, + 10 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/384G6XN7", + "type": "article-journal", + "abstract": "A gene which encodes resistance by abortive infection (Abi+) to bacteriophage was cloned from Lactococcus lactis ssp. lactis biovar. diacetylactis S94. This gene was found to confer a reduction in efficiency of plating and plaque size for prolate-headed bacteriophage phi 53 (group I of homology) and total resistance to the small isometric-headed bacteriophage phi 59 (group III of homology). The cloned gene is predicted to encode a polypeptide of 346 amino acid residues with a deduced molecular mass of 41 455 Da. No homology with any previously described genes was found. A probe was used to determine the presence of this gene in two strains on 31 tested.", + "container-title": "FEMS microbiology letters", + "DOI": "10.1111/j.1574-6968.1996.tb08446.x", + "ISSN": "0378-1097", + "issue": "2-3", + "journalAbbreviation": "FEMS Microbiol Lett", + "language": "eng", + "note": "PMID: 8810513", + "page": "295-299", + "source": "PubMed", + "title": "Cloning and sequencing of the novel abortive infection gene abiH of Lactococcus lactis ssp. lactis biovar. diacetylactis S94", + "volume": "142", + "author": [ + { + "family": "Prévots", + "given": "F." + }, + { + "family": "Daloyau", + "given": "M." + }, + { + "family": "Bonin", + "given": "O." + }, + { + "family": "Dumont", + "given": "X." + }, + { + "family": "Tolou", + "given": "S." + } + ], + "issued": { + "date-parts": [ + [ + "1996", + 9, + 1 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/J99J7P9F", + "type": "article-journal", + "abstract": "The cyclic pyrimidines 3',5'-cyclic cytidine monophosphate (cCMP) and 3',5'-cyclic uridine monophosphate (cUMP) have been reported in multiple organisms and cell types. As opposed to the cyclic nucleotides 3',5'-cyclic adenosine monophosphate (cAMP) and 3',5'-cyclic guanosine monophosphate (cGMP), which are second messenger molecules with well-established regulatory roles across all domains of life, the biological role of cyclic pyrimidines has remained unclear. Here we report that cCMP and cUMP are second messengers functioning in bacterial immunity against viruses. We discovered a family of bacterial pyrimidine cyclase enzymes that specifically synthesize cCMP and cUMP following phage infection and demonstrate that these molecules activate immune effectors that execute an antiviral response. A crystal structure of a uridylate cyclase enzyme from this family explains the molecular mechanism of selectivity for pyrimidines as cyclization substrates. Defense systems encoding pyrimidine cyclases, denoted here Pycsar (pyrimidine cyclase system for antiphage resistance), are widespread in prokaryotes. Our results assign clear biological function to cCMP and cUMP as immunity signaling molecules in bacteria.", + "container-title": "Cell", + "DOI": "10.1016/j.cell.2021.09.031", + "ISSN": "1097-4172", + "issue": "23", + "journalAbbreviation": "Cell", + "language": "eng", + "note": "PMID: 34644530\nPMCID: PMC9070634", + "page": "5728-5739.e16", + "source": "PubMed", + "title": "Cyclic CMP and cyclic UMP mediate bacterial immunity against phages", + "volume": "184", + "author": [ + { + "family": "Tal", + "given": "Nitzan" + }, + { + "family": "Morehouse", + "given": "Benjamin R." + }, + { + "family": "Millman", + "given": "Adi" + }, + { + "family": "Stokar-Avihail", + "given": "Avigail" + }, + { + "family": "Avraham", + "given": "Carmel" + }, + { + "family": "Fedorenko", + "given": "Taya" + }, + { + "family": "Yirmiya", + "given": "Erez" + }, + { + "family": "Herbst", + "given": "Ehud" + }, + { + "family": "Brandis", + "given": "Alexander" + }, + { + "family": "Mehlman", + "given": "Tevie" + }, + { + "family": "Oppenheimer-Shaanan", + "given": "Yaara" + }, + { + "family": "Keszei", + "given": "Alexander F. A." + }, + { + "family": "Shao", + "given": "Sichen" + }, + { + "family": "Amitai", + "given": "Gil" + }, + { + "family": "Kranzusch", + "given": "Philip J." + }, + { + "family": "Sorek", + "given": "Rotem" + } + ], + "issued": { + "date-parts": [ + [ + "2021", + 11, + 11 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/67NVXV28", + "type": "article-journal", + "abstract": "The cyclic GMP-AMP synthase (cGAS)-STING pathway is a central component of the cell-autonomous innate immune system in animals1,2. The cGAS protein is a sensor of cytosolic viral DNA and, upon sensing DNA, it produces a cyclic GMP-AMP (cGAMP) signalling molecule that binds to the STING protein and activates the immune response3-5. The production of cGAMP has also been detected in bacteria6, and has been shown, in Vibrio cholerae, to activate a phospholipase that degrades the inner bacterial membrane7. However, the biological role of cGAMP signalling in bacteria remains unknown. Here we show that cGAMP signalling is part of an antiphage defence system that is common in bacteria. This system is composed of a four-gene operon that encodes the bacterial cGAS and the associated phospholipase, as well as two enzymes with the eukaryotic-like domains E1, E2 and JAB. We show that this operon confers resistance against a wide variety of phages. Phage infection triggers the production of cGAMP, which-in turn-activates the phospholipase, leading to a loss of membrane integrity and to cell death before completion of phage reproduction. Diverged versions of this system appear in more than 10% of prokaryotic genomes, and we show that variants with effectors other than phospholipase also protect against phage infection. Our results suggest that the eukaryotic cGAS-STING antiviral pathway has ancient evolutionary roots that stem from microbial defences against phages.", + "container-title": "Nature", + "DOI": "10.1038/s41586-019-1605-5", + "ISSN": "1476-4687", + "issue": "7780", + "journalAbbreviation": "Nature", + "language": "eng", + "note": "PMID: 31533127", + "page": "691-695", + "source": "PubMed", + "title": "Cyclic GMP-AMP signalling protects bacteria against viral infection", + "volume": "574", + "author": [ + { + "family": "Cohen", + "given": "Daniel" + }, + { + "family": "Melamed", + "given": "Sarah" + }, + { + "family": "Millman", + "given": "Adi" + }, + { + "family": "Shulman", + "given": "Gabriela" + }, + { + "family": "Oppenheimer-Shaanan", + "given": "Yaara" + }, + { + "family": "Kacen", + "given": "Assaf" + }, + { + "family": "Doron", + "given": "Shany" + }, + { + "family": "Amitai", + "given": "Gil" + }, + { + "family": "Sorek", + "given": "Rotem" + } + ], + "issued": { + "date-parts": [ + [ + "2019", + 10 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/KUACFY6C", + "type": "article-journal", + "abstract": "Bacteria have evolved diverse immunity mechanisms to protect themselves against the constant onslaught of bacteriophages1–3. Similar to how eukaryotic innate immune systems sense foreign invaders through pathogen-associated molecular patterns4 (PAMPs), many bacterial immune systems that respond to bacteriophage infection require phage-specific triggers to be activated. However, the identities of such triggers and the sensing mechanisms remain largely unknown. Here we identify and investigate the anti-phage function of CapRelSJ46, a fused toxin–antitoxin system that protects Escherichia coli against diverse phages. Using genetic, biochemical and structural analyses, we demonstrate that the C-terminal domain of CapRelSJ46 regulates the toxic N-terminal region, serving as both antitoxin and phage infection sensor. Following infection by certain phages, newly synthesized major capsid protein binds directly to the C-terminal domain of CapRelSJ46 to relieve autoinhibition, enabling the toxin domain to pyrophosphorylate tRNAs, which blocks translation to restrict viral infection. Collectively, our results reveal the molecular mechanism by which a bacterial immune system directly senses a conserved, essential component of phages, suggesting a PAMP-like sensing model for toxin–antitoxin-mediated innate immunity in bacteria. We provide evidence that CapRels and their phage-encoded triggers are engaged in a ‘Red Queen conflict’5, revealing a new front in the intense coevolutionary battle between phages and bacteria. Given that capsid proteins of some eukaryotic viruses are known to stimulate innate immune signalling in mammalian hosts6–10, our results reveal a deeply conserved facet of immunity.", + "container-title": "Nature", + "DOI": "10.1038/s41586-022-05444-z", + "ISSN": "1476-4687", + "issue": "7938", + "language": "en", + "license": "2022 The Author(s)", + "note": "number: 7938\npublisher: Nature Publishing Group", + "page": "132-140", + "source": "www-nature-com.proxy.insermbiblio.inist.fr", + "title": "Direct activation of a bacterial innate immune system by a viral capsid protein", + "URL": "https://www.nature.com/articles/s41586-022-05444-z", + "volume": "612", + "author": [ + { + "family": "Zhang", + "given": "Tong" + }, + { + "family": "Tamman", + "given": "Hedvig" + }, + { + "family": "Coppieters ’t Wallant", + "given": "Kyo" + }, + { + "family": "Kurata", + "given": "Tatsuaki" + }, + { + "family": "LeRoux", + "given": "Michele" + }, + { + "family": "Srikant", + "given": "Sriram" + }, + { + "family": "Brodiazhenko", + "given": "Tetiana" + }, + { + "family": "Cepauskas", + "given": "Albinas" + }, + { + "family": "Talavera", + "given": "Ariel" + }, + { + "family": "Martens", + "given": "Chloe" + }, + { + "family": "Atkinson", + "given": "Gemma C." + }, + { + "family": "Hauryliuk", + "given": "Vasili" + }, + { + "family": "Garcia-Pino", + "given": "Abel" + }, + { + "family": "Laub", + "given": "Michael T." + } + ], + "accessed": { + "date-parts": [ + [ + "2023", + 1, + 18 + ] + ] + }, + "issued": { + "date-parts": [ + [ + "2022", + 12 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/5S4Q889I", + "type": "article-journal", + "abstract": "The evolutionary pressure imposed by phage predation on bacteria and archaea has resulted in the development of effective anti-phage defence mechanisms, including restriction–modification and CRISPR–Cas systems. Here, we report on a new defence system, DISARM (defence island system associated with restriction–modification), which is widespread in bacteria and archaea. DISARM is composed of five genes, including a DNA methylase and four other genes annotated as a helicase domain, a phospholipase D (PLD) domain, a DUF1998 domain and a gene of unknown function. Engineering the Bacillus paralicheniformis 9945a DISARM system into Bacillus subtilis has rendered the engineered bacteria protected against phages from all three major families of tailed double-stranded DNA phages. Using a series of gene deletions, we show that four of the five genes are essential for DISARM-mediated defence, with the fifth (PLD) being redundant for defence against some of the phages. We further show that DISARM restricts incoming phage DNA and that the B. paralicheniformis DISARM methylase modifies host CCWGG motifs as a marker of self DNA akin to restriction–modification systems. Our results suggest that DISARM is a new type of multi-gene restriction–modification module, expanding the arsenal of defence systems known to be at the disposal of prokaryotes against their viruses.", + "container-title": "Nature Microbiology", + "DOI": "10.1038/s41564-017-0051-0", + "ISSN": "2058-5276", + "issue": "1", + "journalAbbreviation": "Nat Microbiol", + "language": "en", + "license": "2017 The Author(s)", + "note": "number: 1\npublisher: Nature Publishing Group", + "page": "90-98", + "source": "www-nature-com.proxy.insermbiblio.inist.fr", + "title": "DISARM is a widespread bacterial defence system with broad anti-phage activities", + "URL": "https://www.nature.com/articles/s41564-017-0051-0", + "volume": "3", + "author": [ + { + "family": "Ofir", + "given": "Gal" + }, + { + "family": "Melamed", + "given": "Sarah" + }, + { + "family": "Sberro", + "given": "Hila" + }, + { + "family": "Mukamel", + "given": "Zohar" + }, + { + "family": "Silverman", + "given": "Shahar" + }, + { + "family": "Yaakov", + "given": "Gilad" + }, + { + "family": "Doron", + "given": "Shany" + }, + { + "family": "Sorek", + "given": "Rotem" + } + ], + "accessed": { + "date-parts": [ + [ + "2023", + 1, + 18 + ] + ] + }, + "issued": { + "date-parts": [ + [ + "2018", + 1 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/WLS75ZB2", + "type": "article-journal", + "abstract": "Toxin-antitoxin (TA) modules, composed of a toxic protein and a counteracting antitoxin, play important roles in bacterial physiology. We examined the experimental insertion of 1.5 million genes from 388 microbial genomes into an Escherichia coli host using more than 8.5 million random clones. This revealed hundreds of genes (toxins) that could only be cloned when the neighboring gene (antitoxin) was present on the same clone. Clustering of these genes revealed TA families widespread in bacterial genomes, some of which deviate from the classical characteristics previously described for such modules. Introduction of these genes into E. coli validated that the toxin toxicity is mitigated by the antitoxin. Infection experiments with T7 phage showed that two of the new modules can provide resistance against phage. Moreover, our experiments revealed an \"antidefense\" protein in phage T7 that neutralizes phage resistance. Our results expose active fronts in the arms race between bacteria and phage.", + "container-title": "Molecular Cell", + "DOI": "10.1016/j.molcel.2013.02.002", + "ISSN": "1097-4164", + "issue": "1", + "journalAbbreviation": "Mol Cell", + "language": "eng", + "note": "PMID: 23478446\nPMCID: PMC3644417", + "page": "136-148", + "source": "PubMed", + "title": "Discovery of functional toxin/antitoxin systems in bacteria by shotgun cloning", + "volume": "50", + "author": [ + { + "family": "Sberro", + "given": "Hila" + }, + { + "family": "Leavitt", + "given": "Azita" + }, + { + "family": "Kiro", + "given": "Ruth" + }, + { + "family": "Koh", + "given": "Eugene" + }, + { + "family": "Peleg", + "given": "Yoav" + }, + { + "family": "Qimron", + "given": "Udi" + }, + { + "family": "Sorek", + "given": "Rotem" + } + ], + "issued": { + "date-parts": [ + [ + "2013", + 4, + 11 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/IJCF7Y9A", + "type": "article-journal", + "abstract": "Bacteria and archaea are frequently attacked by viruses and other mobile genetic elements and rely on dedicated antiviral defense systems, such as restriction endonucleases and CRISPR, to survive. The enormous diversity of viruses suggests that more types of defense systems exist than are currently known. By systematic defense gene prediction and heterologous reconstitution, here we discover 29 widespread antiviral gene cassettes, collectively present in 32% of all sequenced bacterial and archaeal genomes, that mediate protection against specific bacteriophages. These systems incorporate enzymatic activities not previously implicated in antiviral defense, including RNA editing and retron satellite DNA synthesis. In addition, we computationally predict a diverse set of other putative defense genes that remain to be characterized. These results highlight an immense array of molecular functions that microbes use against viruses.", + "container-title": "Science (New York, N.Y.)", + "DOI": "10.1126/science.aba0372", + "ISSN": "1095-9203", + "issue": "6507", + "journalAbbreviation": "Science", + "language": "eng", + "note": "PMID: 32855333\nPMCID: PMC7985843", + "page": "1077-1084", + "source": "PubMed", + "title": "Diverse enzymatic activities mediate antiviral immunity in prokaryotes", + "volume": "369", + "author": [ + { + "family": "Gao", + "given": "Linyi" + }, + { + "family": "Altae-Tran", + "given": "Han" + }, + { + "family": "Böhning", + "given": "Francisca" + }, + { + "family": "Makarova", + "given": "Kira S." + }, + { + "family": "Segel", + "given": "Michael" + }, + { + "family": "Schmid-Burgk", + "given": "Jonathan L." + }, + { + "family": "Koob", + "given": "Jeremy" + }, + { + "family": "Wolf", + "given": "Yuri I." + }, + { + "family": "Koonin", + "given": "Eugene V." + }, + { + "family": "Zhang", + "given": "Feng" + } + ], + "issued": { + "date-parts": [ + [ + "2020", + 8, + 28 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/M8P34RJW", + "type": "article-journal", + "abstract": "Cyclic-oligonucleotide-based anti-phage signalling systems (CBASS) are a family of defence systems against bacteriophages (hereafter phages) that share ancestry with the cGAS–STING innate immune pathway in animals. CBASS systems are composed of an oligonucleotide cyclase, which generates signalling cyclic oligonucleotides in response to phage infection, and an effector that is activated by the cyclic oligonucleotides and promotes cell death. Cell death occurs before phage replication is completed, therefore preventing the spread of phages to nearby cells. Here, we analysed 38,000 bacterial and archaeal genomes and identified more than 5,000 CBASS systems, which have diverse architectures with multiple signalling molecules, effectors and ancillary genes. We propose a classification system for CBASS that groups systems according to their operon organization, signalling molecules and effector function. Four major CBASS types were identified, sharing at least six effector subtypes that promote cell death by membrane impairment, DNA degradation or other means. We observed evidence of extensive gain and loss of CBASS systems, as well as shuffling of effector genes between systems. We expect that our classification and nomenclature scheme will guide future research in the developing CBASS field.", + "container-title": "Nature Microbiology", + "DOI": "10.1038/s41564-020-0777-y", + "ISSN": "2058-5276", + "issue": "12", + "journalAbbreviation": "Nat Microbiol", + "language": "en", + "license": "2020 The Author(s), under exclusive licence to Springer Nature Limited", + "note": "number: 12\npublisher: Nature Publishing Group", + "page": "1608-1615", + "source": "www-nature-com.proxy.insermbiblio.inist.fr", + "title": "Diversity and classification of cyclic-oligonucleotide-based anti-phage signalling systems", + "URL": "https://www.nature.com/articles/s41564-020-0777-y", + "volume": "5", + "author": [ + { + "family": "Millman", + "given": "Adi" + }, + { + "family": "Melamed", + "given": "Sarah" + }, + { + "family": "Amitai", + "given": "Gil" + }, + { + "family": "Sorek", + "given": "Rotem" + } + ], + "accessed": { + "date-parts": [ + [ + "2023", + 1, + 18 + ] + ] + }, + "issued": { + "date-parts": [ + [ + "2020", + 12 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/W526RBIJ", + "type": "article-journal", + "abstract": "Members of the conserved Argonaute protein family use small RNA guides to locate their mRNA targets and regulate gene expression and suppress mobile genetic elements in eukaryotes1,2. Argonautes are also present in many bacterial and archaeal species3–5. Unlike eukaryotic proteins, several prokaryotic Argonaute proteins use small DNA guides to cleave DNA, a process known as DNA interference6–10. However, the natural functions and targets of DNA interference are poorly understood, and the mechanisms of DNA guide generation and target discrimination remain unknown. Here we analyse the activity of a bacterial Argonaute nuclease from Clostridium butyricum (CbAgo) in vivo. We show that CbAgo targets multicopy genetic elements and suppresses the propagation of plasmids and infection by phages. CbAgo induces DNA interference between homologous sequences and triggers DNA degradation at double-strand breaks in the target DNA. The loading of CbAgo with locus-specific small DNA guides depends on both its intrinsic endonuclease activity and the cellular double-strand break repair machinery. A similar interaction was reported for the acquisition of new spacers during CRISPR adaptation, and prokaryotic genomes that encode Ago nucleases are enriched in CRISPR–Cas systems. These results identify molecular mechanisms that generate guides for DNA interference and suggest that the recognition of foreign nucleic acids by prokaryotic defence systems involves common principles.", + "container-title": "Nature", + "DOI": "10.1038/s41586-020-2605-1", + "ISSN": "1476-4687", + "issue": "7835", + "language": "en", + "license": "2020 The Author(s), under exclusive licence to Springer Nature Limited", + "note": "number: 7835\npublisher: Nature Publishing Group", + "page": "632-637", + "source": "www-nature-com.proxy.insermbiblio.inist.fr", + "title": "DNA targeting and interference by a bacterial Argonaute nuclease", + "URL": "https://www.nature.com/articles/s41586-020-2605-1", + "volume": "587", + "author": [ + { + "family": "Kuzmenko", + "given": "Anton" + }, + { + "family": "Oguienko", + "given": "Anastasiya" + }, + { + "family": "Esyunina", + "given": "Daria" + }, + { + "family": "Yudin", + "given": "Denis" + }, + { + "family": "Petrova", + "given": "Mayya" + }, + { + "family": "Kudinova", + "given": "Alina" + }, + { + "family": "Maslova", + "given": "Olga" + }, + { + "family": "Ninova", + "given": "Maria" + }, + { + "family": "Ryazansky", + "given": "Sergei" + }, + { + "family": "Leach", + "given": "David" + }, + { + "family": "Aravin", + "given": "Alexei A." + }, + { + "family": "Kulbachinskiy", + "given": "Andrey" + } + ], + "accessed": { + "date-parts": [ + [ + "2023", + 1, + 18 + ] + ] + }, + "issued": { + "date-parts": [ + [ + "2020", + 11 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/4QUFJK8K", + "type": "article-journal", + "abstract": "Cyclic oligonucleotide-based antiphage signaling systems (CBASS) are antiviral defense operons that protect bacteria from phage replication. Here, we discover a widespread class of CBASS transmembrane (TM) effector proteins that respond to antiviral nucleotide signals and limit phage propagation through direct membrane disruption. Crystal structures of the Yersinia TM effector Cap15 reveal a compact 8-stranded β-barrel scaffold that forms a cyclic dinucleotide receptor domain that oligomerizes upon activation. We demonstrate that activated Cap15 relocalizes throughout the cell and specifically induces rupture of the inner membrane. Screening for active effectors, we identify the function of distinct families of CBASS TM effectors and demonstrate that cell death via disruption of inner-membrane integrity is a common mechanism of defense. Our results reveal the function of the most prominent class of effector protein in CBASS immunity and define disruption of the inner membrane as a widespread strategy of abortive infection in bacterial phage defense.", + "container-title": "Molecular Cell", + "DOI": "10.1016/j.molcel.2021.10.020", + "ISSN": "1097-2765", + "issue": "24", + "journalAbbreviation": "Molecular Cell", + "language": "en", + "page": "5039-5051.e5", + "source": "ScienceDirect", + "title": "Effector-mediated membrane disruption controls cell death in CBASS antiphage defense", + "URL": "https://www.sciencedirect.com/science/article/pii/S1097276521009126", + "volume": "81", + "author": [ + { + "family": "Duncan-Lowey", + "given": "Brianna" + }, + { + "family": "McNamara-Bordewick", + "given": "Nora K." + }, + { + "family": "Tal", + "given": "Nitzan" + }, + { + "family": "Sorek", + "given": "Rotem" + }, + { + "family": "Kranzusch", + "given": "Philip J." + } + ], + "accessed": { + "date-parts": [ + [ + "2023", + 1, + 18 + ] + ] + }, + "issued": { + "date-parts": [ + [ + "2021", + 12, + 16 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/6L49SJIN", + "type": "article-journal", + "abstract": "RNase LS was originally identified as a potential antagonist of bacteriophage T4 infection. When T4 dmd is defective, RNase LS activity rapidly increases after T4 infection and cleaves T4 mRNAs to antagonize T4 reproduction. Here we show that rnlA, a structural gene of RNase LS, encodes a novel toxin, and that rnlB (formally yfjO), located immediately downstream of rnlA, encodes an antitoxin against RnlA. Ectopic expression of RnlA caused inhibition of cell growth and rapid degradation of mRNAs in ΔrnlAB cells. On the other hand, RnlB neutralized these RnlA effects. Furthermore, overexpression of RnlB in wild-type cells could completely suppress the growth defect of a T4 dmd mutant, that is, excess RnlB inhibited RNase LS activity. Pull-down analysis showed a specific interaction between RnlA and RnlB. Compared to RnlA, RnlB was extremely unstable, being degraded by ClpXP and Lon proteases, and this instability may increase RNase LS activity after T4 infection. All of these results suggested that rnlA–rnlB define a new toxin–antitoxin (TA) system.", + "container-title": "Genetics", + "DOI": "10.1534/genetics.110.121798", + "ISSN": "0016-6731", + "issue": "1", + "journalAbbreviation": "Genetics", + "note": "PMID: 20980243\nPMCID: PMC3018318", + "page": "123-130", + "source": "PubMed Central", + "title": "Escherichia coli rnlA and rnlB Compose a Novel Toxin–Antitoxin System", + "URL": "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC3018318/", + "volume": "187", + "author": [ + { + "family": "Koga", + "given": "Mitsunori" + }, + { + "family": "Otsuka", + "given": "Yuichi" + }, + { + "family": "Lemire", + "given": "Sébastien" + }, + { + "family": "Yonesaki", + "given": "Tetsuro" + } + ], + "accessed": { + "date-parts": [ + [ + "2023", + 1, + 18 + ] + ] + }, + "issued": { + "date-parts": [ + [ + "2011", + 1 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/YJGL2IFZ", + "type": "article-journal", + "abstract": "Some bacteria, when infected by their viral parasites (bacteriophages), undergo a suicidal response that also terminates productive viral replication (abortive infection [Abi]). This response can be viewed as an altruistic act protecting the uninfected bacterial clonal population. Abortive infection can occur through the action of type III protein-RNA toxin-antitoxin (TA) systems, such as ToxINPa from the phytopathogen Pectobacterium atrosepticum Rare spontaneous mutants evolved in the generalized transducing phage ΦM1, which escaped ToxINPa-mediated abortive infection in P. atrosepticum ΦM1 is a member of the Podoviridae and a member of the \"KMV-like\" viruses, a subset of the T7 supergroup. Genomic sequencing of ΦM1 escape mutants revealed single-base changes which clustered in a single open reading frame. The \"escape\" gene product, M1-23, was highly toxic to the host bacterium when overexpressed, but mutations in M1-23 that enabled an escape phenotype caused M1-23 to be less toxic. M1-23 is encoded within the DNA metabolism modular section of the phage genome, and when it was overexpressed, it copurified with the host nucleotide excision repair protein UvrA. While the M1-23 protein interacted with UvrA in coimmunoprecipitation assays, a UvrA mutant strain still aborted ΦM1, suggesting that the interaction is not critical for the type III TA Abi activity. Additionally, ΦM1 escaped a heterologous type III TA system (TenpINPl) from Photorhabdus luminescens (reconstituted in P. atrosepticum) through mutations in the same protein, M1-23. The mechanistic action of M1-23 is currently unknown, but further analysis of this protein may provide insights into the mode of activation of both systems.IMPORTANCE Bacteriophages, the viral predators of bacteria, are the most abundant biological entities and are important factors in driving bacterial evolution. In order to survive infection by these viruses, bacteria have evolved numerous antiphage mechanisms. Many of the studies involved in understanding these interactions have led to the discovery of biotechnological and gene-editing tools, most notably restriction enzymes and more recently the clustered regularly interspaced short palindromic repeats (CRISPR)-Cas systems. Abortive infection is another such antiphage mechanism that warrants further investigation. It is unique in that activation of the system leads to the premature death of the infected cells. As bacteria infected with the virus are destined to die, undergoing precocious suicide prevents the release of progeny phage and protects the rest of the bacterial population. This altruistic suicide can be caused by type III toxin-antitoxin systems, and understanding the activation mechanisms involved will provide deeper insight into the abortive infection process.", + "container-title": "Applied and Environmental Microbiology", + "DOI": "10.1128/AEM.03229-16", + "ISSN": "1098-5336", + "issue": "8", + "journalAbbreviation": "Appl Environ Microbiol", + "language": "eng", + "note": "PMID: 28159786\nPMCID: PMC5377504", + "page": "e03229-16", + "source": "PubMed", + "title": "Evolution of Pectobacterium Bacteriophage ΦM1 To Escape Two Bifunctional Type III Toxin-Antitoxin and Abortive Infection Systems through Mutations in a Single Viral Gene", + "volume": "83", + "author": [ + { + "family": "Blower", + "given": "Tim R." + }, + { + "family": "Chai", + "given": "Ray" + }, + { + "family": "Przybilski", + "given": "Rita" + }, + { + "family": "Chindhy", + "given": "Shahzad" + }, + { + "family": "Fang", + "given": "Xinzhe" + }, + { + "family": "Kidman", + "given": "Samuel E." + }, + { + "family": "Tan", + "given": "Hui" + }, + { + "family": "Luisi", + "given": "Ben F." + }, + { + "family": "Fineran", + "given": "Peter C." + }, + { + "family": "Salmond", + "given": "George P. C." + } + ], + "issued": { + "date-parts": [ + [ + "2017", + 4, + 15 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/G2W8RPNR", + "type": "article-journal", + "abstract": "The hok (host killing) and sok (suppressor of killing) genes (hok/sok) efficiently maintain the low-copy-number plasmid R1. To investigate whether the hok/sok locus evolved as a phage-exclusion mechanism, Escherichia coli cells that contain hok/sok on ...", + "container-title": "Journal of Bacteriology", + "DOI": "10.1128/jb.178.7.2044-2050.1996", + "issue": "7", + "language": "en", + "note": "publisher: American Society for Microbiology (ASM)\nPMID: 8606182", + "page": "2044", + "source": "www.ncbi.nlm.nih.gov", + "title": "Exclusion of T4 phage by the hok/sok killer locus from plasmid R1.", + "URL": "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC177903/", + "volume": "178", + "author": [ + { + "family": "Pecota", + "given": "D. C." + }, + { + "family": "Wood", + "given": "T. K." + } + ], + "accessed": { + "date-parts": [ + [ + "2023", + 1, + 18 + ] + ] + }, + "issued": { + "date-parts": [ + [ + "1996", + 4 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/YWPXHRJA", + "type": "article-journal", + "abstract": "The F plasmid PifA protein, known to be the cause of F exclusion of bacteriophage T7, is shown to be a membrane-associated protein. No transmembrane domains of PifA were located. In contrast, T7 gp1.2 and gp10, the two phage proteins that trigger phage exclusion, are both soluble cytoplasmic proteins. The Escherichia coli FxsA protein, which, at higher concentrations than found in wild-type cells, protects T7 from exclusion, is shown to interact with PifA. FxsA is a polytopic membrane protein with four transmembrane segments and a long cytoplasmic C-terminal tail. This tail is not important in alleviating F exclusion and can be deleted; in contrast, the fourth transmembrane segment of FxsA is critical in allowing wild-type T7 to grow in the presence of F PifA. These data suggest that the primary event that triggers the exclusion process occurs at the cytoplasmic membrane and that FxsA sequesters PifA so that membrane damage is minimized.", + "container-title": "Virology", + "DOI": "10.1016/j.virol.2004.06.001", + "ISSN": "0042-6822", + "issue": "2", + "journalAbbreviation": "Virology", + "language": "eng", + "note": "PMID: 15302217", + "page": "340-352", + "source": "PubMed", + "title": "F exclusion of bacteriophage T7 occurs at the cell membrane", + "volume": "326", + "author": [ + { + "family": "Cheng", + "given": "Xiaogang" + }, + { + "family": "Wang", + "given": "WenFang" + }, + { + "family": "Molineux", + "given": "Ian J." + } + ], + "issued": { + "date-parts": [ + [ + "2004", + 9, + 1 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/Q7S94NT8", + "type": "article-journal", + "abstract": "Infections of F plasmid-containing strains of Escherichia coli by bacteriophage T7 result in membrane damage that allows nucleotides to exude from the infected cell into the culture medium. Only pifA of the F pif operon is necessary for \"leakiness\" of the T7-infected cell. Expression of either T7 gene 1.2 or gene 10 is sufficient to cause leakiness, since infections by phage containing null mutations in both of these genes do not result in permeability changes of the F-containing cell. Even in the absence of phage infection, expression from plasmids of either gene 1.2 or 10 can cause permeability changes, particularly of F plasmid-containing cells. In contrast, gene 1.2 of the related bacteriophage T3 prevents leakiness of the infected cell. In the absence of T3 gene 1.2 function, expression of gene 10 causes membrane damage that allows nucleotides to leak from the cell. Genes 1.2 and 10 of both T3 and T7 are the two genes involved in determining resistance or sensitivity to F exclusion; F exclusion and leakiness of the phage-infected cell are therefore closely related phenomena. However, since leakiness of the infected cell does not necessarily result in phage exclusion, it cannot be used as a predictor of an abortive infection.", + "container-title": "Journal of Bacteriology", + "DOI": "10.1128/jb.173.20.6507-6514.1991", + "ISSN": "0021-9193", + "issue": "20", + "journalAbbreviation": "J Bacteriol", + "language": "eng", + "note": "PMID: 1917875\nPMCID: PMC208987", + "page": "6507-6514", + "source": "PubMed", + "title": "Genes 1.2 and 10 of bacteriophages T3 and T7 determine the permeability lesions observed in infected cells of Escherichia coli expressing the F plasmid gene pifA", + "volume": "173", + "author": [ + { + "family": "Schmitt", + "given": "C. K." + }, + { + "family": "Kemp", + "given": "P." + }, + { + "family": "Molineux", + "given": "I. J." + } + ], + "issued": { + "date-parts": [ + [ + "1991", + 10 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/8STJ3F3U", + "type": "article-journal", + "abstract": "Bacteria are continually challenged by foreign invaders, including bacteriophages, and have evolved a variety of defenses against these invaders. Here, we describe the structural and biochemical mechanisms of a bacteriophage immunity pathway found in a broad array of bacteria, including E. coli and Pseudomonas aeruginosa. This pathway uses eukaryotic-like HORMA domain proteins that recognize specific peptides, then bind and activate a cGAS/DncV-like nucleotidyltransferase (CD-NTase) to generate a cyclic triadenylate (cAAA) second messenger; cAAA in turn activates an endonuclease effector, NucC. Signaling is attenuated by a homolog of the AAA+ ATPase Pch2/TRIP13, which binds and disassembles the active HORMA-CD-NTase complex. When expressed in non-pathogenic E. coli, this pathway confers immunity against bacteriophage λ through an abortive infection mechanism. Our findings reveal the molecular mechanisms of a bacterial defense pathway integrating a cGAS-like nucleotidyltransferase with HORMA domain proteins for threat sensing through protein detection and negative regulation by a Trip13 ATPase.", + "container-title": "Molecular Cell", + "DOI": "10.1016/j.molcel.2019.12.009", + "ISSN": "1097-4164", + "issue": "4", + "journalAbbreviation": "Mol Cell", + "language": "eng", + "note": "PMID: 31932165\nPMCID: PMC7036143", + "page": "709-722.e7", + "source": "PubMed", + "title": "HORMA Domain Proteins and a Trip13-like ATPase Regulate Bacterial cGAS-like Enzymes to Mediate Bacteriophage Immunity", + "volume": "77", + "author": [ + { + "family": "Ye", + "given": "Qiaozhen" + }, + { + "family": "Lau", + "given": "Rebecca K." + }, + { + "family": "Mathews", + "given": "Ian T." + }, + { + "family": "Birkholz", + "given": "Erica A." + }, + { + "family": "Watrous", + "given": "Jeramie D." + }, + { + "family": "Azimi", + "given": "Camillia S." + }, + { + "family": "Pogliano", + "given": "Joe" + }, + { + "family": "Jain", + "given": "Mohit" + }, + { + "family": "Corbett", + "given": "Kevin D." + } + ], + "issued": { + "date-parts": [ + [ + "2020", + 2, + 20 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/8MVU3EJH", + "type": "article-journal", + "abstract": "To provide protection against viral infection and limit the uptake of mobile genetic elements, bacteria and archaea have evolved many diverse defence systems. The discovery and application of CRISPR-Cas adaptive immune systems has spurred recent interest in the identification and classification of new types of defence systems. Many new defence systems have recently been reported but there is a lack of accessible tools available to identify homologs of these systems in different genomes. Here, we report the Prokaryotic Antiviral Defence LOCator (PADLOC), a flexible and scalable open-source tool for defence system identification. With PADLOC, defence system genes are identified using HMM-based homologue searches, followed by validation of system completeness using gene presence/absence and synteny criteria specified by customisable system classifications. We show that PADLOC identifies defence systems with high accuracy and sensitivity. Our modular approach to organising the HMMs and system classifications allows additional defence systems to be easily integrated into the PADLOC database. To demonstrate application of PADLOC to biological questions, we used PADLOC to identify six new subtypes of known defence systems and a putative novel defence system comprised of a helicase, methylase and ATPase. PADLOC is available as a standalone package (https://github.com/padlocbio/padloc) and as a webserver (https://padloc.otago.ac.nz).", + "container-title": "Nucleic Acids Research", + "DOI": "10.1093/nar/gkab883", + "ISSN": "0305-1048", + "issue": "19", + "journalAbbreviation": "Nucleic Acids Research", + "page": "10868-10878", + "source": "Silverchair", + "title": "Identification and classification of antiviral defence systems in bacteria and archaea with PADLOC reveals new system types", + "URL": "https://doi.org/10.1093/nar/gkab883", + "volume": "49", + "author": [ + { + "family": "Payne", + "given": "Leighton J" + }, + { + "family": "Todeschini", + "given": "Thomas C" + }, + { + "family": "Wu", + "given": "Yi" + }, + { + "family": "Perry", + "given": "Benjamin J" + }, + { + "family": "Ronson", + "given": "Clive W" + }, + { + "family": "Fineran", + "given": "Peter C" + }, + { + "family": "Nobrega", + "given": "Franklin L" + }, + { + "family": "Jackson", + "given": "Simon A" + } + ], + "accessed": { + "date-parts": [ + [ + "2023", + 1, + 18 + ] + ] + }, + "issued": { + "date-parts": [ + [ + "2021", + 11, + 8 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/LSK8CA8H", + "type": "article-journal", + "abstract": "Most bacterial genomes contain horizontally acquired and transmissible mobile genetic elements, including temperate bacteriophages and integrative and conjugative elements. Little is known about how these elements interact and co-evolved as parts of their host genomes. In many cases, it is not known what advantages, if any, these elements provide to their bacterial hosts. Most strains of Bacillus subtilis contain the temperate phage SPß and the integrative and conjugative element ICEBs1. Here we show that the presence of ICEBs1 in cells protects populations of B. subtilis from predation by SPß, likely providing selective pressure for the maintenance of ICEBs1 in B. subtilis. A single gene in ICEBs1 (yddK, now called spbK for SPß killing) was both necessary and sufficient for this protection. spbK inhibited production of SPß, during both activation of a lysogen and following de novo infection. We found that expression spbK, together with the SPß gene yonE constitutes an abortive infection system that leads to cell death. spbK encodes a TIR (Toll-interleukin-1 receptor)-domain protein with similarity to some plant antiviral proteins and animal innate immune signaling proteins. We postulate that many uncharacterized cargo genes in ICEs may confer selective advantage to cells by protecting against other mobile elements.", + "container-title": "PLOS Genetics", + "DOI": "10.1371/journal.pgen.1010065", + "ISSN": "1553-7404", + "issue": "2", + "journalAbbreviation": "PLOS Genetics", + "language": "en", + "note": "publisher: Public Library of Science", + "page": "e1010065", + "source": "PLoS Journals", + "title": "Interactions between mobile genetic elements: An anti-phage gene in an integrative and conjugative element protects host cells from predation by a temperate bacteriophage", + "title-short": "Interactions between mobile genetic elements", + "URL": "https://journals.plos.org/plosgenetics/article?id=10.1371/journal.pgen.1010065", + "volume": "18", + "author": [ + { + "family": "Johnson", + "given": "Christopher M." + }, + { + "family": "Harden", + "given": "M. Michael" + }, + { + "family": "Grossman", + "given": "Alan D." + } + ], + "accessed": { + "date-parts": [ + [ + "2023", + 1, + 18 + ] + ] + }, + "issued": { + "date-parts": [ + [ + "2022", + 2, + 14 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/A7II3YWA", + "type": "article-journal", + "abstract": "The discovery of ∼20-kb gene clusters containing a family of paralogs of tRNA guanosine transglycosylase genes, called tgtA5, alongside 7-cyano-7-deazaguanine (preQ0) synthesis and DNA metabolism genes, led to the hypothesis that 7-deazaguanine derivatives are inserted in DNA. This was established by detecting 2’-deoxy-preQ0 and 2’-deoxy-7-amido-7-deazaguanosine in enzymatic hydrolysates of DNA extracted from the pathogenic, Gram-negative bacteria Salmonella enterica serovar Montevideo. These modifications were absent in the closely related S. enterica serovar Typhimurium LT2 and from a mutant of S. Montevideo, each lacking the gene cluster. This led us to rename the genes of the S. Montevideo cluster as dpdA-K for 7-deazapurine in DNA. Similar gene clusters were analyzed in ∼150 phylogenetically diverse bacteria, and the modifications were detected in DNA from other organisms containing these clusters, including Kineococcus radiotolerans, Comamonas testosteroni, and Sphingopyxis alaskensis. Comparative genomic analysis shows that, in Enterobacteriaceae, the cluster is a genomic island integrated at the leuX locus, and the phylogenetic analysis of the TgtA5 family is consistent with widespread horizontal gene transfer. Comparison of transformation efficiencies of modified or unmodified plasmids into isogenic S. Montevideo strains containing or lacking the cluster strongly suggests a restriction–modification role for the cluster in Enterobacteriaceae. Another preQ0 derivative, 2’-deoxy-7-formamidino-7-deazaguanosine, was found in the Escherichia coli bacteriophage 9g, as predicted from the presence of homologs of genes involved in the synthesis of the archaeosine tRNA modification. These results illustrate a deep and unexpected evolutionary connection between DNA and tRNA metabolism.", + "container-title": "Proceedings of the National Academy of Sciences", + "DOI": "10.1073/pnas.1518570113", + "issue": "11", + "note": "publisher: Proceedings of the National Academy of Sciences", + "page": "E1452-E1459", + "source": "pnas.org (Atypon)", + "title": "Novel genomic island modifies DNA with 7-deazaguanine derivatives", + "URL": "https://www.pnas.org/doi/10.1073/pnas.1518570113", + "volume": "113", + "author": [ + { + "family": "Thiaville", + "given": "Jennifer J." + }, + { + "family": "Kellner", + "given": "Stefanie M." + }, + { + "family": "Yuan", + "given": "Yifeng" + }, + { + "family": "Hutinet", + "given": "Geoffrey" + }, + { + "family": "Thiaville", + "given": "Patrick C." + }, + { + "family": "Jumpathong", + "given": "Watthanachai" + }, + { + "family": "Mohapatra", + "given": "Susovan" + }, + { + "family": "Brochier-Armanet", + "given": "Celine" + }, + { + "family": "Letarov", + "given": "Andrey V." + }, + { + "family": "Hillebrand", + "given": "Roman" + }, + { + "family": "Malik", + "given": "Chanchal K." + }, + { + "family": "Rizzo", + "given": "Carmelo J." + }, + { + "family": "Dedon", + "given": "Peter C." + }, + { + "family": "Crécy-Lagard", + "given": "Valérie", + "non-dropping-particle": "de" + } + ], + "accessed": { + "date-parts": [ + [ + "2023", + 1, + 18 + ] + ] + }, + "issued": { + "date-parts": [ + [ + "2016", + 3, + 15 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/MXL3X3FJ", + "type": "article-journal", + "abstract": "The ancient, ongoing coevolutionary battle between bacteria and their viruses, bacteriophages, has given rise to sophisticated immune systems including restriction-modification and CRISPR-Cas. Many additional anti-phage systems have been identified using computational approaches based on genomic co-location within defence islands, but these screens may not be exhaustive. Here we developed an experimental selection scheme agnostic to genomic context to identify defence systems in 71 diverse E. coli strains. Our results unveil 21 conserved defence systems, none of which were previously detected as enriched in defence islands. Additionally, our work indicates that intact prophages and mobile genetic elements are primary reservoirs and distributors of defence systems in E. coli, with defence systems typically carried in specific locations or hotspots. These hotspots encode dozens of additional uncharacterized defence system candidates. Our findings reveal an extended landscape of antiviral immunity in E. coli and provide an approach for mapping defence systems in other species.", + "container-title": "Nature Microbiology", + "DOI": "10.1038/s41564-022-01219-4", + "ISSN": "2058-5276", + "issue": "10", + "journalAbbreviation": "Nat Microbiol", + "language": "en", + "license": "2022 The Author(s)", + "note": "number: 10\npublisher: Nature Publishing Group", + "page": "1568-1579", + "source": "www-nature-com.proxy.insermbiblio.inist.fr", + "title": "A functional selection reveals previously undetected anti-phage defence systems in the E. coli pangenome", + "URL": "https://www.nature.com/articles/s41564-022-01219-4", + "volume": "7", + "author": [ + { + "family": "Vassallo", + "given": "Christopher N." + }, + { + "family": "Doering", + "given": "Christopher R." + }, + { + "family": "Littlehale", + "given": "Megan L." + }, + { + "family": "Teodoro", + "given": "Gabriella I. C." + }, + { + "family": "Laub", + "given": "Michael T." + } + ], + "accessed": { + "date-parts": [ + [ + "2023", + 1, + 18 + ] + ] + }, + "issued": { + "date-parts": [ + [ + "2022", + 10 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/VZKFN456", + "type": "article-journal", + "abstract": "We report the molecular cloning of the pif region of the F plasmid and its physical dissection by subcloning and deletion analysis. Examination of the polypeptide products synthesized in maxicells by plasmids carrying defined pif sequences has shown that the region specifies at least two proteins of molecular weights 80,000 and 40,000, the genes for which appear to lie in the same transcriptional unit. In addition, analysis of pif-lacZ fusion plasmids has detected a pif promoter and determined the direction of transcription across the pif region.", + "container-title": "Molecular & general genetics: MGG", + "DOI": "10.1007/BF00327934", + "ISSN": "0026-8925", + "issue": "1", + "journalAbbreviation": "Mol Gen Genet", + "language": "eng", + "note": "PMID: 6096670", + "page": "137-142", + "source": "PubMed", + "title": "Molecular analysis of F plasmid pif region specifying abortive infection of T7 phage", + "volume": "197", + "author": [ + { + "family": "Cram", + "given": "D." + }, + { + "family": "Ray", + "given": "A." + }, + { + "family": "Skurray", + "given": "R." + } + ], + "issued": { + "date-parts": [ + [ + "1984" + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/PNZ89KN6", + "type": "article-journal", + "abstract": "Defence-associated sirtuins (DSRs) comprise a family of proteins that defend bacteria from phage infection via an unknown mechanism. These proteins are common in bacteria and harbour an N-terminal sirtuin (SIR2) domain. In this study we report that DSR proteins degrade nicotinamide adenine dinucleotide (NAD+) during infection, depleting the cell of this essential molecule and aborting phage propagation. Our data show that one of these proteins, DSR2, directly identifies phage tail tube proteins and then becomes an active NADase in Bacillus subtilis. Using a phage mating methodology that promotes genetic exchange between pairs of DSR2-sensitive and DSR2–resistant phages, we further show that some phages express anti-DSR2 proteins that bind and repress DSR2. Finally, we demonstrate that the SIR2 domain serves as an effector NADase in a diverse set of phage defence systems outside the DSR family. Our results establish the general role of SIR2 domains in bacterial immunity against phages.", + "container-title": "Nature Microbiology", + "DOI": "10.1038/s41564-022-01207-8", + "ISSN": "2058-5276", + "issue": "11", + "journalAbbreviation": "Nat Microbiol", + "language": "en", + "license": "2022 The Author(s), under exclusive licence to Springer Nature Limited", + "note": "number: 11\npublisher: Nature Publishing Group", + "page": "1849-1856", + "source": "www-nature-com.proxy.insermbiblio.inist.fr", + "title": "Multiple phage resistance systems inhibit infection via SIR2-dependent NAD+ depletion", + "URL": "https://www.nature.com/articles/s41564-022-01207-8", + "volume": "7", + "author": [ + { + "family": "Garb", + "given": "Jeremy" + }, + { + "family": "Lopatina", + "given": "Anna" + }, + { + "family": "Bernheim", + "given": "Aude" + }, + { + "family": "Zaremba", + "given": "Mindaugas" + }, + { + "family": "Siksnys", + "given": "Virginijus" + }, + { + "family": "Melamed", + "given": "Sarah" + }, + { + "family": "Leavitt", + "given": "Azita" + }, + { + "family": "Millman", + "given": "Adi" + }, + { + "family": "Amitai", + "given": "Gil" + }, + { + "family": "Sorek", + "given": "Rotem" + } + ], + "accessed": { + "date-parts": [ + [ + "2023", + 1, + 18 + ] + ] + }, + "issued": { + "date-parts": [ + [ + "2022", + 11 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/JB54V7AE", + "type": "article-journal", + "abstract": "Abortive infection (Abi) systems, also called phage exclusion, block phage multiplication and cause premature bacterial cell death upon phage infection. This decreases the number of progeny particles and limits their spread to other cells allowing the bacterial population to survive. Twenty Abi systems have been isolated in Lactococcus lactis, a bacterium used in cheese-making fermentation processes, where phage attacks are of economical importance. Recent insights in their expression and mode of action indicate that, behind diverse phenotypic and molecular effects, lactococcal Abis share common traits with the well-studied Escherichia coli systems Lit and Prr. Abis are widespread in bacteria, and recent analysis indicates that Abis might have additional roles other than conferring phage resistance.", + "container-title": "Current Opinion in Microbiology", + "DOI": "10.1016/j.mib.2005.06.006", + "ISSN": "1369-5274", + "issue": "4", + "journalAbbreviation": "Curr Opin Microbiol", + "language": "eng", + "note": "PMID: 15979388", + "page": "473-479", + "source": "PubMed", + "title": "Phage abortive infection in lactococci: variations on a theme", + "title-short": "Phage abortive infection in lactococci", + "volume": "8", + "author": [ + { + "family": "Chopin", + "given": "Marie-Christine" + }, + { + "family": "Chopin", + "given": "Alain" + }, + { + "family": "Bidnenko", + "given": "Elena" + } + ], + "issued": { + "date-parts": [ + [ + "2005", + 8 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/ZF5HYJBS", + "type": "article-journal", + "abstract": "Vibrio cholerae biotype El Tor is perpetuating the longest cholera pandemic in recorded history. The genomic islands VSP-1 and VSP-2 distinguish El Tor from previous pandemic V. cholerae strains. Using a co-occurrence analysis of VSP genes in >200,000 bacterial genomes we built gene networks to infer biological functions encoded in these islands. This revealed that dncV, a component of the cyclic-oligonucleotide-based anti-phage signalling system (CBASS) anti-phage defence system, co-occurs with an uncharacterized gene vc0175 that we rename avcD for anti-viral cytodine deaminase. We show that AvcD is a deoxycytidylate deaminase and that its activity is post-translationally inhibited by a non-coding RNA named AvcI. AvcID and bacterial homologues protect bacterial populations against phage invasion by depleting free deoxycytidine nucleotides during infection, thereby decreasing phage replication. Homologues of avcD exist in all three domains of life, and bacterial AvcID defends against phage infection by combining traits of two eukaryotic innate viral immunity proteins, APOBEC and SAMHD1.", + "container-title": "Nature Microbiology", + "DOI": "10.1038/s41564-022-01162-4", + "ISSN": "2058-5276", + "issue": "8", + "journalAbbreviation": "Nat Microbiol", + "language": "en", + "license": "2022 The Author(s), under exclusive licence to Springer Nature Limited", + "note": "number: 8\npublisher: Nature Publishing Group", + "page": "1210-1220", + "source": "www-nature-com.proxy.insermbiblio.inist.fr", + "title": "Phage defence by deaminase-mediated depletion of deoxynucleotides in bacteria", + "URL": "https://www.nature.com/articles/s41564-022-01162-4", + "volume": "7", + "author": [ + { + "family": "Hsueh", + "given": "Brian Y." + }, + { + "family": "Severin", + "given": "Geoffrey B." + }, + { + "family": "Elg", + "given": "Clinton A." + }, + { + "family": "Waldron", + "given": "Evan J." + }, + { + "family": "Kant", + "given": "Abhiruchi" + }, + { + "family": "Wessel", + "given": "Alex J." + }, + { + "family": "Dover", + "given": "John A." + }, + { + "family": "Rhoades", + "given": "Christopher R." + }, + { + "family": "Ridenhour", + "given": "Benjamin J." + }, + { + "family": "Parent", + "given": "Kristin N." + }, + { + "family": "Neiditch", + "given": "Matthew B." + }, + { + "family": "Ravi", + "given": "Janani" + }, + { + "family": "Top", + "given": "Eva M." + }, + { + "family": "Waters", + "given": "Christopher M." + } + ], + "accessed": { + "date-parts": [ + [ + "2023", + 1, + 18 + ] + ] + }, + "issued": { + "date-parts": [ + [ + "2022", + 8 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/94VVDU63", + "type": "article-journal", + "abstract": "The optional Escherichia coli prr locus encodes two physically associated restriction systems: the type IC DNA restriction-modification enzyme EcoprrI and the tRNA(Lys)-specific anticodon nuclease, specified by the PrrC polypeptide. Anticodon nuclease is kept latent as a result of this interaction. The activation of anticodon nuclease, upon infection by phage T4, may cause depletion of tRNA(Lys) and, consequently, abolition of T4 protein synthesis. However, this effect is counteracted by the repair of tRNA(Lys) in consecutive reactions catalysed by the phage enzymes polynucleotide kinase and RNA ligase. Stp, a short polypeptide encoded by phage T4, has been implicated with activation of the anticodon nuclease. Here we confirm this notion and also demonstrate a second function of Stp: inhibition of EcoprrI restriction. Both effects depend, in general, on the same residues within the N-proximal 18 residue region of Stp. We propose that Stp alters the conformation of EcoprrI and, consequently, of PrrC, allowing activation of the latent anticodon nuclease. Presumably, Stp evolved to offset a DNA restriction system of the host cell but was turned, eventually, against the phage as an activator of the appended tRNA restriction enzyme.", + "container-title": "Journal of Molecular Biology", + "DOI": "10.1006/jmbi.1995.0343", + "ISSN": "0022-2836", + "issue": "5", + "journalAbbreviation": "J Mol Biol", + "language": "eng", + "note": "PMID: 7791212", + "page": "857-868", + "source": "PubMed", + "title": "Phage T4-coded Stp: double-edged effector of coupled DNA and tRNA-restriction systems", + "title-short": "Phage T4-coded Stp", + "volume": "249", + "author": [ + { + "family": "Penner", + "given": "M." + }, + { + "family": "Morad", + "given": "I." + }, + { + "family": "Snyder", + "given": "L." + }, + { + "family": "Kaufmann", + "given": "G." + } + ], + "issued": { + "date-parts": [ + [ + "1995", + 6, + 23 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/GQMBMLAM", + "type": "article-journal", + "abstract": "The natural role of the conserved bacterial anticodon nuclease (ACNase) RloC is not known, but traits that set it apart from the homologous phage T4-excluding ACNase PrrC could provide relevant clues. PrrC is silenced by a genetically linked DNA restriction-modification (RM) protein and turned on by a phage-encoded DNA restriction inhibitor. In contrast, RloC is rarely linked to an RM protein, and its ACNase is regulated by an internal switch responsive to double-stranded DNA breaks. Moreover, PrrC nicks the tRNA substrate, whereas RloC excises the wobble nucleotide. These distinctions suggested that (i) T4 and related phage that degrade their host DNA will activate RloC and (ii) the tRNA species consequently disrupted will not be restored by phage tRNA repair enzymes that counteract PrrC. Consistent with these predictions we show that Acinetobacter baylyi RloC expressed in Escherichia coli is activated by wild-type phage T4 but not by a mutant impaired in host DNA degradation. Moreover, host and T4 tRNA species disrupted by the activated ACNase were not restored by T4's tRNA repair system. Nonetheless, T4's plating efficiency was inefficiently impaired by AbaRloC, presumably due to a decoy function of the phage encoded tRNA target, the absence of which exacerbated the restriction.", + "container-title": "Molecular Microbiology", + "DOI": "10.1111/mmi.13074", + "ISSN": "1365-2958", + "issue": "5", + "journalAbbreviation": "Mol Microbiol", + "language": "eng", + "note": "PMID: 26031711", + "page": "898-910", + "source": "PubMed", + "title": "Phage T4-induced DNA breaks activate a tRNA repair-defying anticodon nuclease", + "volume": "97", + "author": [ + { + "family": "Bitton", + "given": "Lital" + }, + { + "family": "Klaiman", + "given": "Daniel" + }, + { + "family": "Kaufmann", + "given": "Gabriel" + } + ], + "issued": { + "date-parts": [ + [ + "2015", + 9 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/VT5RBZ8B", + "type": "article-journal", + "abstract": "BREX (for BacteRiophage EXclusion) is a superfamily of common bacterial and archaeal defence systems active against diverse bacteriophages. While the mechanism of BREX defence is currently unknown, self versus non-self differentiation requires methylation of specific asymmetric sites in host DNA by BrxX (PglX) methyltransferase. Here, we report that T7 bacteriophage Ocr, a DNA mimic protein that protects the phage from the defensive action of type I restriction–modification systems, is also active against BREX. In contrast to the wild–type phage, which is resistant to BREX defence, T7 lacking Ocr is strongly inhibited by BREX, and its ability to overcome the defence could be complemented by Ocr provided in trans. We further show that Ocr physically associates with BrxX methyltransferase. Although BREX+ cells overproducing Ocr have partially methylated BREX sites, their viability is unaffected. The result suggests that, similar to its action against type I R–M systems, Ocr associates with as yet unidentified BREX system complexes containing BrxX and neutralizes their ability to both methylate and exclude incoming phage DNA.", + "container-title": "Nucleic Acids Research", + "DOI": "10.1093/nar/gkaa290", + "ISSN": "0305-1048", + "issue": "10", + "journalAbbreviation": "Nucleic Acids Research", + "page": "5397-5406", + "source": "Silverchair", + "title": "Phage T7 DNA mimic protein Ocr is a potent inhibitor of BREX defence", + "URL": "https://doi.org/10.1093/nar/gkaa290", + "volume": "48", + "author": [ + { + "family": "Isaev", + "given": "Artem" + }, + { + "family": "Drobiazko", + "given": "Alena" + }, + { + "family": "Sierro", + "given": "Nicolas" + }, + { + "family": "Gordeeva", + "given": "Julia" + }, + { + "family": "Yosef", + "given": "Ido" + }, + { + "family": "Qimron", + "given": "Udi" + }, + { + "family": "Ivanov", + "given": "Nikolai V" + }, + { + "family": "Severinov", + "given": "Konstantin" + } + ], + "accessed": { + "date-parts": [ + [ + "2023", + 1, + 18 + ] + ] + }, + "issued": { + "date-parts": [ + [ + "2020", + 6, + 4 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/SCTQ9DYR", + "type": "article-journal", + "abstract": "Modifications of the canonical structures of DNA and RNA play critical roles in cell physiology, DNA replication, transcription and translation in all organisms. We now report that bacterial dnd gene clusters incorporate sulfur into the DNA backbone as a sequence-selective, stereospecific phosphorothioate modification. To our knowledge, unlike any other DNA or RNA modification systems, DNA phosphorothioation by dnd gene clusters is the first physiological modification described on the DNA backbone.", + "container-title": "Nature Chemical Biology", + "DOI": "10.1038/nchembio.2007.39", + "ISSN": "1552-4469", + "issue": "11", + "journalAbbreviation": "Nat Chem Biol", + "language": "eng", + "note": "PMID: 17934475", + "page": "709-710", + "source": "PubMed", + "title": "Phosphorothioation of DNA in bacteria by dnd genes", + "volume": "3", + "author": [ + { + "family": "Wang", + "given": "Lianrong" + }, + { + "family": "Chen", + "given": "Shi" + }, + { + "family": "Xu", + "given": "Tiegang" + }, + { + "family": "Taghizadeh", + "given": "Koli" + }, + { + "family": "Wishnok", + "given": "John S." + }, + { + "family": "Zhou", + "given": "Xiufen" + }, + { + "family": "You", + "given": "Delin" + }, + { + "family": "Deng", + "given": "Zixin" + }, + { + "family": "Dedon", + "given": "Peter C." + } + ], + "issued": { + "date-parts": [ + [ + "2007", + 11 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/LL43Y9V6", + "type": "article-journal", + "abstract": "Over 50 years of biological research with bacteriophage T4 includes notable discoveries in post-transcriptional control, including the genetic code, mRNA, and tRNA; the very foundations of molecular biology. In this review we compile the past 10 - 15 year literature on RNA-protein interactions with T4 and some of its related phages, with particular focus on advances in mRNA decay and processing, and on translational repression. Binding of T4 proteins RegB, RegA, gp32 and gp43 to their cognate target RNAs has been characterized. For several of these, further study is needed for an atomic-level perspective, where resolved structures of RNA-protein complexes are awaiting investigation. Other features of post-transcriptional control are also summarized. These include: RNA structure at translation initiation regions that either inhibit or promote translation initiation; programmed translational bypassing, where T4 orchestrates ribosome bypass of a 50 nucleotide mRNA sequence; phage exclusion systems that involve T4-mediated activation of a latent endoribonuclease (PrrC) and cofactor-assisted activation of EF-Tu proteolysis (Gol-Lit); and potentially important findings on ADP-ribosylation (by Alt and Mod enzymes) of ribosome-associated proteins that might broadly impact protein synthesis in the infected cell. Many of these problems can continue to be addressed with T4, whereas the growing database of T4-related phage genome sequences provides new resources and potentially new phage-host systems to extend the work into a broader biological, evolutionary context.", + "container-title": "Virology Journal", + "DOI": "10.1186/1743-422X-7-360", + "ISSN": "1743-422X", + "issue": "1", + "journalAbbreviation": "Virology Journal", + "page": "360", + "source": "BioMed Central", + "title": "Post-transcriptional control by bacteriophage T4: mRNA decay and inhibition of translation initiation", + "title-short": "Post-transcriptional control by bacteriophage T4", + "URL": "https://doi.org/10.1186/1743-422X-7-360", + "volume": "7", + "author": [ + { + "family": "Uzan", + "given": "Marc" + }, + { + "family": "Miller", + "given": "Eric S." + } + ], + "accessed": { + "date-parts": [ + [ + "2023", + 1, + 18 + ] + ] + }, + "issued": { + "date-parts": [ + [ + "2010", + 12, + 3 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/DILEWBFS", + "type": "article-journal", + "abstract": "AIM: To compare pH and conductivity used in the determination of growth in reconstituted skim milk (RSM), to determine whether the presence of one or two plasmids in Lactococcus lactis had any influence on growth, and whether AbiS improved bacteriophages resistance of L. lactis.\nMETHODS AND RESULTS: Conductivity and pH were used to determine growth in RSM. A small increase in the generation time was found with increasing number of plasmids, while their size was unimportant. The introduction of a plasmid-encoding AbiS did only enhance the level of phage resistance significant when other plasmids encoding either AbiS1 or the restriction modification system LlaBIII was present.\nCONCLUSIONS: The earliest detection of growth was observed by measuring pH, rather than conductance. The plasmid-encoded AbiS system has a potential to be used as a phage resistance mechanisms in L. lactis during milk fermentations, especially when combined with other anti-phage mechanisms.\nSIGNIFICANCE AND IMPACT OF THE STUDY: This study widened the knowledge about the influence of plasmid introduction on the growth rate of L. lactis, which is important for the construction of new strains. The level of protection against 936 groups of phages was only significant when the mechanism was present together with the RM system LlaBIII.", + "container-title": "Journal of Applied Microbiology", + "DOI": "10.1111/j.1365-2672.2007.03507.x", + "ISSN": "1364-5072", + "issue": "6", + "journalAbbreviation": "J Appl Microbiol", + "language": "eng", + "note": "PMID: 18045423", + "page": "2382-2391", + "source": "PubMed", + "title": "Potential of AbiS as defence mechanism determined by conductivity measurement", + "volume": "103", + "author": [ + { + "family": "Holubová", + "given": "Jitka" + }, + { + "family": "Josephsen", + "given": "Jytte" + } + ], + "issued": { + "date-parts": [ + [ + "2007", + 12 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/LR7BKM6D", + "type": "article-journal", + "abstract": "BACKGROUND: In eukaryotes, RNA interference (RNAi) is a major mechanism of defense against viruses and transposable elements as well of regulating translation of endogenous mRNAs. The RNAi systems recognize the target RNA molecules via small guide RNAs that are completely or partially complementary to a region of the target. Key components of the RNAi systems are proteins of the Argonaute-PIWI family some of which function as slicers, the nucleases that cleave the target RNA that is base-paired to a guide RNA. Numerous prokaryotes possess the CRISPR-associated system (CASS) of defense against phages and plasmids that is, in part, mechanistically analogous but not homologous to eukaryotic RNAi systems. Many prokaryotes also encode homologs of Argonaute-PIWI proteins but their functions remain unknown.\nRESULTS: We present a detailed analysis of Argonaute-PIWI protein sequences and the genomic neighborhoods of the respective genes in prokaryotes. Whereas eukaryotic Ago/PIWI proteins always contain PAZ (oligonucleotide binding) and PIWI (active or inactivated nuclease) domains, the prokaryotic Argonaute homologs (pAgos) fall into two major groups in which the PAZ domain is either present or absent. The monophyly of each group is supported by a phylogenetic analysis of the conserved PIWI-domains. Almost all pAgos that lack a PAZ domain appear to be inactivated, and the respective genes are associated with a variety of predicted nucleases in putative operons. An additional, uncharacterized domain that is fused to various nucleases appears to be a unique signature of operons encoding the short (lacking PAZ) pAgo form. By contrast, almost all PAZ-domain containing pAgos are predicted to be active nucleases. Some proteins of this group (e.g., that from Aquifex aeolicus) have been experimentally shown to possess nuclease activity, and are not typically associated with genes for other (putative) nucleases. Given these observations, the apparent extensive horizontal transfer of pAgo genes, and their common, statistically significant over-representation in genomic neighborhoods enriched in genes encoding proteins involved in the defense against phages and/or plasmids, we hypothesize that pAgos are key components of a novel class of defense systems. The PAZ-domain containing pAgos are predicted to directly destroy virus or plasmid nucleic acids via their nuclease activity, whereas the apparently inactivated, PAZ-lacking pAgos could be structural subunits of protein complexes that contain, as active moieties, the putative nucleases that we predict to be co-expressed with these pAgos. All these nucleases are predicted to be DNA endonucleases, so it seems most probable that the putative novel phage/plasmid-defense system targets phage DNA rather than mRNAs. Given that in eukaryotic RNAi systems, the PAZ domain binds a guide RNA and positions it on the complementary region of the target, we further speculate that pAgos function on a similar principle (the guide being either DNA or RNA), and that the uncharacterized domain found in putative operons with the short forms of pAgos is a functional substitute for the PAZ domain.\nCONCLUSION: The hypothesis that pAgos are key components of a novel prokaryotic immune system that employs guide RNA or DNA molecules to degrade nucleic acids of invading mobile elements implies a functional analogy with the prokaryotic CASS and a direct evolutionary connection with eukaryotic RNAi. The predictions of the hypothesis including both the activities of pAgos and those of the associated endonucleases are readily amenable to experimental tests.", + "container-title": "Biology Direct", + "DOI": "10.1186/1745-6150-4-29", + "ISSN": "1745-6150", + "journalAbbreviation": "Biol Direct", + "language": "eng", + "note": "PMID: 19706170\nPMCID: PMC2743648", + "page": "29", + "source": "PubMed", + "title": "Prokaryotic homologs of Argonaute proteins are predicted to function as key components of a novel system of defense against mobile genetic elements", + "volume": "4", + "author": [ + { + "family": "Makarova", + "given": "Kira S." + }, + { + "family": "Wolf", + "given": "Yuri I." + }, + { + "family": "Oost", + "given": "John", + "non-dropping-particle": "van der" + }, + { + "family": "Koonin", + "given": "Eugene V." + } + ], + "issued": { + "date-parts": [ + [ + "2009", + 8, + 25 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/CP7QTLA2", + "type": "article-journal", + "abstract": "Many organisms have evolved specialized immune pattern-recognition receptors, including nucleotide-binding oligomerization domain-like receptors (NLRs) of the STAND superfamily that are ubiquitous in plants, animals, and fungi. Although the roles of NLRs in eukaryotic immunity are well established, it is unknown whether prokaryotes use similar defense mechanisms. Here, we show that antiviral STAND (Avs) homologs in bacteria and archaea detect hallmark viral proteins, triggering Avs tetramerization and the activation of diverse N-terminal effector domains, including DNA endonucleases, to abrogate infection. Cryo-electron microscopy reveals that Avs sensor domains recognize conserved folds, active-site residues, and enzyme ligands, allowing a single Avs receptor to detect a wide variety of viruses. These findings extend the paradigm of pattern recognition of pathogen-specific proteins across all three domains of life.", + "container-title": "Science (New York, N.Y.)", + "DOI": "10.1126/science.abm4096", + "ISSN": "1095-9203", + "issue": "6607", + "journalAbbreviation": "Science", + "language": "eng", + "note": "PMID: 35951700", + "page": "eabm4096", + "source": "PubMed", + "title": "Prokaryotic innate immunity through pattern recognition of conserved viral proteins", + "volume": "377", + "author": [ + { + "family": "Gao", + "given": "Linyi Alex" + }, + { + "family": "Wilkinson", + "given": "Max E." + }, + { + "family": "Strecker", + "given": "Jonathan" + }, + { + "family": "Makarova", + "given": "Kira S." + }, + { + "family": "Macrae", + "given": "Rhiannon K." + }, + { + "family": "Koonin", + "given": "Eugene V." + }, + { + "family": "Zhang", + "given": "Feng" + } + ], + "issued": { + "date-parts": [ + [ + "2022", + 8, + 12 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/5FSJA5DT", + "type": "article-journal", + "abstract": "Viperin is an interferon-induced cellular protein that is conserved in animals1. It has previously been shown to inhibit the replication of multiple viruses by producing the ribonucleotide 3′-deoxy-3′,4′-didehydro (ddh)-cytidine triphosphate (ddhCTP), which acts as a chain terminator for viral RNA polymerase2. Here we show that eukaryotic viperin originated from a clade of bacterial and archaeal proteins that protect against phage infection. Prokaryotic viperins produce a set of modified ribonucleotides that include ddhCTP, ddh-guanosine triphosphate (ddhGTP) and ddh-uridine triphosphate (ddhUTP). We further show that prokaryotic viperins protect against T7 phage infection by inhibiting viral polymerase-dependent transcription, suggesting that it has an antiviral mechanism of action similar to that of animal viperin. Our results reveal a class of potential natural antiviral compounds produced by bacterial immune systems.", + "container-title": "Nature", + "DOI": "10.1038/s41586-020-2762-2", + "ISSN": "1476-4687", + "issue": "7840", + "language": "en", + "license": "2020 The Author(s), under exclusive licence to Springer Nature Limited", + "note": "number: 7840\npublisher: Nature Publishing Group", + "page": "120-124", + "source": "www-nature-com.proxy.insermbiblio.inist.fr", + "title": "Prokaryotic viperins produce diverse antiviral molecules", + "URL": "https://www.nature.com/articles/s41586-020-2762-2", + "volume": "589", + "author": [ + { + "family": "Bernheim", + "given": "Aude" + }, + { + "family": "Millman", + "given": "Adi" + }, + { + "family": "Ofir", + "given": "Gal" + }, + { + "family": "Meitav", + "given": "Gilad" + }, + { + "family": "Avraham", + "given": "Carmel" + }, + { + "family": "Shomar", + "given": "Helena" + }, + { + "family": "Rosenberg", + "given": "Masha M." + }, + { + "family": "Tal", + "given": "Nir" + }, + { + "family": "Melamed", + "given": "Sarah" + }, + { + "family": "Amitai", + "given": "Gil" + }, + { + "family": "Sorek", + "given": "Rotem" + } + ], + "accessed": { + "date-parts": [ + [ + "2023", + 1, + 18 + ] + ] + }, + "issued": { + "date-parts": [ + [ + "2021", + 1 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/NWU5G7HD", + "type": "article-journal", + "abstract": "Pf prophages are ssDNA filamentous prophages that are prevalent among various Pseudomonas aeruginosa strains. The genomes of Pf prophages contain not only core genes encoding functions involved in phage replication, structure and assembly but also accessory genes. By studying the accessory genes in the Pf4 prophage in P. aeruginosa PAO1, we provided experimental evidence to demonstrate that PA0729 and the upstream ORF Rorf0727 near the right attachment site of Pf4 form a type II toxin/antitoxin (TA) pair. Importantly, we found that the deletion of the toxin gene PA0729 greatly increased Pf4 phage production. We thus suggest the toxin PA0729 be named PfiT for Pf4 inhibition toxin and Rorf0727 be named PfiA for PfiT antitoxin. The PfiT toxin directly binds to PfiA and functions as a corepressor of PfiA for the TA operon. The PfiAT complex exhibited autoregulation by binding to a palindrome (5'-AATTCN5 GTTAA-3') overlapping the -35 region of the TA operon. The deletion of pfiT disrupted TA autoregulation and activated pfiA expression. Additionally, the deletion of pfiT also activated the expression of the replication initiation factor gene PA0727. Moreover, the Pf4 phage released from the pfiT deletion mutant overcame the immunity provided by the phage repressor Pf4r. Therefore, this study reveals that the TA systems in Pf prophages can regulate phage production and phage immunity, providing new insights into the function of TAs in mobile genetic elements.", + "container-title": "Microbial Biotechnology", + "DOI": "10.1111/1751-7915.13570", + "ISSN": "1751-7915", + "issue": "4", + "journalAbbreviation": "Microb Biotechnol", + "language": "eng", + "note": "PMID: 32246813\nPMCID: PMC7264888", + "page": "1132-1144", + "source": "PubMed", + "title": "Prophage encoding toxin/antitoxin system PfiT/PfiA inhibits Pf4 production in Pseudomonas aeruginosa", + "volume": "13", + "author": [ + { + "family": "Li", + "given": "Yangmei" + }, + { + "family": "Liu", + "given": "Xiaoxiao" + }, + { + "family": "Tang", + "given": "Kaihao" + }, + { + "family": "Wang", + "given": "Weiquan" + }, + { + "family": "Guo", + "given": "Yunxue" + }, + { + "family": "Wang", + "given": "Xiaoxue" + } + ], + "issued": { + "date-parts": [ + [ + "2020", + 7 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/UCAAND5Z", + "type": "article-journal", + "abstract": "Bacteria carry diverse genetic systems to defend against viral infection, some of which are found within prophages where they inhibit competing viruses. Phage satellites pose additional pressures on phages by hijacking key viral elements to their own benefit. Here, we show that E. coli P2-like phages and their parasitic P4-like satellites carry hotspots of genetic variation containing reservoirs of anti-phage systems. We validate the activity of diverse systems and describe PARIS, an abortive infection system triggered by a phage-encoded anti-restriction protein. Antiviral hotspots participate in inter-viral competition and shape dynamics between the bacterial host, P2-like phages, and P4-like satellites. Notably, the anti-phage activity of satellites can benefit the helper phage during competition with virulent phages, turning a parasitic relationship into a mutualistic one. Anti-phage hotspots are present across distant species and constitute a substantial source of systems that participate in the competition between mobile genetic elements.", + "container-title": "Cell Host & Microbe", + "DOI": "10.1016/j.chom.2022.02.018", + "ISSN": "1931-3128", + "issue": "5", + "journalAbbreviation": "Cell Host & Microbe", + "language": "en", + "page": "740-753.e5", + "source": "ScienceDirect", + "title": "Phages and their satellites encode hotspots of antiviral systems", + "URL": "https://www.sciencedirect.com/science/article/pii/S1931312822001044", + "volume": "30", + "author": [ + { + "family": "Rousset", + "given": "François" + }, + { + "family": "Depardieu", + "given": "Florence" + }, + { + "family": "Miele", + "given": "Solange" + }, + { + "family": "Dowding", + "given": "Julien" + }, + { + "family": "Laval", + "given": "Anne-Laure" + }, + { + "family": "Lieberman", + "given": "Erica" + }, + { + "family": "Garry", + "given": "Daniel" + }, + { + "family": "Rocha", + "given": "Eduardo P. C." + }, + { + "family": "Bernheim", + "given": "Aude" + }, + { + "family": "Bikard", + "given": "David" + } + ], + "accessed": { + "date-parts": [ + [ + "2023", + 1, + 18 + ] + ] + }, + "issued": { + "date-parts": [ + [ + "2022", + 5, + 11 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/79JYXDGG", + "type": "article-journal", + "abstract": "Temperate phages are pervasive in bacterial genomes, existing as vertically inherited islands termed prophages. Prophages are vulnerable to predation of their host bacterium by exogenous phages. Here, we identify BstA, a family of prophage-encoded phage-defense proteins in diverse Gram-negative bacteria. BstA localizes to sites of exogenous phage DNA replication and mediates abortive infection, suppressing the competing phage epidemic. During lytic replication, the BstA-encoding prophage is not itself inhibited by BstA due to self-immunity conferred by the anti-BstA (aba) element, a short stretch of DNA within the bstA locus. Inhibition of phage replication by distinct BstA proteins from Salmonella, Klebsiella, and Escherichia prophages is generally interchangeable, but each possesses a cognate aba element. The specificity of the aba element ensures that immunity is exclusive to the replicating prophage, preventing exploitation by variant BstA-encoding phages. The BstA protein allows prophages to defend host cells against exogenous phage attack without sacrificing the ability to replicate lytically.", + "container-title": "Cell Host & Microbe", + "DOI": "10.1016/j.chom.2021.09.002", + "ISSN": "1934-6069", + "issue": "11", + "journalAbbreviation": "Cell Host Microbe", + "language": "eng", + "note": "PMID: 34597593\nPMCID: PMC8585504", + "page": "1620-1633.e8", + "source": "PubMed", + "title": "Prophages encode phage-defense systems with cognate self-immunity", + "volume": "29", + "author": [ + { + "family": "Owen", + "given": "Siân V." + }, + { + "family": "Wenner", + "given": "Nicolas" + }, + { + "family": "Dulberger", + "given": "Charles L." + }, + { + "family": "Rodwell", + "given": "Ella V." + }, + { + "family": "Bowers-Barnard", + "given": "Arthur" + }, + { + "family": "Quinones-Olvera", + "given": "Natalia" + }, + { + "family": "Rigden", + "given": "Daniel J." + }, + { + "family": "Rubin", + "given": "Eric J." + }, + { + "family": "Garner", + "given": "Ethan C." + }, + { + "family": "Baym", + "given": "Michael" + }, + { + "family": "Hinton", + "given": "Jay C. D." + } + ], + "issued": { + "date-parts": [ + [ + "2021", + 11, + 10 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/SFYPV4PG", + "type": "article-journal", + "abstract": "Temperate phages are common, and prophages are abundant residents of sequenced bacterial genomes. Mycobacteriophages are viruses that infect mycobacterial hosts including Mycobacterium tuberculosis and Mycobacterium smegmatis, encompass substantial genetic diversity and are commonly temperate. Characterization of ten Cluster N temperate mycobacteriophages revealed at least five distinct prophage-expressed viral defence systems that interfere with the infection of lytic and temperate phages that are either closely related (homotypic defence) or unrelated (heterotypic defence) to the prophage. Target specificity is unpredictable, ranging from a single target phage to one-third of those tested. The defence systems include a single-subunit restriction system, a heterotypic exclusion system and a predicted (p)ppGpp synthetase, which blocks lytic phage growth, promotes bacterial survival and enables efficient lysogeny. The predicted (p)ppGpp synthetase coded by the Phrann prophage defends against phage Tweety infection, but Tweety codes for a tetrapeptide repeat protein, gp54, which acts as a highly effective counter-defence system. Prophage-mediated viral defence offers an efficient mechanism for bacterial success in host–virus dynamics, and counter-defence promotes phage co-evolution.", + "container-title": "Nature Microbiology", + "DOI": "10.1038/nmicrobiol.2016.251", + "ISSN": "2058-5276", + "issue": "3", + "journalAbbreviation": "Nat Microbiol", + "language": "en", + "license": "2017 Macmillan Publishers Limited", + "note": "number: 3\npublisher: Nature Publishing Group", + "page": "1-13", + "source": "www-nature-com.proxy.insermbiblio.inist.fr", + "title": "Prophage-mediated defence against viral attack and viral counter-defence", + "URL": "https://www.nature.com/articles/nmicrobiol2016251", + "volume": "2", + "author": [ + { + "family": "Dedrick", + "given": "Rebekah M." + }, + { + "family": "Jacobs-Sera", + "given": "Deborah" + }, + { + "family": "Bustamante", + "given": "Carlos A. Guerrero" + }, + { + "family": "Garlena", + "given": "Rebecca A." + }, + { + "family": "Mavrich", + "given": "Travis N." + }, + { + "family": "Pope", + "given": "Welkin H." + }, + { + "family": "Reyes", + "given": "Juan C. Cervantes" + }, + { + "family": "Russell", + "given": "Daniel A." + }, + { + "family": "Adair", + "given": "Tamarah" + }, + { + "family": "Alvey", + "given": "Richard" + }, + { + "family": "Bonilla", + "given": "J. Alfred" + }, + { + "family": "Bricker", + "given": "Jerald S." + }, + { + "family": "Brown", + "given": "Bryony R." + }, + { + "family": "Byrnes", + "given": "Deanna" + }, + { + "family": "Cresawn", + "given": "Steven G." + }, + { + "family": "Davis", + "given": "William B." + }, + { + "family": "Dickson", + "given": "Leon A." + }, + { + "family": "Edgington", + "given": "Nicholas P." + }, + { + "family": "Findley", + "given": "Ann M." + }, + { + "family": "Golebiewska", + "given": "Urszula" + }, + { + "family": "Grose", + "given": "Julianne H." + }, + { + "family": "Hayes", + "given": "Cory F." + }, + { + "family": "Hughes", + "given": "Lee E." + }, + { + "family": "Hutchison", + "given": "Keith W." + }, + { + "family": "Isern", + "given": "Sharon" + }, + { + "family": "Johnson", + "given": "Allison A." + }, + { + "family": "Kenna", + "given": "Margaret A." + }, + { + "family": "Klyczek", + "given": "Karen K." + }, + { + "family": "Mageeney", + "given": "Catherine M." + }, + { + "family": "Michael", + "given": "Scott F." + }, + { + "family": "Molloy", + "given": "Sally D." + }, + { + "family": "Montgomery", + "given": "Matthew T." + }, + { + "family": "Neitzel", + "given": "James" + }, + { + "family": "Page", + "given": "Shallee T." + }, + { + "family": "Pizzorno", + "given": "Marie C." + }, + { + "family": "Poxleitner", + "given": "Marianne K." + }, + { + "family": "Rinehart", + "given": "Claire A." + }, + { + "family": "Robinson", + "given": "Courtney J." + }, + { + "family": "Rubin", + "given": "Michael R." + }, + { + "family": "Teyim", + "given": "Joseph N." + }, + { + "family": "Vazquez", + "given": "Edwin" + }, + { + "family": "Ware", + "given": "Vassie C." + }, + { + "family": "Washington", + "given": "Jacqueline" + }, + { + "family": "Hatfull", + "given": "Graham F." + } + ], + "accessed": { + "date-parts": [ + [ + "2023", + 1, + 18 + ] + ] + }, + "issued": { + "date-parts": [ + [ + "2017", + 1, + 9 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/YY5DKE53", + "type": "article-journal", + "abstract": "The conserved bacterial protein RloC, a distant homologue of the tRNA(Lys) anticodon nuclease (ACNase) PrrC, is shown here to act as a wobble nucleotide-excising and Zn(++)-responsive tRNase. The more familiar PrrC is silenced by a genetically linked type I DNA restriction-modification (R-M) enzyme, activated by a phage anti-DNA restriction factor and counteracted by phage tRNA repair enzymes. RloC shares PrrC's ABC ATPase motifs and catalytic ACNase triad but features a distinct zinc-hook/coiled-coil insert that renders its ATPase domain similar to Rad50 and related DNA repair proteins. Geobacillus kaustophilus RloC expressed in Escherichia coli exhibited ACNase activity that differed from PrrC's in substrate preference and ability to excise the wobble nucleotide. The latter specificity could impede reversal by phage tRNA repair enzymes and account perhaps for RloC's more frequent occurrence. Mutagenesis and functional assays confirmed RloC's catalytic triad assignment and implicated its zinc hook in regulating the ACNase function. Unlike PrrC, RloC is rarely linked to a type I R-M system but other genomic attributes suggest their possible interaction in trans. As DNA damage alleviates type I DNA restriction, we further propose that these related perturbations prompt RloC to disable translation and thus ward off phage escaping DNA restriction during the recovery from DNA damage.", + "container-title": "Molecular Microbiology", + "DOI": "10.1111/j.1365-2958.2008.06387.x", + "ISSN": "1365-2958", + "issue": "6", + "journalAbbreviation": "Mol Microbiol", + "language": "eng", + "note": "PMID: 18681940\nPMCID: PMC2610378", + "page": "1560-1574", + "source": "PubMed", + "title": "RloC: a wobble nucleotide-excising and zinc-responsive bacterial tRNase", + "title-short": "RloC", + "volume": "69", + "author": [ + { + "family": "Davidov", + "given": "Elena" + }, + { + "family": "Kaufmann", + "given": "Gabriel" + } + ], + "issued": { + "date-parts": [ + [ + "2008", + 9 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/5ADKN25B", + "type": "article-journal", + "abstract": "Argonaute proteins use single-stranded RNA or DNA guides to target complementary nucleic acids. This allows eukaryotic Argonaute proteins to mediate RNA interference and long prokaryotic Argonaute proteins to interfere with invading nucleic acids. The function and mechanisms of the phylogenetically distinct short prokaryotic Argonaute proteins remain poorly understood. We demonstrate that short prokaryotic Argonaute and the associated TIR-APAZ (SPARTA) proteins form heterodimeric complexes. Upon guide RNA-mediated target DNA binding, four SPARTA heterodimers form oligomers in which TIR domain-mediated NAD(P)ase activity is unleashed. When expressed in Escherichia coli, SPARTA is activated in the presence of highly transcribed multicopy plasmid DNA, which causes cell death through NAD(P)+ depletion. This results in the removal of plasmid-invaded cells from bacterial cultures. Furthermore, we show that SPARTA can be repurposed for the programmable detection of DNA sequences. In conclusion, our work identifies SPARTA as a prokaryotic immune system that reduces cell viability upon RNA-guided detection of invading DNA.", + "container-title": "Cell", + "DOI": "10.1016/j.cell.2022.03.012", + "ISSN": "0092-8674", + "issue": "9", + "journalAbbreviation": "Cell", + "language": "en", + "page": "1471-1486.e19", + "source": "ScienceDirect", + "title": "Short prokaryotic Argonaute systems trigger cell death upon detection of invading DNA", + "URL": "https://www.sciencedirect.com/science/article/pii/S0092867422003154", + "volume": "185", + "author": [ + { + "family": "Koopal", + "given": "Balwina" + }, + { + "family": "Potocnik", + "given": "Ana" + }, + { + "family": "Mutte", + "given": "Sumanth K." + }, + { + "family": "Aparicio-Maldonado", + "given": "Cristian" + }, + { + "family": "Lindhoud", + "given": "Simon" + }, + { + "family": "Vervoort", + "given": "Jacques J. M." + }, + { + "family": "Brouns", + "given": "Stan J. J." + }, + { + "family": "Swarts", + "given": "Daan C." + } + ], + "accessed": { + "date-parts": [ + [ + "2023", + 1, + 18 + ] + ] + }, + "issued": { + "date-parts": [ + [ + "2022", + 4, + 28 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/QUFZ9JNK", + "type": "article-journal", + "abstract": "Toxin-antitoxin (TA) systems are widespread in bacteria, but their activation mechanisms and bona fide targets remain largely unknown. Here, we characterize a type III TA system, toxIN, that protects E. coli against multiple bacteriophages, including T4. Using RNA sequencing, we find that the endoribonuclease ToxN is activated following T4 infection and blocks phage development primarily by cleaving viral mRNAs and inhibiting their translation. ToxN activation arises from T4-induced shutoff of host transcription, specifically of toxIN, leading to loss of the intrinsically unstable toxI antitoxin. Transcriptional shutoff is necessary and sufficient for ToxN activation. Notably, toxIN does not strongly protect against another phage, T7, which incompletely blocks host transcription. Thus, our results reveal a critical trade-off in blocking host transcription: it helps phage commandeer host resources but can activate potent defense systems. More generally, our results now reveal the native targets of an RNase toxin and activation mechanism of a phage-defensive TA system.", + "container-title": "Molecular Cell", + "DOI": "10.1016/j.molcel.2021.03.027", + "ISSN": "1097-4164", + "issue": "11", + "journalAbbreviation": "Mol Cell", + "language": "eng", + "note": "PMID: 33838104\nPMCID: PMC8284924", + "page": "2361-2373.e9", + "source": "PubMed", + "title": "Shutoff of host transcription triggers a toxin-antitoxin system to cleave phage RNA and abort infection", + "volume": "81", + "author": [ + { + "family": "Guegler", + "given": "Chantal K." + }, + { + "family": "Laub", + "given": "Michael T." + } + ], + "issued": { + "date-parts": [ + [ + "2021", + 6, + 3 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/E89XTIWG", + "type": "article-journal", + "abstract": "Bacteria have evolved diverse mechanisms to fend off predation by bacteriophages. We previously identified the Dnd system, which uses DndABCDE to insert sulfur into the DNA backbone as a double-stranded phosphorothioate (PT) modification, and DndFGH, a restriction component. Here, we describe an unusual SspABCD–SspE PT system in Vibrio cyclitrophicus, Escherichia coli and Streptomyces yokosukanensis, which has distinct genetic organization, biochemical functions and phenotypic behaviour. SspABCD confers single-stranded and high-frequency PTs with SspB acting as a nickase and possibly introducing nicks to facilitate sulfur incorporation. Strikingly, SspABCD coupled with SspE provides protection against phages in unusual ways: (1) SspE senses sequence-specific PTs by virtue of its PT-stimulated NTPase activity to exert its anti-phage activity, and (2) SspE inhibits phage propagation by introducing nicking damage to impair phage DNA replication. These results not only expand our knowledge about the diversity and functions of DNA PT modification but also enhance our understanding of the known arsenal of defence systems.", + "container-title": "Nature Microbiology", + "DOI": "10.1038/s41564-020-0700-6", + "ISSN": "2058-5276", + "issue": "7", + "journalAbbreviation": "Nat Microbiol", + "language": "en", + "license": "2020 The Author(s), under exclusive licence to Springer Nature Limited", + "note": "number: 7\npublisher: Nature Publishing Group", + "page": "917-928", + "source": "www-nature-com.proxy.insermbiblio.inist.fr", + "title": "SspABCD–SspE is a phosphorothioation-sensing bacterial defence system with broad anti-phage activities", + "URL": "https://www.nature.com/articles/s41564-020-0700-6", + "volume": "5", + "author": [ + { + "family": "Xiong", + "given": "Xiaolin" + }, + { + "family": "Wu", + "given": "Geng" + }, + { + "family": "Wei", + "given": "Yue" + }, + { + "family": "Liu", + "given": "Liqiong" + }, + { + "family": "Zhang", + "given": "Yubing" + }, + { + "family": "Su", + "given": "Rui" + }, + { + "family": "Jiang", + "given": "Xianyue" + }, + { + "family": "Li", + "given": "Mengxue" + }, + { + "family": "Gao", + "given": "Haiyan" + }, + { + "family": "Tian", + "given": "Xihao" + }, + { + "family": "Zhang", + "given": "Yizhou" + }, + { + "family": "Hu", + "given": "Li" + }, + { + "family": "Chen", + "given": "Si" + }, + { + "family": "Tang", + "given": "You" + }, + { + "family": "Jiang", + "given": "Susu" + }, + { + "family": "Huang", + "given": "Ruolin" + }, + { + "family": "Li", + "given": "Zhiqiang" + }, + { + "family": "Wang", + "given": "Yunfu" + }, + { + "family": "Deng", + "given": "Zixin" + }, + { + "family": "Wang", + "given": "Jiawei" + }, + { + "family": "Dedon", + "given": "Peter C." + }, + { + "family": "Chen", + "given": "Shi" + }, + { + "family": "Wang", + "given": "Lianrong" + } + ], + "accessed": { + "date-parts": [ + [ + "2023", + 1, + 18 + ] + ] + }, + "issued": { + "date-parts": [ + [ + "2020", + 7 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/J3LUKT9B", + "type": "article-journal", + "abstract": "Unlike nucleobase modifications in canonical restriction-modification systems, DNA phosphorothioate (PT) epigenetic modification occurs in the DNA sugar-phosphate backbone when the nonbridging oxygen is replaced by sulfur in a double-stranded (ds) or single-stranded (ss) manner governed by DndABCDE or SspABCD, respectively. SspABCD coupled with SspE constitutes a defense barrier in which SspE depends on sequence-specific PT modifications to exert its antiphage activity. Here, we identified a new type of ssDNA PT-based SspABCD-SspFGH defense system capable of providing protection against phages through a mode of action different from that of SspABCD-SspE. We provide further evidence that SspFGH damages non-PT-modified DNA and exerts antiphage activity by suppressing phage DNA replication. Despite their different defense mechanisms, SspFGH and SspE are compatible and pair simultaneously with one SspABCD module, greatly enhancing the protection against phages. Together with the observation that the sspBCD-sspFGH cassette is widely distributed in bacterial genomes, this study highlights the diversity of PT-based defense barriers and expands our knowledge of the arsenal of phage defense mechanisms.IMPORTANCE We recently found that SspABCD, catalyzing single-stranded (ss) DNA phosphorothioate (PT) modification, coupled with SspE provides protection against phage infection. SspE performs both PT-simulated NTPase and DNA-nicking nuclease activities to damage phage DNA, rendering SspA-E a PT-sensing defense system. To our surprise, ssDNA PT modification can also pair with a newly identified 3-gene sspFGH cassette to fend off phage infection with a different mode of action from that of SspE. Interestingly, both SspFGH and SspE can pair with the same SspABCD module for antiphage defense, and their combination provides Escherichia coli JM109 with additive phage resistance up to 105-fold compared to that for either barrier alone. This agrees with our observation that SspFGH and SspE coexist in 36 bacterial genomes, highlighting the diversity of the gene contents and molecular mechanisms of PT-based defense systems.", + "container-title": "mBio", + "DOI": "10.1128/mBio.00613-21", + "ISSN": "2150-7511", + "issue": "2", + "journalAbbreviation": "mBio", + "language": "eng", + "note": "PMID: 33906925\nPMCID: PMC8092258", + "page": "e00613-21", + "source": "PubMed", + "title": "SspABCD-SspFGH Constitutes a New Type of DNA Phosphorothioate-Based Bacterial Defense System", + "volume": "12", + "author": [ + { + "family": "Wang", + "given": "Shiwei" + }, + { + "family": "Wan", + "given": "Mengping" + }, + { + "family": "Huang", + "given": "Ruolin" + }, + { + "family": "Zhang", + "given": "Yujing" + }, + { + "family": "Xie", + "given": "Yuqing" + }, + { + "family": "Wei", + "given": "Yue" + }, + { + "family": "Ahmad", + "given": "Mustafa" + }, + { + "family": "Wu", + "given": "Dan" + }, + { + "family": "Hong", + "given": "Yue" + }, + { + "family": "Deng", + "given": "Zixin" + }, + { + "family": "Chen", + "given": "Shi" + }, + { + "family": "Li", + "given": "Zhiqiang" + }, + { + "family": "Wang", + "given": "Lianrong" + } + ], + "issued": { + "date-parts": [ + [ + "2021", + 4, + 27 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/5RKUQC5M", + "type": "article-journal", + "abstract": "Stimulator of interferon genes (STING) is a receptor in human cells that senses foreign cyclic dinucleotides that are released during bacterial infection and in endogenous cyclic GMP–AMP signalling during viral infection and anti-tumour immunity1–5. STING shares no structural homology with other known signalling proteins6–9, which has limited attempts at functional analysis and prevented explanation of the origin of cyclic dinucleotide signalling in mammalian innate immunity. Here we reveal functional STING homologues encoded within prokaryotic defence islands, as well as a conserved mechanism of signal activation. Crystal structures of bacterial STING define a minimal homodimeric scaffold that selectively responds to cyclic di-GMP synthesized by a neighbouring cGAS/DncV-like nucleotidyltransferase (CD-NTase) enzyme. Bacterial STING domains couple the recognition of cyclic dinucleotides with the formation of protein filaments to drive oligomerization of TIR effector domains and rapid NAD+ cleavage. We reconstruct the evolutionary events that followed the acquisition of STING into metazoan innate immunity, and determine the structure of a full-length TIR–STING fusion from the Pacific oyster Crassostrea gigas. Comparative structural analysis demonstrates how metazoan-specific additions to the core STING scaffold enabled a switch from direct effector function to regulation of antiviral transcription. Together, our results explain the mechanism of STING-dependent signalling and reveal the conservation of a functional cGAS–STING pathway in prokaryotic defence against bacteriophages.", + "container-title": "Nature", + "DOI": "10.1038/s41586-020-2719-5", + "ISSN": "1476-4687", + "issue": "7829", + "language": "en", + "license": "2020 The Author(s), under exclusive licence to Springer Nature Limited", + "note": "number: 7829\npublisher: Nature Publishing Group", + "page": "429-433", + "source": "www-nature-com.proxy.insermbiblio.inist.fr", + "title": "STING cyclic dinucleotide sensing originated in bacteria", + "URL": "https://www.nature.com/articles/s41586-020-2719-5", + "volume": "586", + "author": [ + { + "family": "Morehouse", + "given": "Benjamin R." + }, + { + "family": "Govande", + "given": "Apurva A." + }, + { + "family": "Millman", + "given": "Adi" + }, + { + "family": "Keszei", + "given": "Alexander F. A." + }, + { + "family": "Lowey", + "given": "Brianna" + }, + { + "family": "Ofir", + "given": "Gal" + }, + { + "family": "Shao", + "given": "Sichen" + }, + { + "family": "Sorek", + "given": "Rotem" + }, + { + "family": "Kranzusch", + "given": "Philip J." + } + ], + "accessed": { + "date-parts": [ + [ + "2023", + 1, + 18 + ] + ] + }, + "issued": { + "date-parts": [ + [ + "2020", + 10 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/63TQY82F", + "type": "article-journal", + "abstract": "In the evolutionary arms race against phage, bacteria have assembled a diverse arsenal of antiviral immune strategies. While the recently discovered DISARM (Defense Island System Associated with Restriction-Modification) systems can provide protection against a wide range of phage, the molecular mechanisms that underpin broad antiviral targeting but avoiding autoimmunity remain enigmatic. Here, we report cryo-EM structures of the core DISARM complex, DrmAB, both alone and in complex with an unmethylated phage DNA mimetic. These structures reveal that DrmAB core complex is autoinhibited by a trigger loop (TL) within DrmA and binding to DNA substrates containing a 5′ overhang dislodges the TL, initiating a long-range structural rearrangement for DrmAB activation. Together with structure-guided in vivo studies, our work provides insights into the mechanism of phage DNA recognition and specific activation of this widespread antiviral defense system.", + "container-title": "Nature Communications", + "DOI": "10.1038/s41467-022-30673-1", + "ISSN": "2041-1723", + "issue": "1", + "journalAbbreviation": "Nat Commun", + "language": "en", + "license": "2022 The Author(s)", + "note": "number: 1\npublisher: Nature Publishing Group", + "page": "2987", + "source": "www-nature-com.proxy.insermbiblio.inist.fr", + "title": "Structural basis for broad anti-phage immunity by DISARM", + "URL": "https://www.nature.com/articles/s41467-022-30673-1", + "volume": "13", + "author": [ + { + "family": "Bravo", + "given": "Jack P. K." + }, + { + "family": "Aparicio-Maldonado", + "given": "Cristian" + }, + { + "family": "Nobrega", + "given": "Franklin L." + }, + { + "family": "Brouns", + "given": "Stan J. J." + }, + { + "family": "Taylor", + "given": "David W." + } + ], + "accessed": { + "date-parts": [ + [ + "2023", + 1, + 18 + ] + ] + }, + "issued": { + "date-parts": [ + [ + "2022", + 5, + 27 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/29RK7NLP", + "type": "article-journal", + "abstract": "The arms race between bacteria and phages led to the development of sophisticated antiphage defense systems, including CRISPR-Cas and restriction-modification systems. Evidence suggests that known and unknown defense systems are located in \"defense islands\" in microbial genomes. Here, we comprehensively characterized the bacterial defensive arsenal by examining gene families that are clustered next to known defense genes in prokaryotic genomes. Candidate defense systems were systematically engineered and validated in model bacteria for their antiphage activities. We report nine previously unknown antiphage systems and one antiplasmid system that are widespread in microbes and strongly protect against foreign invaders. These include systems that adopted components of the bacterial flagella and condensin complexes. Our data also suggest a common, ancient ancestry of innate immunity components shared between animals, plants, and bacteria.", + "container-title": "Science (New York, N.Y.)", + "DOI": "10.1126/science.aar4120", + "ISSN": "1095-9203", + "issue": "6379", + "journalAbbreviation": "Science", + "language": "eng", + "note": "PMID: 29371424\nPMCID: PMC6387622", + "page": "eaar4120", + "source": "PubMed", + "title": "Systematic discovery of antiphage defense systems in the microbial pangenome", + "volume": "359", + "author": [ + { + "family": "Doron", + "given": "Shany" + }, + { + "family": "Melamed", + "given": "Sarah" + }, + { + "family": "Ofir", + "given": "Gal" + }, + { + "family": "Leavitt", + "given": "Azita" + }, + { + "family": "Lopatina", + "given": "Anna" + }, + { + "family": "Keren", + "given": "Mai" + }, + { + "family": "Amitai", + "given": "Gil" + }, + { + "family": "Sorek", + "given": "Rotem" + } + ], + "issued": { + "date-parts": [ + [ + "2018", + 3, + 2 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/3STQ6EEA", + "type": "article-journal", + "abstract": "Bacterial retrons consist of a reverse transcriptase (RT) and a contiguous non-coding RNA (ncRNA) gene. One third of annotated retrons carry additional open reading frames (ORFs), the contribution and significance of which in retron biology remains to be determined. In this study we developed a computational pipeline for the systematic prediction of genes specifically associated with retron RTs based on a previously reported large dataset representative of the diversity of prokaryotic RTs. We found that retrons generally comprise a tripartite system composed of the ncRNA, the RT and an additional protein or RT-fused domain with diverse enzymatic functions. These retron systems are highly modular, and their components have coevolved to different extents. Based on the additional module, we classified retrons into 13 types, some of which include additional variants. Our findings provide a basis for future studies on the biological function of retrons and for expanding their biotechnological applications.", + "container-title": "Nucleic Acids Research", + "DOI": "10.1093/nar/gkaa1149", + "ISSN": "0305-1048", + "issue": "22", + "journalAbbreviation": "Nucleic Acids Research", + "page": "12632-12647", + "source": "Silverchair", + "title": "Systematic prediction of genes functionally associated with bacterial retrons and classification of the encoded tripartite systems", + "URL": "https://doi.org/10.1093/nar/gkaa1149", + "volume": "48", + "author": [ + { + "family": "Mestre", + "given": "Mario RodrÃguez" + }, + { + "family": "González-Delgado", + "given": "Alejandro" + }, + { + "family": "Gutiérrez-Rus", + "given": "Luis I" + }, + { + "family": "MartÃnez-Abarca", + "given": "Francisco" + }, + { + "family": "Toro", + "given": "Nicolás" + } + ], + "accessed": { + "date-parts": [ + [ + "2023", + 1, + 18 + ] + ] + }, + "issued": { + "date-parts": [ + [ + "2020", + 12, + 16 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/MHG9MTJL", + "type": "article-journal", + "abstract": "Lipoprotein Ltp encoded by temperate Streptococcus thermophilus phage TP-J34 is the prototype of the wide-spread family of host cell surface-exposed lipoproteins involved in superinfection exclusion (sie). When screening for other S. thermophilus phages expressing this type of lipoprotein, three temperate phages—TP-EW, TP-DSM20617, and TP-778—were isolated. In this communication we present the total nucleotide sequences of TP-J34 and TP-778L. For TP-EW, a phage almost identical to TP-J34, besides the ltp gene only the two regions of deviation from TP-J34 DNA were analyzed: the gene encoding the tail protein causing an assembly defect in TP-J34 and the gene encoding the lysin, which in TP-EW contains an intron. For TP-DSM20617 only the sequence of the lysogeny module containing the ltp gene was determined. The region showed high homology to the same region of TP-778. For TP-778 we could show that absence of the attR region resulted in aberrant excision of phage DNA. The amino acid sequence of mature LtpTP-EW was shown to be identical to that of mature LtpTP-J34, whereas the amino acid sequence of mature LtpTP-778 was shown to differ from mature LtpTP-J34 in eight amino acid positions. LtpTP-DSM20617 was shown to differ from LtpTP-778 in just one amino acid position. In contrast to LtpTP-J34, LtpTP-778 did not affect infection of lactococcal phage P008 instead increased activity against phage P001 was noticed.", + "container-title": "Frontiers in Microbiology", + "ISSN": "1664-302X", + "source": "Frontiers", + "title": "Temperate Streptococcus thermophilus phages expressing superinfection exclusion proteins of the Ltp type", + "URL": "https://www.frontiersin.org/articles/10.3389/fmicb.2014.00098", + "volume": "5", + "author": [ + { + "family": "Ali", + "given": "Yahya" + }, + { + "family": "Koberg", + "given": "Sabrina" + }, + { + "family": "Heßner", + "given": "Stefanie" + }, + { + "family": "Sun", + "given": "Xingmin" + }, + { + "family": "Rabe", + "given": "Björn" + }, + { + "family": "Back", + "given": "Angela" + }, + { + "family": "Neve", + "given": "Horst" + }, + { + "family": "Heller", + "given": "Knut" + } + ], + "accessed": { + "date-parts": [ + [ + "2023", + 1, + 18 + ] + ] + }, + "issued": { + "date-parts": [ + [ + "2014" + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/XF45II9V", + "type": "article-journal", + "abstract": "Toxin-antitoxin (TA) systems are broadly distributed, yet poorly conserved, genetic elements whose biological functions are unclear and controversial. Some TA systems may provide bacteria with immunity to infection by their ubiquitous viral predators, bacteriophages. To identify such TA systems, we searched bioinformatically for those frequently encoded near known phage defence genes in bacterial genomes. This search identified homologues of DarTG, a recently discovered family of TA systems whose biological functions and natural activating conditions were unclear. Representatives from two different subfamilies, DarTG1 and DarTG2, strongly protected E. coli MG1655 against different phages. We demonstrate that for each system, infection with either RB69 or T5 phage, respectively, triggers release of the DarT toxin, a DNA ADP-ribosyltransferase, that then modifies viral DNA and prevents replication, thereby blocking the production of mature virions. Further, we isolated phages that have evolved to overcome DarTG defence either through mutations to their DNA polymerase or to an anti-DarT factor, gp61.2, encoded by many T-even phages. Collectively, our results indicate that phage defence may be a common function for TA systems and reveal the mechanism by which DarTG systems inhibit phage infection.", + "container-title": "Nature Microbiology", + "DOI": "10.1038/s41564-022-01153-5", + "ISSN": "2058-5276", + "issue": "7", + "journalAbbreviation": "Nat Microbiol", + "language": "en", + "license": "2022 The Author(s), under exclusive licence to Springer Nature Limited", + "note": "number: 7\npublisher: Nature Publishing Group", + "page": "1028-1040", + "source": "www-nature-com.proxy.insermbiblio.inist.fr", + "title": "The DarTG toxin-antitoxin system provides phage defence by ADP-ribosylating viral DNA", + "URL": "https://www.nature.com/articles/s41564-022-01153-5", + "volume": "7", + "author": [ + { + "family": "LeRoux", + "given": "Michele" + }, + { + "family": "Srikant", + "given": "Sriram" + }, + { + "family": "Teodoro", + "given": "Gabriella I. C." + }, + { + "family": "Zhang", + "given": "Tong" + }, + { + "family": "Littlehale", + "given": "Megan L." + }, + { + "family": "Doron", + "given": "Shany" + }, + { + "family": "Badiee", + "given": "Mohsen" + }, + { + "family": "Leung", + "given": "Anthony K. L." + }, + { + "family": "Sorek", + "given": "Rotem" + }, + { + "family": "Laub", + "given": "Michael T." + } + ], + "accessed": { + "date-parts": [ + [ + "2023", + 1, + 18 + ] + ] + }, + "issued": { + "date-parts": [ + [ + "2022", + 7 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/2K2JIQ25", + "type": "article-journal", + "abstract": "The roles of restriction-modification (R-M) systems in providing immunity against horizontal gene transfer (HGT) and in stabilizing mobile genetic elements (MGEs) have been much debated. However, few studies have precisely addressed the distribution of these systems in light of HGT, its mechanisms and its vectors. We analyzed the distribution of R-M systems in 2261 prokaryote genomes and found their frequency to be strongly dependent on the presence of MGEs, CRISPR-Cas systems, integrons and natural transformation. Yet R-M systems are rare in plasmids, in prophages and nearly absent from other phages. Their abundance depends on genome size for small genomes where it relates with HGT but saturates at two occurrences per genome. Chromosomal R-M systems might evolve under cycles of purifying and relaxed selection, where sequence conservation depends on the biochemical activity and complexity of the system and total gene loss is frequent. Surprisingly, analysis of 43 pan-genomes suggests that solitary R-M genes rarely arise from the degradation of R-M systems. Solitary genes are transferred by large MGEs, whereas complete systems are more frequently transferred autonomously or in small MGEs. Our results suggest means of testing the roles for R-M systems and their associations with MGEs.", + "container-title": "Nucleic Acids Research", + "DOI": "10.1093/nar/gku734", + "ISSN": "1362-4962", + "issue": "16", + "journalAbbreviation": "Nucleic Acids Res", + "language": "eng", + "note": "PMID: 25120263\nPMCID: PMC4176335", + "page": "10618-10631", + "source": "PubMed", + "title": "The interplay of restriction-modification systems with mobile genetic elements and their prokaryotic hosts", + "volume": "42", + "author": [ + { + "family": "Oliveira", + "given": "Pedro H." + }, + { + "family": "Touchon", + "given": "Marie" + }, + { + "family": "Rocha", + "given": "Eduardo P. C." + } + ], + "issued": { + "date-parts": [ + [ + "2014" + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/VPH4CLBN", + "type": "article-journal", + "abstract": "The Lit protease in Escherichia coli K-12 strains induces cell death in response to bacteriophage T4 infection by cleaving translation elongation factor (EF) Tu and shutting down translation. Suicide of the cell is timed to the appearance late in the maturation of the phage of a short peptide sequence in the major head protein, the Gol peptide, which activates proteolysis. In the present work we demonstrate that the Gol peptide binds specifically to domains II and III of EF-Tu, creating the unique substrate for the Lit protease, which then cleaves domain I, the guanine nucleotide binding domain. The conformation of EF-Tu is important for binding and Lit cleavage, because both are sensitive to the identity of the bound nucleotide, with GDP being preferred over GTP. We propose that association of the T4 coat protein with EF-Tu plays a role in phage head assembly but that this association marks infected cells for suicide when Lit is present. Based on these data and recent observations on human immunodeficiency virus type 1 maturation, we speculate that associations between host translation factors and coat proteins may be integral to viral assembly in both prokaryotes and eukaryotes.", + "container-title": "The Journal of Biological Chemistry", + "DOI": "10.1074/jbc.M002546200", + "ISSN": "0021-9258", + "issue": "30", + "journalAbbreviation": "J Biol Chem", + "language": "eng", + "note": "PMID: 10801848", + "page": "23219-23226", + "source": "PubMed", + "title": "The major head protein of bacteriophage T4 binds specifically to elongation factor Tu", + "volume": "275", + "author": [ + { + "family": "Bingham", + "given": "R." + }, + { + "family": "Ekunwe", + "given": "S. I." + }, + { + "family": "Falk", + "given": "S." + }, + { + "family": "Snyder", + "given": "L." + }, + { + "family": "Kleanthous", + "given": "C." + } + ], + "issued": { + "date-parts": [ + [ + "2000", + 7, + 28 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/AEXKGV4K", + "type": "article-journal", + "abstract": "The rexA and rexB genes of bacteriophage lambda encode a two-component system that aborts lytic growth of bacterial viruses. Rex exclusion is characterized by termination of macromolecular synthesis, loss of active transport, the hydrolysis of ATP, and cell death. By analogy to colicins E1 and K, these results can be explained by depolarization of the cytoplasmic membrane. We have fractionated cells to determine the intracellular location of the RexB protein and made RexB-alkaline phosphatase fusions to analyze its membrane topology. The RexB protein appears to be a polytopic transmembrane protein. We suggest that RexB proteins form ion channels that, in response to lytic growth of bacteriophages, depolarize the cytoplasmic membrane. The Rex system requires a mechanism to prevent lambda itself from being excluded during lytic growth. We have determined that overexpression of RexB in lambda lysogens prevents the exclusion of both T4 rII mutants and lambda ren mutants. We suspect that overexpression of RexB is the basis for preventing self-exclusion following the induction of a lambda lysogen and that RexB overexpression is accomplished through transcriptional regulation.", + "container-title": "Genes & Development", + "DOI": "10.1101/gad.6.3.497", + "ISSN": "0890-9369", + "issue": "3", + "journalAbbreviation": "Genes Dev", + "language": "eng", + "note": "PMID: 1372278", + "page": "497-510", + "source": "PubMed", + "title": "The Rex system of bacteriophage lambda: tolerance and altruistic cell death", + "title-short": "The Rex system of bacteriophage lambda", + "volume": "6", + "author": [ + { + "family": "Parma", + "given": "D. H." + }, + { + "family": "Snyder", + "given": "M." + }, + { + "family": "Sobolevski", + "given": "S." + }, + { + "family": "Nawroz", + "given": "M." + }, + { + "family": "Brody", + "given": "E." + }, + { + "family": "Gold", + "given": "L." + } + ], + "issued": { + "date-parts": [ + [ + "1992", + 3 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/9RHMKSLD", + "type": "article-journal", + "abstract": "Bacteriophage T4 multiples poorly in Escherichia coli strains carrying the defective prophage, e14; the e14 prophage contains the lit gene for late inhibitor of T4 in E. coli. The exclusion is caused by the interaction of the e14-encoded protein, Lit, with a short RNA or polypeptide sequence encoded by gol from within the major head protein gene of T4. The interaction between Lit and the gol product causes a severe inhibition of all translation and prevents the transcription of genes downstream of the gol site in the same transcription unit. However, it does not inhibit most transcription, nor does it inhibit replication or affect intracellular levels of ATP. Here we show that the interaction of gol with Lit causes the cleavage of translation elongation factor Tu (EF-Tu) in a region highly conserved from bacteria to humans. The depletion of EF-Tu is at least partly responsible for the inhibition of translation and the phage exclusion. The only other phage-exclusion system to be understood in any detail also attacks a highly conserved cellular component, suggesting that phage-exclusion systems may yield important reagents for studying cellular processes.", + "container-title": "Proceedings of the National Academy of Sciences of the United States of America", + "DOI": "10.1073/pnas.91.2.802", + "ISSN": "0027-8424", + "issue": "2", + "journalAbbreviation": "Proc Natl Acad Sci U S A", + "language": "eng", + "note": "PMID: 8290603\nPMCID: PMC43037", + "page": "802-806", + "source": "PubMed", + "title": "Translation elongation factor Tu cleaved by a phage-exclusion system", + "volume": "91", + "author": [ + { + "family": "Yu", + "given": "Y. T." + }, + { + "family": "Snyder", + "given": "L." + } + ], + "issued": { + "date-parts": [ + [ + "1994", + 1, + 18 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/DN45KDDY", + "type": "article-journal", + "abstract": "Horizontal gene transfer can trigger rapid shifts in bacterial evolution. Driven by a variety of mobile genetic elements—in particular bacteriophages and plasmids—the ability to share genes within and across species underpins the exceptional adaptability of bacteria. Nevertheless, invasive mobile genetic elements can also present grave risks to the host; bacteria have therefore evolved a vast array of defences against these elements1. Here we identify two plasmid defence systems conserved in the Vibrio cholerae El Tor strains responsible for the ongoing seventh cholera pandemic2–4. These systems, termed DdmABC and DdmDE, are encoded on two major pathogenicity islands that are a hallmark of current pandemic strains. We show that the modules cooperate to rapidly eliminate small multicopy plasmids by degradation. Moreover, the DdmABC system is widespread and can defend against bacteriophage infection by triggering cell suicide (abortive infection, or Abi). Notably, we go on to show that, through an Abi-like mechanism, DdmABC increases the burden of large low-copy-number conjugative plasmids, including a broad-host IncC multidrug resistance plasmid, which creates a fitness disadvantage that counterselects against plasmid-carrying cells. Our results answer the long-standing question of why plasmids, although abundant in environmental strains, are rare in pandemic strains; have implications for understanding the dissemination of antibiotic resistance plasmids; and provide insights into how the interplay between two defence systems has shaped the evolution of the most successful lineage of pandemic V. cholerae.", + "container-title": "Nature", + "DOI": "10.1038/s41586-022-04546-y", + "ISSN": "1476-4687", + "issue": "7905", + "language": "en", + "license": "2022 The Author(s), under exclusive licence to Springer Nature Limited", + "note": "number: 7905\npublisher: Nature Publishing Group", + "page": "323-329", + "source": "www-nature-com.proxy.insermbiblio.inist.fr", + "title": "Two defence systems eliminate plasmids from seventh pandemic Vibrio cholerae", + "URL": "https://www.nature.com/articles/s41586-022-04546-y", + "volume": "604", + "author": [ + { + "family": "Jaskólska", + "given": "Milena" + }, + { + "family": "Adams", + "given": "David W." + }, + { + "family": "Blokesch", + "given": "Melanie" + } + ], + "accessed": { + "date-parts": [ + [ + "2023", + 1, + 18 + ] + ] + }, + "issued": { + "date-parts": [ + [ + "2022", + 4 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/6Z5SWXLE", + "type": "article-journal", + "abstract": "Reverse transcriptases (RTs) are enzymes capable of synthesizing DNA using RNA as a template. Within the last few years, a burst of research has led to the discovery of novel prokaryotic RTs with diverse antiviral properties, such as DRTs (Defense-associated RTs), which belong to the so-called group of unknown RTs (UG) and are closely related to the Abortive Infection system (Abi) RTs. In this work, we performed a systematic analysis of UG and Abi RTs, increasing the number of UG/Abi members up to 42 highly diverse groups, most of which are predicted to be functionally associated with other gene(s) or domain(s). Based on this information, we classified these systems into three major classes. In addition, we reveal that most of these groups are associated with defense functions and/or mobile genetic elements, and demonstrate the antiphage role of four novel groups. Besides, we highlight the presence of one of these systems in novel families of human gut viruses infecting members of the Bacteroidetes and Firmicutes phyla. This work lays the foundation for a comprehensive and unified understanding of these highly diverse RTs with enormous biotechnological potential.", + "container-title": "Nucleic Acids Research", + "DOI": "10.1093/nar/gkac467", + "ISSN": "0305-1048", + "issue": "11", + "journalAbbreviation": "Nucleic Acids Research", + "page": "6084-6101", + "source": "Silverchair", + "title": "UG/Abi: a highly diverse family of prokaryotic reverse transcriptases associated with defense functions", + "title-short": "UG/Abi", + "URL": "https://doi.org/10.1093/nar/gkac467", + "volume": "50", + "author": [ + { + "family": "Mestre", + "given": "Mario RodrÃguez" + }, + { + "family": "Gao", + "given": "Linyi Alex" + }, + { + "family": "Shah", + "given": "Shiraz A" + }, + { + "family": "López-Beltrán", + "given": "Adrián" + }, + { + "family": "González-Delgado", + "given": "Alejandro" + }, + { + "family": "MartÃnez-Abarca", + "given": "Francisco" + }, + { + "family": "Iranzo", + "given": "Jaime" + }, + { + "family": "Redrejo-RodrÃguez", + "given": "Modesto" + }, + { + "family": "Zhang", + "given": "Feng" + }, + { + "family": "Toro", + "given": "Nicolás" + } + ], + "accessed": { + "date-parts": [ + [ + "2023", + 1, + 18 + ] + ] + }, + "issued": { + "date-parts": [ + [ + "2022", + 6, + 24 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/QAGXZYYT", + "type": "article-journal", + "abstract": "The phage growth limitation system of Streptomyces coelicolor A3(2) is an unusual bacteriophage defence mechanism. Progeny Ï•C31 phage from an initial infection are thought to be modified such that subsequent infections are attenuated in a Pgl(+) host but normal in a Pgl(-) strain. Earlier work identified four genes required for phage resistance by Pgl. Here we demonstrate that Pgl is an elaborate and novel phage restriction system that, in part, comprises a toxin/antitoxin system where PglX, a DNA methyltransferase is toxic in the absence of a functional PglZ. In addition, the ATPase activity of PglY and a protein kinase activity in PglW are shown to be essential for phage resistance by Pgl. We conclude that on infection of a Pgl(+) cell by bacteriophage Ï•C31, PglW transduces a signal, probably via phosphorylation, to other Pgl proteins resulting in the activation of the DNA methyltransferase, PglX and this leads to phage restriction.", + "container-title": "Virology", + "DOI": "10.1016/j.virol.2014.12.036", + "ISSN": "1096-0341", + "journalAbbreviation": "Virology", + "language": "eng", + "note": "PMID: 25592393\nPMCID: PMC4365076", + "page": "100-109", + "source": "PubMed", + "title": "The phage growth limitation system in Streptomyces coelicolor A(3)2 is a toxin/antitoxin system, comprising enzymes with DNA methyltransferase, protein kinase and ATPase activity", + "volume": "477", + "author": [ + { + "family": "Hoskisson", + "given": "Paul A." + }, + { + "family": "Sumby", + "given": "Paul" + }, + { + "family": "Smith", + "given": "Margaret C. M." + } + ], + "issued": { + "date-parts": [ + [ + "2015", + 3 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/CRU9XIGB", + "type": "article-journal", + "abstract": "Defence-associated sirtuins (DSRs) comprise a family of proteins that defend bacteria from phage infection via an unknown mechanism. These proteins are common in bacteria and harbour an N-terminal sirtuin (SIR2) domain. In this study we report that DSR proteins degrade nicotinamide adenine dinucleotide (NAD+) during infection, depleting the cell of this essential molecule and aborting phage propagation. Our data show that one of these proteins, DSR2, directly identifies phage tail tube proteins and then becomes an active NADase in Bacillus subtilis. Using a phage mating methodology that promotes genetic exchange between pairs of DSR2-sensitive and DSR2–resistant phages, we further show that some phages express anti-DSR2 proteins that bind and repress DSR2. Finally, we demonstrate that the SIR2 domain serves as an effector NADase in a diverse set of phage defence systems outside the DSR family. Our results establish the general role of SIR2 domains in bacterial immunity against phages.", + "container-title": "Nature Microbiology", + "DOI": "10.1038/s41564-022-01207-8", + "ISSN": "2058-5276", + "issue": "11", + "journalAbbreviation": "Nat Microbiol", + "language": "en", + "license": "2022 The Author(s), under exclusive licence to Springer Nature Limited", + "note": "number: 11\npublisher: Nature Publishing Group", + "page": "1849-1856", + "source": "www-nature-com.proxy.insermbiblio.inist.fr", + "title": "Multiple phage resistance systems inhibit infection via SIR2-dependent NAD+ depletion", + "URL": "https://www.nature.com/articles/s41564-022-01207-8", + "volume": "7", + "author": [ + { + "family": "Garb", + "given": "Jeremy" + }, + { + "family": "Lopatina", + "given": "Anna" + }, + { + "family": "Bernheim", + "given": "Aude" + }, + { + "family": "Zaremba", + "given": "Mindaugas" + }, + { + "family": "Siksnys", + "given": "Virginijus" + }, + { + "family": "Melamed", + "given": "Sarah" + }, + { + "family": "Leavitt", + "given": "Azita" + }, + { + "family": "Millman", + "given": "Adi" + }, + { + "family": "Amitai", + "given": "Gil" + }, + { + "family": "Sorek", + "given": "Rotem" + } + ], + "accessed": { + "date-parts": [ + [ + "2023", + 1, + 18 + ] + ] + }, + "issued": { + "date-parts": [ + [ + "2022", + 11 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/D2HITZT5", + "type": "article-journal", + "abstract": "Argonaute (Ago) proteins are found in all three domains of life. The so-called long Agos are composed of four major domains (N, PAZ, MID and PIWI) and contribute to RNA silencing in eukaryotes (eAgos) or defence against invading mobile genetic elements in prokaryotes (pAgos). The majority (~60%) of pAgos identified bioinformatically are shorter (comprising only MID and PIWI domains) and are typically associated with Sir2, Mrr or TIR domain-containing proteins. The cellular function and mechanism of short pAgos remain enigmatic. Here we show that Geobacter sulfurreducens short pAgo and the NAD+-bound Sir2 protein form a stable heterodimeric complex. The GsSir2/Ago complex presumably recognizes invading plasmid or phage DNA and activates the Sir2 subunit, which triggers endogenous NAD+ depletion and cell death, and prevents the propagation of invading DNA. We reconstituted NAD+ depletion activity in vitro and showed that activated GsSir2/Ago complex functions as a NADase that hydrolyses NAD+ to ADPR. Thus, short Sir2-associated pAgos provide defence against phages and plasmids, underscoring the diversity of mechanisms of prokaryotic Agos.", + "container-title": "Nature Microbiology", + "DOI": "10.1038/s41564-022-01239-0", + "ISSN": "2058-5276", + "issue": "11", + "journalAbbreviation": "Nat Microbiol", + "language": "en", + "license": "2022 The Author(s), under exclusive licence to Springer Nature Limited", + "note": "number: 11\npublisher: Nature Publishing Group", + "page": "1857-1869", + "source": "www-nature-com.proxy.insermbiblio.inist.fr", + "title": "Short prokaryotic Argonautes provide defence against incoming mobile genetic elements through NAD+ depletion", + "URL": "https://www.nature.com/articles/s41564-022-01239-0", + "volume": "7", + "author": [ + { + "family": "Zaremba", + "given": "Mindaugas" + }, + { + "family": "Dakineviciene", + "given": "Donata" + }, + { + "family": "Golovinas", + "given": "Edvardas" + }, + { + "family": "ZagorskaitÄ—", + "given": "Evelina" + }, + { + "family": "Stankunas", + "given": "Edvinas" + }, + { + "family": "Lopatina", + "given": "Anna" + }, + { + "family": "Sorek", + "given": "Rotem" + }, + { + "family": "Manakova", + "given": "Elena" + }, + { + "family": "Ruksenaite", + "given": "Audrone" + }, + { + "family": "Silanskas", + "given": "Arunas" + }, + { + "family": "Asmontas", + "given": "Simonas" + }, + { + "family": "Grybauskas", + "given": "Algirdas" + }, + { + "family": "Tylenyte", + "given": "Ugne" + }, + { + "family": "Jurgelaitis", + "given": "Edvinas" + }, + { + "family": "Grigaitis", + "given": "Rokas" + }, + { + "family": "Timinskas", + "given": "KÄ™stutis" + }, + { + "family": "Venclovas", + "given": "ÄŒeslovas" + }, + { + "family": "Siksnys", + "given": "Virginijus" + } + ], + "accessed": { + "date-parts": [ + [ + "2023", + 1, + 18 + ] + ] + }, + "issued": { + "date-parts": [ + [ + "2022", + 11 + ] + ] + } + }, + { + "id": "http://zotero.org/users/7432213/items/CMJM29KK", + "type": "article-journal", + "abstract": "Horizontal gene transfer is a key step in the evolution of bacterial pathogens. Besides phages and plasmids, pathogenicity islands (PAIs) are subjected to horizontal transfer. The transfer mechanisms of PAIs within a certain bacterial species or between different species are still not well understood. This study is focused on the High-Pathogenicity Island (HPI), which is a PAI widely spread among extraintestinal pathogenic Escherichia coli and serves as a model for horizontal transfer of PAIs in general. We applied a phylogenetic approach using multilocus sequence typing on HPI-positive and -negative natural E. coli isolates representative of the species diversity to infer the mechanism of horizontal HPI transfer within the E. coli species. In each strain, the partial nucleotide sequences of 6 HPI–encoded genes and 6 housekeeping genes of the genomic backbone, as well as DNA fragments immediately upstream and downstream of the HPI were compared. This revealed that the HPI is not solely vertically transmitted, but that recombination of large DNA fragments beyond the HPI plays a major role in the spread of the HPI within E. coli species. In support of the results of the phylogenetic analyses, we experimentally demonstrated that HPI can be transferred between different E. coli strains by F-plasmid mediated mobilization. Sequencing of the chromosomal DNA regions immediately upstream and downstream of the HPI in the recipient strain indicated that the HPI was transferred and integrated together with HPI–flanking DNA regions of the donor strain. The results of this study demonstrate for the first time that conjugative transfer and homologous DNA recombination play a major role in horizontal transfer of a pathogenicity island within the species E. coli.", + "container-title": "PLOS Pathogens", + "DOI": "10.1371/journal.ppat.1000257", + "ISSN": "1553-7374", + "issue": "1", + "journalAbbreviation": "PLOS Pathogens", + "language": "en", + "note": "publisher: Public Library of Science", + "page": "e1000257", + "source": "PLoS Journals", + "title": "Role of Intraspecies Recombination in the Spread of Pathogenicity Islands within the Escherichia coli Species", + "URL": "https://journals.plos.org/plospathogens/article?id=10.1371/journal.ppat.1000257", + "volume": "5", + "author": [ + { + "family": "Schubert", + "given": "Sören" + }, + { + "family": "Darlu", + "given": "Pierre" + }, + { + "family": "Clermont", + "given": "Olivier" + }, + { + "family": "Wieser", + "given": "Andreas" + }, + { + "family": "Magistro", + "given": "Giuseppe" + }, + { + "family": "Hoffmann", + "given": "Christiane" + }, + { + "family": "Weinert", + "given": "Kirsten" + }, + { + "family": "Tenaillon", + "given": "Olivier" + }, + { + "family": "Matic", + "given": "Ivan" + }, + { + "family": "Denamur", + "given": "Erick" + } + ], + "accessed": { + "date-parts": [ + [ + "2023", + 1, + 26 + ] + ] + }, + "issued": { + "date-parts": [ + [ + "2009", + 1, + 9 + ] + ] + } + }, + { + "id": "5912537/Z74AZK7B", + "type": "article-journal", + "title": "Bacteriophage defence systems in lactic acid bacteria", + "container-title": "Antonie van Leeuwenhoek", + "page": "89-113", + "volume": "76", + "issue": "1/4", + "abstract": "The study of the interactions between lactic acid bacteria and their bacteriophages has been a vibrant and rewarding research activity for a considerable number of years. In the more recent past, the application of molecular genetics for the analysis of phage-host relationships has contributed enormously to the unravelling of specific events which dictate insensitivity to bacteriophage infection and has revealed that while they are complex and intricate in nature, they are also extremely effective. In addition, the strategy has laid solid foundations for the construction of phage resistant strains for use in commercial applications and has provided a sound basis for continued investigations into existing, naturally-derived and novel, genetically-engineered defence systems. Of course, it has also become clear that phage particles are highly dynamic in their response to those defence systems which they do encounter and that they can readily adapt to them as a consequence of their genetic flexibility and plasticity. This paper reviews the exciting developments that have been described in the literature regarding the study of phage-host interactions in lactic acid bacteria and the innovative approaches that can be taken to exploit this basic information for curtailing phage infection.", + "URL": "http://link.springer.com/10.1023/A:1002027321171", + "DOI": "10.1023/A:1002027321171", + "author": [ + { + "family": "Forde", + "given": "Amanda" + }, + { + "family": "Fitzgerald", + "given": "Gerald F." + } + ], + "issued": { + "date-parts": [ + [ + 1999 + ] + ] + }, + "accessed": { + "date-parts": [ + [ + 2023, + 9, + 25 + ] + ] + } + } +] \ No newline at end of file diff --git a/public/readme/references.png b/public/readme/references.png new file mode 100644 index 0000000000000000000000000000000000000000..d77576cee151ca07ac3c3485a4f00d6d5cbf87e6 Binary files /dev/null and b/public/readme/references.png differ diff --git a/scripts/get-articles.py b/scripts/get-articles.py new file mode 100755 index 0000000000000000000000000000000000000000..68e432abb16fdbcedfe0e3f4c43d3895afdd3a63 --- /dev/null +++ b/scripts/get-articles.py @@ -0,0 +1,39 @@ +#!/usr/bin/env python3 + +from pyzotero import zotero +import json +import argparse + + +parser = argparse.ArgumentParser( + prog="get-articles", + description="get articles from zotero collection", +) +parser.add_argument("-k", "--key", type=str) # option that takes a value +args = parser.parse_args() +zot = zotero.Zotero("5151022", "group", args.key) +collection = zot.collection("BSWL96X3") + +tot_items = collection["meta"]["numItems"] +batch_size = 100 + + +def get_articles(tot_items, batch_size): + starts = range(0, tot_items, batch_size) + for i in starts: + items = zot.collection_items( + "BSWL96X3", + format="csljson", + limit=batch_size, + start=i, + itemType="journalArticle", + )["items"] + for item in items: + yield item + + +items = list(get_articles(tot_items, batch_size)) + +json_object = json.dumps(items, indent=2) +with open("articles.json", "w") as outfile: + outfile.write(json_object)