{"id":524,"date":"2024-10-27T19:41:05","date_gmt":"2024-10-27T19:41:05","guid":{"rendered":"https:\/\/gpt-jordan.com\/?p=524"},"modified":"2024-10-27T19:41:05","modified_gmt":"2024-10-27T19:41:05","slug":"maximal-exact-matchesmems-in-genomic-data","status":"publish","type":"post","link":"https:\/\/idtjo.hosting.acm.org\/wordpress\/maximal-exact-matchesmems-in-genomic-data\/","title":{"rendered":"Maximal Exact Matches(MEMs) in Genomic Data"},"content":{"rendered":"\n<p>The efficient identification and analysis of patterns within vast datasets is a cornerstone of modern bioinformatics. A fundamental tool in this domain is the identification of Maximal Exact Matches (MEMs). MEMs represent the longest substrings of a given pattern, P, that occur within text T.<\/p>\n\n\n\n<p>The sheer scale of genomic data presents significant challenges. Suffix trees become impractical due to their memory requirements when dealing with massive, repetitive datasets. A suffix tree for a single human genome could easily demand 60 GB, necessitating compressed data structures to find MEMs.<\/p>\n\n\n\n<p><strong>Compressed Indexes for MEM:<\/strong><\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Extending existing compressed indexes<\/strong>: This approach focuses on augmenting existing compressed data structures designed for repetitive texts, like the Run-Length Burrows-Wheeler Transform (RLBWT) index, to support MEM finding. One such method involves computing matching statistics, which capture the length of the longest prefix of P that appears in T for each position q in P. From these statistics, MEMs can be easily extracted in O(m) time. This approach achieves a time complexity of O(m(s + log log n)) and uses O(r) space, where r is the number of runs in the BWT of T and s is the time to access a single symbol in T using an auxiliary data structure.<\/li>\n\n\n\n<li><strong>Using grammar-based indexes<\/strong>: This strategy leverages the inherent compressibility of repetitive texts by utilizing grammar-based representations, specifically Run-Length Context-Free Grammars (RLCFG). This allows for the creation of data structures with size O(grl), where grl represents the size of the smallest RLCFG that can generate T. Such a structure can find MEMs in O(m\u00b2 log \u03b5 n) time for any constant \u03b5 > 0. A particularly effective type of RLCFG is the locally consistent grammar (LCG), which offers a stronger guarantee on the similarity of parse trees for identical substrings of T.<\/li>\n<\/ol>\n\n\n\n<p><strong>Subquadratic MEM Finding Using Locally Consistent Grammars<\/strong><\/p>\n\n\n\n<p>A significant advancement in grammar-based MEM finding is the use of LCGs to achieve subquadratic time complexity. This method exploits the property of LCGs that finding all primary occurrences of any window P can be done using only O(log(j &#8211; i + 1)) cutting points in P. By maintaining the parse tree of P and the set of active positions M(P).<\/p>\n\n\n\n<p><strong>Implications of MEM Finding Techniques<\/strong><\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Matching Statistics<\/strong>: As mentioned earlier, matching statistics are closely related to MEMs. Algorithms for MEM finding can be directly applied to compute matching statistics efficiently.<\/li>\n\n\n\n<li><strong>Data Compression<\/strong>: MEMs can be utilized for data compression by representing the text T with references to substrings of a reference text R.<\/li>\n\n\n\n<li><strong>Genome Assembly<\/strong>: MEMs can be employed to identify overlaps between reads, facilitating the construction of a de Bruijn graph.<\/li>\n<\/ol>\n\n\n\n<p>Suffix tree of T to locate MEMs efficiently, running in O(m) time. It operates by sliding a window P across P and maintaining specific invariants related to the occurrence of substrings in T.<\/p>\n\n\n\n<p>Grammar-based index utilizes a grid-based approach to count secondary occurrences triggered by primary occurrences, efficiently maintaining the count of active positions.<\/p>\n\n\n\n<p><strong>MUMs and k-rare MEMs<\/strong>: This involves traversing suffix trees for both P and T in a synchronized manner, filtering out MEMs that do not meet the uniqueness or rarity criteria.<\/p>\n\n\n\n<p><strong>MEM Finding in Compressed Space<\/strong><\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Run-Length Burrows-Wheeler Transform (RLBWT)<\/strong>: Provides a compressed representation of T &amp; efficient pattern matching.<\/li>\n\n\n\n<li><strong>Run-Length Context-Free Grammars (RLCFG)<\/strong>: Offers a grammar-based compression of T, capturing its repetitive structure.<\/li>\n\n\n\n<li><strong>Locally Consistent Grammars (LCG)<\/strong>: Guarantees similar parse trees for identical substrings &amp; faster pattern searching.<\/li>\n<\/ol>\n\n\n\n<p><strong>Other Genomic Analysis Algorithms<\/strong><\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Bloom Filters<\/strong>: Bloom filters are probabilistic data structures used for set membership queries. While they allow for false positives, their small size and fast query times make them useful for applications like k-mer counting, representing de Bruijn graphs, and inexact sequence search.<\/li>\n\n\n\n<li><strong>Cache-efficient One-Hashing Blocked Bloom filter (OHBB)<\/strong>: Aims to improve performance by reducing memory accesses.<\/li>\n\n\n\n<li><strong>MinHash Sketches<\/strong>: MinHash sketches are used to estimate the similarity and containment of datasets, effective where exact solutions are impractical.<\/li>\n\n\n\n<li><strong>Perfect Hashing<\/strong>: Used in conjunction with Bloom filters in Bloomed Perfect Hashing, eliminates collisions in hash tables, ensuring O(1) lookup times. This technique is valuable for large-scale genomic analyses requiring fast and accurate k-mer indexing.<\/li>\n\n\n\n<li><strong>k-mer Counting<\/strong>: Accurately counting the occurrences of k-mers within sequences is essential for various analyses. Tools like Jellyfish and BFCounter provide efficient k-mer counting.<\/li>\n\n\n\n<li><strong>Dynamic Perfect Hashing<\/strong>: Dynamic perfect hashing allows for efficient updates to the hash table while maintaining constant time complexity.<\/li>\n<\/ol>\n\n\n\n<p><\/p>\n\n\n\n<p><\/p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe title=\"Maximal Exact Matches MEMs in Genomic Data\" width=\"500\" height=\"281\" src=\"https:\/\/www.youtube.com\/embed\/2k2u8ZF4U-Y?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen><\/iframe>\n<\/div><\/figure>\n","protected":false},"excerpt":{"rendered":"<p>The efficient identification and analysis of patterns within vast datasets is a cornerstone of modern bioinformatics. A fundamental tool in this domain is the identification of Maximal Exact Matches (MEMs). [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":674,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_EventAllDay":false,"_EventTimezone":"","_EventStartDate":"","_EventEndDate":"","_EventStartDateUTC":"","_EventEndDateUTC":"","_EventShowMap":false,"_EventShowMapLink":false,"_EventURL":"","_EventCost":"","_EventCostDescription":"","_EventCurrencySymbol":"","_EventCurrencyCode":"","_EventCurrencyPosition":"","_EventDateTimeSeparator":"","_EventTimeRangeSeparator":"","_EventOrganizerID":[],"_EventVenueID":[],"_OrganizerEmail":"","_OrganizerPhone":"","_OrganizerWebsite":"","_VenueAddress":"","_VenueCity":"","_VenueCountry":"","_VenueProvince":"","_VenueState":"","_VenueZip":"","_VenuePhone":"","_VenueURL":"","_VenueStateProvince":"","_VenueLat":"","_VenueLng":"","_VenueShowMap":false,"_VenueShowMapLink":false,"footnotes":""},"categories":[16,22],"tags":[35,36],"class_list":["post-524","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-genomic-data","category-mems","tag-genomic-data","tag-mems"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v23.7 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Maximal Exact Matches(MEMs) in Genomic Data - Innovative Digital Transformation Jordan<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/idtjo.hosting.acm.org\/wordpress\/maximal-exact-matchesmems-in-genomic-data\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Maximal Exact Matches(MEMs) in Genomic Data - Innovative Digital Transformation Jordan\" \/>\n<meta property=\"og:description\" content=\"The efficient identification and analysis of patterns within vast datasets is a cornerstone of modern bioinformatics. A fundamental tool in this domain is the identification of Maximal Exact Matches (MEMs). [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/idtjo.hosting.acm.org\/wordpress\/maximal-exact-matchesmems-in-genomic-data\/\" \/>\n<meta property=\"og:site_name\" content=\"Innovative Digital Transformation Jordan\" \/>\n<meta property=\"article:published_time\" content=\"2024-10-27T19:41:05+00:00\" \/>\n<meta name=\"author\" content=\"Editor\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Editor\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/idtjo.hosting.acm.org\/wordpress\/maximal-exact-matchesmems-in-genomic-data\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/idtjo.hosting.acm.org\/wordpress\/maximal-exact-matchesmems-in-genomic-data\/\"},\"author\":{\"name\":\"Editor\",\"@id\":\"https:\/\/idtjo.hosting.acm.org\/wordpress\/#\/schema\/person\/260ed75841f0c76d83d1b2bc3121f6f6\"},\"headline\":\"Maximal Exact Matches(MEMs) in Genomic Data\",\"datePublished\":\"2024-10-27T19:41:05+00:00\",\"dateModified\":\"2024-10-27T19:41:05+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/idtjo.hosting.acm.org\/wordpress\/maximal-exact-matchesmems-in-genomic-data\/\"},\"wordCount\":741,\"publisher\":{\"@id\":\"https:\/\/idtjo.hosting.acm.org\/wordpress\/#organization\"},\"image\":{\"@id\":\"https:\/\/idtjo.hosting.acm.org\/wordpress\/maximal-exact-matchesmems-in-genomic-data\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/idtjo.hosting.acm.org\/wordpress\/wp-content\/uploads\/2024\/10\/images-1-1.png\",\"keywords\":[\"Genomic Data\",\"MEMs\"],\"articleSection\":[\"Genomic Data\",\"MEMs\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/idtjo.hosting.acm.org\/wordpress\/maximal-exact-matchesmems-in-genomic-data\/\",\"url\":\"https:\/\/idtjo.hosting.acm.org\/wordpress\/maximal-exact-matchesmems-in-genomic-data\/\",\"name\":\"Maximal Exact Matches(MEMs) in Genomic Data - Innovative Digital Transformation Jordan\",\"isPartOf\":{\"@id\":\"https:\/\/idtjo.hosting.acm.org\/wordpress\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/idtjo.hosting.acm.org\/wordpress\/maximal-exact-matchesmems-in-genomic-data\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/idtjo.hosting.acm.org\/wordpress\/maximal-exact-matchesmems-in-genomic-data\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/idtjo.hosting.acm.org\/wordpress\/wp-content\/uploads\/2024\/10\/images-1-1.png\",\"datePublished\":\"2024-10-27T19:41:05+00:00\",\"dateModified\":\"2024-10-27T19:41:05+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/idtjo.hosting.acm.org\/wordpress\/maximal-exact-matchesmems-in-genomic-data\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/idtjo.hosting.acm.org\/wordpress\/maximal-exact-matchesmems-in-genomic-data\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/idtjo.hosting.acm.org\/wordpress\/maximal-exact-matchesmems-in-genomic-data\/#primaryimage\",\"url\":\"https:\/\/idtjo.hosting.acm.org\/wordpress\/wp-content\/uploads\/2024\/10\/images-1-1.png\",\"contentUrl\":\"https:\/\/idtjo.hosting.acm.org\/wordpress\/wp-content\/uploads\/2024\/10\/images-1-1.png\",\"width\":226,\"height\":223},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/idtjo.hosting.acm.org\/wordpress\/maximal-exact-matchesmems-in-genomic-data\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/idtjo.hosting.acm.org\/wordpress\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Maximal Exact Matches(MEMs) in Genomic Data\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/idtjo.hosting.acm.org\/wordpress\/#website\",\"url\":\"https:\/\/idtjo.hosting.acm.org\/wordpress\/\",\"name\":\"Innovative Digital Transformation Jordan\",\"description\":\"Improve Your Life with NetBookLM\",\"publisher\":{\"@id\":\"https:\/\/idtjo.hosting.acm.org\/wordpress\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/idtjo.hosting.acm.org\/wordpress\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/idtjo.hosting.acm.org\/wordpress\/#organization\",\"name\":\"Innovative Digital Transformation Jordan\",\"url\":\"https:\/\/idtjo.hosting.acm.org\/wordpress\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/idtjo.hosting.acm.org\/wordpress\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/idtjo.hosting.acm.org\/wordpress\/wp-content\/uploads\/2024\/09\/cropped-cropped-Designer-1.jpeg\",\"contentUrl\":\"https:\/\/idtjo.hosting.acm.org\/wordpress\/wp-content\/uploads\/2024\/09\/cropped-cropped-Designer-1.jpeg\",\"width\":70,\"height\":70,\"caption\":\"Innovative Digital Transformation Jordan\"},\"image\":{\"@id\":\"https:\/\/idtjo.hosting.acm.org\/wordpress\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/idtjo.hosting.acm.org\/wordpress\/#\/schema\/person\/260ed75841f0c76d83d1b2bc3121f6f6\",\"name\":\"Editor\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/idtjo.hosting.acm.org\/wordpress\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g\",\"caption\":\"Editor\"},\"url\":\"https:\/\/idtjo.hosting.acm.org\/wordpress\/author\/editor\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Maximal Exact Matches(MEMs) in Genomic Data - Innovative Digital Transformation Jordan","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/idtjo.hosting.acm.org\/wordpress\/maximal-exact-matchesmems-in-genomic-data\/","og_locale":"en_US","og_type":"article","og_title":"Maximal Exact Matches(MEMs) in Genomic Data - Innovative Digital Transformation Jordan","og_description":"The efficient identification and analysis of patterns within vast datasets is a cornerstone of modern bioinformatics. A fundamental tool in this domain is the identification of Maximal Exact Matches (MEMs). [&hellip;]","og_url":"https:\/\/idtjo.hosting.acm.org\/wordpress\/maximal-exact-matchesmems-in-genomic-data\/","og_site_name":"Innovative Digital Transformation Jordan","article_published_time":"2024-10-27T19:41:05+00:00","author":"Editor","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Editor","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/idtjo.hosting.acm.org\/wordpress\/maximal-exact-matchesmems-in-genomic-data\/#article","isPartOf":{"@id":"https:\/\/idtjo.hosting.acm.org\/wordpress\/maximal-exact-matchesmems-in-genomic-data\/"},"author":{"name":"Editor","@id":"https:\/\/idtjo.hosting.acm.org\/wordpress\/#\/schema\/person\/260ed75841f0c76d83d1b2bc3121f6f6"},"headline":"Maximal Exact Matches(MEMs) in Genomic Data","datePublished":"2024-10-27T19:41:05+00:00","dateModified":"2024-10-27T19:41:05+00:00","mainEntityOfPage":{"@id":"https:\/\/idtjo.hosting.acm.org\/wordpress\/maximal-exact-matchesmems-in-genomic-data\/"},"wordCount":741,"publisher":{"@id":"https:\/\/idtjo.hosting.acm.org\/wordpress\/#organization"},"image":{"@id":"https:\/\/idtjo.hosting.acm.org\/wordpress\/maximal-exact-matchesmems-in-genomic-data\/#primaryimage"},"thumbnailUrl":"https:\/\/idtjo.hosting.acm.org\/wordpress\/wp-content\/uploads\/2024\/10\/images-1-1.png","keywords":["Genomic Data","MEMs"],"articleSection":["Genomic Data","MEMs"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/idtjo.hosting.acm.org\/wordpress\/maximal-exact-matchesmems-in-genomic-data\/","url":"https:\/\/idtjo.hosting.acm.org\/wordpress\/maximal-exact-matchesmems-in-genomic-data\/","name":"Maximal Exact Matches(MEMs) in Genomic Data - Innovative Digital Transformation Jordan","isPartOf":{"@id":"https:\/\/idtjo.hosting.acm.org\/wordpress\/#website"},"primaryImageOfPage":{"@id":"https:\/\/idtjo.hosting.acm.org\/wordpress\/maximal-exact-matchesmems-in-genomic-data\/#primaryimage"},"image":{"@id":"https:\/\/idtjo.hosting.acm.org\/wordpress\/maximal-exact-matchesmems-in-genomic-data\/#primaryimage"},"thumbnailUrl":"https:\/\/idtjo.hosting.acm.org\/wordpress\/wp-content\/uploads\/2024\/10\/images-1-1.png","datePublished":"2024-10-27T19:41:05+00:00","dateModified":"2024-10-27T19:41:05+00:00","breadcrumb":{"@id":"https:\/\/idtjo.hosting.acm.org\/wordpress\/maximal-exact-matchesmems-in-genomic-data\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/idtjo.hosting.acm.org\/wordpress\/maximal-exact-matchesmems-in-genomic-data\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/idtjo.hosting.acm.org\/wordpress\/maximal-exact-matchesmems-in-genomic-data\/#primaryimage","url":"https:\/\/idtjo.hosting.acm.org\/wordpress\/wp-content\/uploads\/2024\/10\/images-1-1.png","contentUrl":"https:\/\/idtjo.hosting.acm.org\/wordpress\/wp-content\/uploads\/2024\/10\/images-1-1.png","width":226,"height":223},{"@type":"BreadcrumbList","@id":"https:\/\/idtjo.hosting.acm.org\/wordpress\/maximal-exact-matchesmems-in-genomic-data\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/idtjo.hosting.acm.org\/wordpress\/"},{"@type":"ListItem","position":2,"name":"Maximal Exact Matches(MEMs) in Genomic Data"}]},{"@type":"WebSite","@id":"https:\/\/idtjo.hosting.acm.org\/wordpress\/#website","url":"https:\/\/idtjo.hosting.acm.org\/wordpress\/","name":"Innovative Digital Transformation Jordan","description":"Improve Your Life with NetBookLM","publisher":{"@id":"https:\/\/idtjo.hosting.acm.org\/wordpress\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/idtjo.hosting.acm.org\/wordpress\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/idtjo.hosting.acm.org\/wordpress\/#organization","name":"Innovative Digital Transformation Jordan","url":"https:\/\/idtjo.hosting.acm.org\/wordpress\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/idtjo.hosting.acm.org\/wordpress\/#\/schema\/logo\/image\/","url":"https:\/\/idtjo.hosting.acm.org\/wordpress\/wp-content\/uploads\/2024\/09\/cropped-cropped-Designer-1.jpeg","contentUrl":"https:\/\/idtjo.hosting.acm.org\/wordpress\/wp-content\/uploads\/2024\/09\/cropped-cropped-Designer-1.jpeg","width":70,"height":70,"caption":"Innovative Digital Transformation Jordan"},"image":{"@id":"https:\/\/idtjo.hosting.acm.org\/wordpress\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/idtjo.hosting.acm.org\/wordpress\/#\/schema\/person\/260ed75841f0c76d83d1b2bc3121f6f6","name":"Editor","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/idtjo.hosting.acm.org\/wordpress\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","caption":"Editor"},"url":"https:\/\/idtjo.hosting.acm.org\/wordpress\/author\/editor\/"}]}},"jetpack_featured_media_url":"https:\/\/idtjo.hosting.acm.org\/wordpress\/wp-content\/uploads\/2024\/10\/images-1-1.png","_links":{"self":[{"href":"https:\/\/idtjo.hosting.acm.org\/wordpress\/wp-json\/wp\/v2\/posts\/524","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/idtjo.hosting.acm.org\/wordpress\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/idtjo.hosting.acm.org\/wordpress\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/idtjo.hosting.acm.org\/wordpress\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/idtjo.hosting.acm.org\/wordpress\/wp-json\/wp\/v2\/comments?post=524"}],"version-history":[{"count":0,"href":"https:\/\/idtjo.hosting.acm.org\/wordpress\/wp-json\/wp\/v2\/posts\/524\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/idtjo.hosting.acm.org\/wordpress\/wp-json\/wp\/v2\/media\/674"}],"wp:attachment":[{"href":"https:\/\/idtjo.hosting.acm.org\/wordpress\/wp-json\/wp\/v2\/media?parent=524"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/idtjo.hosting.acm.org\/wordpress\/wp-json\/wp\/v2\/categories?post=524"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/idtjo.hosting.acm.org\/wordpress\/wp-json\/wp\/v2\/tags?post=524"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}