1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
|
test_prosite
Patterns: 'A.' 'A' '(A)'
Patterns: 'x.' '.' '(.)'
Patterns: '{A}.' '[^A]' '([^A])'
Patterns: '[AB].' '[AB]' '([AB])'
Patterns: '{AB}.' '[^AB]' '([^AB])'
Patterns: 'A-B.' 'AB' '(A)(B)'
Patterns: 'A-x.' 'A.' '(A)(.)'
Patterns: '[AB]-[BC].' '[AB][BC]' '([AB])([BC])'
Patterns: '[AB]-[BC]-[CD].' '[AB][BC][CD]' '([AB])([BC])([CD])'
Patterns: '[AB]-[BC]-[CDEFGHIKLMN].' '[AB][BC][CDEFGHIKLMN]' '([AB])([BC])([CDEFGHIKLMN])'
Patterns: '{AB}-[BC]-[CD].' '[^AB][BC][CD]' '([^AB])([BC])([CD])'
Patterns: '[AB]-{BC}-[CD].' '[AB][^BC][CD]' '([AB])([^BC])([CD])'
Patterns: '[AB]-[BC]-{CD}.' '[AB][BC][^CD]' '([AB])([BC])([^CD])'
Patterns: '{AB}-[BC]-{CD}.' '[^AB][BC][^CD]' '([^AB])([BC])([^CD])'
Patterns: 'A-B-C-D.' 'ABCD' '(A)(B)(C)(D)'
Patterns: '<A.' '^A' '^(A)'
Patterns: '<{A}.' '^[^A]' '^([^A])'
Patterns: '<[AB].' '^[AB]' '^([AB])'
Patterns: '<{AB}.' '^[^AB]' '^([^AB])'
Patterns: '<A-B.' '^AB' '^(A)(B)'
Patterns: '<[AB]-[BC].' '^[AB][BC]' '^([AB])([BC])'
Patterns: '<[AB]-[BC]-[CD].' '^[AB][BC][CD]' '^([AB])([BC])([CD])'
Patterns: '<[AB]-[BC]-[CDEFGHIKLMN].' '^[AB][BC][CDEFGHIKLMN]' '^([AB])([BC])([CDEFGHIKLMN])'
Patterns: '<{AB}-[BC]-[CD].' '^[^AB][BC][CD]' '^([^AB])([BC])([CD])'
Patterns: '<[AB]-{BC}-[CD].' '^[AB][^BC][CD]' '^([AB])([^BC])([CD])'
Patterns: '<[AB]-[BC]-{CD}.' '^[AB][BC][^CD]' '^([AB])([BC])([^CD])'
Patterns: '<{AB}-[BC]-{CD}.' '^[^AB][BC][^CD]' '^([^AB])([BC])([^CD])'
Patterns: 'A>.' 'A$' '(A)$'
Patterns: '{A}>.' '[^A]$' '([^A])$'
Patterns: '[AB]>.' '[AB]$' '([AB])$'
Patterns: '{AB}>.' '[^AB]$' '([^AB])$'
Patterns: 'A-B>.' 'AB$' '(A)(B)$'
Patterns: '[AB]-[BC]>.' '[AB][BC]$' '([AB])([BC])$'
Patterns: '[AB]-[BC]-[CD]>.' '[AB][BC][CD]$' '([AB])([BC])([CD])$'
Patterns: '[AB]-[BC]-[CDEFGHIKLMN]>.' '[AB][BC][CDEFGHIKLMN]$' '([AB])([BC])([CDEFGHIKLMN])$'
Patterns: '{AB}-[BC]-[CD]>.' '[^AB][BC][CD]$' '([^AB])([BC])([CD])$'
Patterns: '[AB]-{BC}-[CD]>.' '[AB][^BC][CD]$' '([AB])([^BC])([CD])$'
Patterns: '[AB]-[BC]-{CD}>.' '[AB][BC][^CD]$' '([AB])([BC])([^CD])$'
Patterns: '{AB}-[BC]-{CD}>.' '[^AB][BC][^CD]$' '([^AB])([BC])([^CD])$'
Patterns: '<A>.' '^A$' '^(A)$'
Patterns: '<{A}>.' '^[^A]$' '^([^A])$'
Patterns: '<[AB]>.' '^[AB]$' '^([AB])$'
Patterns: '<{AB}>.' '^[^AB]$' '^([^AB])$'
Patterns: '<A-B>.' '^AB$' '^(A)(B)$'
Patterns: '<[AB]-[BC]>.' '^[AB][BC]$' '^([AB])([BC])$'
Patterns: '<[AB]-[BC]-[CD]>.' '^[AB][BC][CD]$' '^([AB])([BC])([CD])$'
Patterns: '<[AB]-[BC]-[CDEFGHIKLMN]>.' '^[AB][BC][CDEFGHIKLMN]$' '^([AB])([BC])([CDEFGHIKLMN])$'
Patterns: '<{AB}-[BC]-[CD]>.' '^[^AB][BC][CD]$' '^([^AB])([BC])([CD])$'
Patterns: '<[AB]-{BC}-[CD]>.' '^[AB][^BC][CD]$' '^([AB])([^BC])([CD])$'
Patterns: '<[AB]-[BC]-{CD}>.' '^[AB][BC][^CD]$' '^([AB])([BC])([^CD])$'
Patterns: '<{AB}-[BC]-{CD}>.' '^[^AB][BC][^CD]$' '^([^AB])([BC])([^CD])$'
Patterns: 'A-[BC>].' 'A(?:[BC]|$)' '(A)((?:[BC]|$))'
Patterns: '<A-[BC>].' '^A(?:[BC]|$)' '^(A)((?:[BC]|$))'
Patterns: 'A-[BC>]>.' 'A(?:[BC]|$)$' '(A)((?:[BC]|$))$'
Patterns: '[<AB]-C.' '(?:^|[AB])C' '((?:^|[AB]))(C)'
Patterns: '[<AB]-[CD>].' '(?:^|[AB])(?:[CD]|$)' '((?:^|[AB]))((?:[CD]|$))'
Patterns: '[<ABC>].' '(?:^|[ABC$])' '((?:^|[ABC$]))'
Patterns: 'A(3).' 'A{3}' '(A{3})'
Patterns: 'x(3).' '.{3}' '(.{3})'
Patterns: 'A(3)-B(3).' 'A{3}B{3}' '(A{3})(B{3})'
Patterns: 'A(2,3)-B(1,3).' 'A{2,3}B{1,3}' '(A{2,3})(B{1,3})'
Patterns: 'A-x(1,5)-B.' 'A.{1,5}B' '(A)(.{1,5})(B)'
Patterns: '[AB](3,4).' '[AB]{3,4}' '([AB]{3,4})'
Patterns: '{AB}(3,5)-A(2).' '[^AB]{3,5}A{2}' '([^AB]{3,5})(A{2})'
A - correctly failed
A< - correctly failed
>A - correctly failed
A<. - correctly failed
>A. - correctly failed
[AB]<. - correctly failed
>[AB]. - correctly failed
AB. - correctly failed
A-B<. - correctly failed
A(B). - correctly failed
A.B - correctly failed
A.B. - correctly failed
A-B - correctly failed
[A-B] - correctly failed
{[A-B]}. - correctly failed
[{AB}]. - correctly failed
(A). - correctly failed
[A>]-B. - correctly failed
A-[<B]. - correctly failed
A(3,). - correctly failed
A(-1). - correctly failed
A(2, 5). - correctly failed
A(B,C). - correctly failed
A-[<G]. - correctly failed
[G>]-A. - correctly failed
1. - correctly failed
[1]. - correctly failed
[A1B]. - correctly failed
{1}. - correctly failed
[<]. - correctly failed
[>]. - correctly failed
[A<B]. - correctly failed
[A>B]. - correctly failed
|