Search for regex patterns in protein sequences and locate all matches.
Paste one or more FASTA sequences (max 5,000,000 characters).
Enter a regular expression pattern to search for. Example: S[^S]{0,5}S (two serines with 0-5 non-serine residues between them)
Paste one or more protein sequences in FASTA format (up to 5 million characters). The tool searches all sequences simultaneously, reporting matches with sequence name and position. Ideal for screening proteomes or gene families.
Use regular expressions to define search patterns. Examples: [RK] finds basic amino acids, N[ST] finds N-glycosylation sites, CX{2}C finds zinc finger motifs, and [FYW] finds aromatic residues. Square brackets define character sets, curly braces define repeat counts.
Results show each match with its position (1-indexed), the matched sequence, and surrounding context. Positions help locate motifs for further analysis or mutagenesis. Multiple matches in one sequence are all reported individually.
Find post-translational modification sites (phosphorylation, glycosylation, ubiquitination), locate functional motifs (ATP-binding sites, DNA-binding domains), identify conserved regions, search for protease cleavage sites, or scan for specific structural features like leucine zippers or coiled-coils.
This tool searches for patterns using regular expressions (regex). Regular expressions are powerful pattern matching tools that allow you to search for specific sequences or patterns in protein sequences.