Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a multiple strings like this with sequences:

 String 1:
    AAGCTAGCAGCTTT......
String 2:
    TAGCTAGCAGCTTA...
String 3:
    AGGCTAGCAGCATT

    .
    .
    .
    300 of them

I want to generate a matrix of differences between each of the strings.. So I want to know the difference between string one and two is 2 and difference between strings one abd three is 2 and difference between two and three is 4, etc. Any ideas into the best and fastest way to compare the 300 x 300 strings?

share|improve this question
2  
What is a "fasta file"? What is "base difference"? Most of the people here are not biologists. Whenever you bring in something outside of programming, you need to explain it. – sawa Dec 20 '12 at 12:52
@sawa Agreed. Needs a better explanation. – MurifoX Dec 20 '12 at 12:54
Sorry for the confusion. I've edited it now and hope that makes more sense. – bioinf80 Dec 20 '12 at 13:02
sounds a lot like levenshtein distance to me – Frederick Cheung Dec 20 '12 at 13:10
You still have not explained what you mean by the difference between strings. And your sentence is actually difficult to parse. Furthermore, it is not clear why you need to compare 300 x 300 strings. Isn't it comparing pairs from 300 strings, or in other words 300 x 299 / 2 combinations? – sawa Dec 20 '12 at 13:24
show 1 more comment

closed as not a real question by sawa, Lee Jarvis, lucapette, Linger, Matt Ball Dec 20 '12 at 13:44

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

Well, to calculate the number of different chars on between two strings, you can do something like this:

string1 = 'AAGCTAGCAGCTTT'
string2 = 'TAGCTAGCAGCTTA'
array1 = string1.split('') # Converts the string into an array of chars
array2 = string2.split('') # Converts the string into an array of chars
zipped = array1.zip(array2) # Create a new array of arrays, that puts the respective elements of a certain index together
count = 0 # Basic counter
zipped.each do |z|
  count += 1 if z[0] != z[1]
end
count # Number of different chars

This is a simple method, but you can adjust it to your needs.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.