473,803 Members | 2,038 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

pattern finding algorithm

50 New Member
Hi,

I'm checking to see if you guys may be able to help me with an algorithm for finding patterns. I have around 2000 short sequences (of length 9) that are aligned. I want to be able to extract all common patterns on the same positions and report the number of occurrences.

For example in the following:

ACGCATTCA
ACTGGATAC
TCAGCCATC

I would like the following output (where a full stop represents any character)

(AC....T..) 2 occurrences (pattern between sequence 1 and 2)
(.C.G...C) 2 occurrences (pattern between sequence 2 and 3)
(.C.......) 2 occurrences (pattern between sequence 1 and 3)

As you can see, the way that I am planning on doing this now requires sum(n-1...1) comparisons. Is there a more efficient way of doing this with less comparisons?

Thanks
Jul 31 '07
13 2544
bvdet
2,851 Recognized Expert Moderator Specialist
Hi,

A quick question on the above algorithm, it seems to performing more comparisons than necessary, though I can't seem to find where.

I decided to experiment to get the number of comparisons required to compare each line with every other line - and not against itself (line 1 to 1) or lines already compared ( as comparing line 1 to 2 is the same as comparing line 2 to 1).

Expand|Select|Wrap|Line Numbers
  1. line_num = 0
  2. counter = 0
  3.  
  4. for line in myList:
  5.     elmt_num = 0
  6.  
  7.     for elmt in myList:
  8.         i = 0
  9.         if line_num < elmt_num # As I don't want to compare twice and against the same seq
  10.             while i<9:
  11.                 counter += 1
  12.                 i += 1
  13.  
  14.         elmt_num += 1
  15.  
  16.     line_num += 1
  17.  
  18. print "%d comparisons were made between %d lines" % (counter, line_num)
  19.  
I get the following output for my dataset

7587459 comparisons were made between 1299 lines

Which is exactly what I would expect from comparing 9 times (n**2 -n)/2 where n is the number of sequences.

The output I get from bvdet's algorithm is however 8430510 comparisons (10 time (n**2-n)/2) I fail to see where the extra 1 comparison each time is coming from.

If someone can let me know, I would be thankful.

Cheers
kdt - I ran the following function and counted the comparisons:
Expand|Select|Wrap|Line Numbers
  1. def patt_match(sList):
  2.     global count
  3.     count = 0
  4.     sList = sList[:]
  5.     patt = re.compile('[ACGT]')
  6.     dd = {}
  7.     indx = 0
  8.     sList = strList[:]
  9.     while len(sList) > 0:
  10.         s1 = sList[0]
  11.         for j, item in enumerate(sList[1:]):
  12.             res = ''
  13.             for i, s in enumerate(s1):
  14.                 count += 1
  15.                 if s == item[i]:
  16.                     res += s
  17.                 else:
  18.                     res += '.'
  19.             if patt.search(res):
  20.                 if dd.has_key(res):
  21.                     dd[res].append([indx, j+1+indx])
  22.                 else:
  23.                     dd[res] = [[indx, j+1+indx], ]
  24.         indx += 1      
  25.         sList.pop(0)
  26.     return dd
Output:
>>> dd = patt_match(strL ist)
>>> count
7587459
>>>
Aug 2 '07 #11
kdt
50 New Member
hi bvdet,

thanks for getting back to me on this. Unfortunately when I run your script I still get the same results. Would it be possible for you to check the number of lines by adding another counter after the line

Expand|Select|Wrap|Line Numbers
  1. while len(sList) > 0:
Thanks
Aug 4 '07 #12
bartonc
6,596 Recognized Expert Expert
hi bvdet,

thanks for getting back to me on this. Unfortunately when I run your script I still get the same results. Would it be possible for you to check the number of lines by adding another counter after the line

Expand|Select|Wrap|Line Numbers
  1. while len(sList) > 0:
Thanks
Expand|Select|Wrap|Line Numbers
  1. # line 2 & 3 would read
  2.     global count linecount
  3.     count = linecount = 0
  4. # insert at the level of (current line 10) - this looks like the lines to me -
  5.         linecount += 1
Aug 4 '07 #13
bvdet
2,851 Recognized Expert Moderator Specialist
hi bvdet,

thanks for getting back to me on this. Unfortunately when I run your script I still get the same results. Would it be possible for you to check the number of lines by adding another counter after the line

Expand|Select|Wrap|Line Numbers
  1. while len(sList) > 0:
Thanks
Here are the results:
>>> len(strList)
1299
>>> dd = patt_match(strL ist)
>>> len(dd)
53939
>>> count
7587459
>>> linecount
843051
>>> itemcount
1299
>>>
Here is the function:
Expand|Select|Wrap|Line Numbers
  1. def patt_match(sList):
  2.     global count, linecount, itemcount
  3.     count = linecount = itemcount = 0
  4.     sList = sList[:]
  5.     patt = re.compile('[ACGT]')
  6.     dd = {}
  7.     indx = 0
  8.     while len(sList) > 0:
  9.         s1 = sList[0]
  10.         for j, item in enumerate(sList[1:]):
  11.             res = ''
  12.             for i, s in enumerate(s1):
  13.                 count += 1
  14.                 if s == item[i]:
  15.                     res += s
  16.                 else:
  17.                     res += '.'
  18.             if patt.search(res):
  19.                 if dd.has_key(res):
  20.                     dd[res].append([indx, j+1+indx])
  21.                 else:
  22.                     dd[res] = [[indx, j+1+indx], ]
  23.             linecount += 1
  24.         indx += 1
  25.         itemcount += 1
  26.         sList.pop(0)
  27.     return dd
Aug 4 '07 #14

Sign in to post your reply or Sign up for a free account.

Similar topics

3
5115
by: kittykat | last post by:
Hi, I was wondering if you could help me. I am writing a program in C++, and the problem is, i have very limited experience in this language. I would like my user to enter a specific pattern, and I want my program to search a text file for this pattern, and let the user know if this pattern exists or not. So far, i have figured out how to make my prgram read the text file, but i'm not sure how to take the information the user inserts...
7
2809
by: Séb | last post by:
Hi everyone, I'm relatively new to python and I want to write a piece of code who do the following work for data mining purpose : 1) I have a list of connexion between some computers. This list has this format : Ip A Date Ip B .... ... ...
10
4985
by: bpontius | last post by:
The GES Algorithm A Surprisingly Simple Algorithm for Parallel Pattern Matching "Partially because the best algorithms presented in the literature are difficult to understand and to implement, knowledge of fast and practical algorithms is not commonplace." Hume and Sunday, "Fast String Searching", Software - Practice and Experience, Vol. 21 # 11, pp 1221-48
4
9774
by: aevans1108 | last post by:
expanding this message to microsoft.public.dotnet.xml Greetings Please direct me to the right group if this is an inappropriate place to post this question. Thanks. I want to format a numeric value according to an arbitrary regular expression.
6
4707
by: Daniel Santa Cruz | last post by:
Hello all, I've been trying to go over my OO Patterns book, and I decided to try to implement them in Python this time around. I figured this would help me learn the language better. Well, I've gotten stuck with my first go at OO patterns with Python. I guess it goes without say that some of the stuff that are taken for granted in most of the books (ie. Interfaces, Abstract classes) don't really apply to Python per say, but the idea...
22
4750
by: Krivenok Dmitry | last post by:
Hello All! I am trying to implement my own Design Patterns Library. I have read the following documentation about Observer Pattern: 1) Design Patterns by GoF Classic description of Observer. Also describes implementation via ChangeManager (Mediator + Singleton) 2) Pattern hatching by John Vlissides Describes Observer's implementation via Visitor Design Pattern. 3) Design Patterns Explained by Alan Shalloway and James Trott
0
1267
by: ltruett | last post by:
....and I've finally completed my series of GOF design patterns using PHP 5 with the Template Pattern. http://www.fluffycat.com/PHP-Design-Patterns/Template/ This is a pretty useful pattern, and one that you could easily use without even realizing it is a pattern. Essentially you have an abstract template class that defines a non-abstract method with an algorithm. Also in the abstract template
4
1583
by: dhinakar_ve | last post by:
Hi All, I am writing a function to generate the strings based on a pattern. For example A will generate A1, A2 and A3. If the pattern is A then it will generate the strings A11, A12, A21, A22, A31, A32. What is the best algorithm to accomplish this? Thanks for your time. ananihdv
4
8099
by: krishnai888 | last post by:
I had already asked this question long back but no one has replied to me..I hope someone replies to me because its very important for me as I am doing my internship. I am currently writing a code involving lot of matrices. At one point I need to calculate the square root of a matrix e.g. A which contains non-zero off-diagonal elements. I searched for a lot of info on net but no algorithm worked. My best bet for finding square root was to find...
0
9562
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10309
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
10068
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9119
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7600
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6840
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
1
4274
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3795
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2968
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.