securitylab_nJuly 18, 2026🇷🇺Translated from Russian

AI-Designed NovoTags Enable Real-Time Fluorescent Labeling of Mitochondria and Other Cellular Structures in Living Cells

Scientists have created a powerful new tool for observing cellular processes almost in real time. Using advanced artificial intelligence systems, researchers designed tiny protein tags from scratch that attach to selected molecules and cause them to glow brightly under a microscope. The development, named NovoTags, promises to significantly expand the capabilities of cell biology.

Modern microscopes can visualize individual cellular structures, yet locating a specific protein among millions of molecules remains challenging. Researchers typically attach a fluorescent label to the protein of interest, which glows when illuminated. Existing systems are limited to a narrow set of dyes and struggle with simultaneous observation of multiple processes.

A team from the Institute for Protein Design at the University of Washington, the Janelia Research Campus, and the European Molecular Biology Laboratory engineered small artificial proteins capable of capturing specific Janelia Fluor dyes. They produced three independent tags covering the green, orange, and far-red spectral ranges. Each tag can be genetically fused to a chosen protein, after which the dye illuminates the target molecule inside a living cell.

The protein structures were not obtained by screening natural variants. Instead, the algorithm RFdiffusion generated the shape of the future protein, while LigandMPNN selected the amino acid sequence. AlphaFold and RoseTTAFold then verified whether the resulting molecule would fold correctly. The most promising designs were synthesized and tested in the laboratory.

Unlike conventional fluorescent proteins, NovoTags do not fluoresce by themselves. The artificial protein forms a pocket around the dye molecule, firmly retains it, and modifies its optical properties. Thanks to their high brightness and precise binding, the tags are suitable for super-resolution microscopy techniques that reveal details smaller than the diffraction limit of conventional light microscopes.

In experiments, researchers applied NovoTags in living human cells. The tags successfully highlighted endosomes, mitochondria, and chromatin. Scientists also performed STED super-resolution microscopy and fluorescence lifetime imaging, allowing distinction of labels not only by color but also by emission duration.

Combining color and lifetime parameters could dramatically increase the number of objects observable simultaneously. The authors estimate that different combinations may eventually allow differentiation of up to 30 distinct proteins within a single cell, although further experiments are required to confirm reliability at such high labeling density.

The team also created a controllable version called NovoSplit. They split the artificial protein into two halves, each fused to a separate molecule. Upon addition of the appropriate dye, the halves assemble like puzzle pieces, bringing the attached proteins together. In this configuration the dye functions both as a fluorescent marker and as molecular glue.

NovoSplit enables scientists not only to observe protein interactions but also to trigger them at a chosen moment. The method will help study cell signaling, assembly of molecular complexes, and other processes that depend on transient protein contacts.

Looking ahead, the developers plan to integrate NovoTags with cryo-electron tomography. This approach would first locate a protein via fluorescence and then examine surrounding molecular structures at much higher resolution, allowing direct correlation of a protein’s position, shape, and function inside a near-native frozen cell.

The sequences of NovoTags and compatible dyes have been released to the scientific community. Laboratories worldwide are already expanding the toolkit with new colors and functionalities. The study was published on 16 July 2026 in the journal Science.

Related articles

HabrOther

redb.Identity Adds gRPC Transport for OpenID Server Alongside Existing HTTP Facade

redb.Identity has introduced a second transport layer using gRPC next to its existing HTTP interface, sharing the same core routes, client registry, token store, and authorization logic. The new facade exposes standard OAuth and OpenID Connect operations such as Token, Introspect, Revoke, UserInfo, Discovery, and Jwks through protobuf-defined methods under identity.v1.Identity. Both transports enforce identical verdicts based on a single centralized scope table located behind direct-vm addresses, ensuring that a client authorized via HTTP receives the same result when calling gRPC. Error handling on gRPC uses status codes and trailers to carry machine-readable OAuth error codes and retry-after values, preserving compatibility with existing interceptors and tracing. Browser-facing flows, DPoP proofs, and user self-service remain on HTTP, while administrative operations are available on a separate management port. The implementation was validated through 64 unit tests, cross-language interop with @grpc/grpc-js clients, and a conformance run against the official OpenID Foundation suite.

AntiMalwareOther

Nvidia to Cease Regular GeForce Driver Updates for Windows 10 After October 2026

Nvidia has announced the end of regular driver support for Windows 10 in its GeForce Game Ready and Nvidia Studio driver lines starting October 2026. The first driver package without Windows 10 support will arrive in November of that year. Microsoft ended the base lifecycle of Windows 10 on October 14, 2025, and Nvidia is extending support by one additional year. Existing games and applications will continue to function after the change, while quarterly security patches for critical vulnerabilities will remain available until October 2029. Users will no longer receive optimizations for new games, fixes for graphics issues, or new GPU features. Newer technologies such as DLSS may also skip Windows 10 compatibility. The transition is described as gradual rather than abrupt, allowing older titles to keep running while newer releases increasingly encourage migration to a supported Windows version.

AntiMalwareOther

Rospotrebnadzor Introduces Age-Based Screen Time Limits for Russian School Students

Russia's consumer protection agency Rospotrebnadzor has established recommended maximum durations for schoolchildren working with computers and interactive whiteboards during lessons. The limits vary by grade, ranging from 20 minutes for first and second graders up to 35 minutes for students in grades 10 and 11. Separate rules apply to interactive boards, capping usage at 20 minutes for children under 10 and 30 minutes for older students. Schools must ensure students perform eye exercises when electronic devices are used, while traditional paper-based classes require such exercises only during breaks. Starting September 1 2026, a nationwide ban on mobile phones during lessons will also take effect, with individual schools deciding rules for recess periods.

HabrOther

From Root CA to User Authorization in nginx and Apache: Client Certificate Login Explained

This is the third installment in a detailed tutorial series covering the deployment of a two-tier PKI infrastructure with Root CA and intermediate CAs for Person, Server, and Code. The article provides comprehensive configuration guidance for enabling mTLS in nginx and Apache, including full references for all ssl_client_* variables and SSL directives. It explains the differences between password-based and certificate-based authentication, the TLS handshake steps involving CertificateRequest and CertificateVerify, and the importance of proper extendedKeyUsage settings such as clientAuth. Readers learn how to issue client certificates, package them in PKCS#12 format, enforce revocation checks via CRL and OCSP, and safely pass certificate fields to backend applications while mitigating risks from header spoofing. The guide also covers scenarios where the application itself terminates TLS without a reverse proxy and demonstrates login flows protected against CSRF using one-time tokens.