<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Approximate string matching metrics with amatch</title>
	<atom:link href="http://biorelated.com/2009/01/06/approximate-string-matching-metrics-with-amatch/feed/" rel="self" type="application/rss+xml" />
	<link>http://biorelated.com/2009/01/06/approximate-string-matching-metrics-with-amatch/</link>
	<description>[bioinformatics,biology,ruby,rails].each do &#124;b&#124; puts b.blog end</description>
	<lastBuildDate>Tue, 02 Feb 2010 16:36:09 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Marwa</title>
		<link>http://biorelated.com/2009/01/06/approximate-string-matching-metrics-with-amatch/#comment-143</link>
		<dc:creator>Marwa</dc:creator>
		<pubDate>Thu, 24 Dec 2009 21:24:00 +0000</pubDate>
		<guid isPermaLink="false">http://biorelated.wordpress.com/?p=75#comment-143</guid>
		<description>It&#039;s required from me to implement a simple spell checker 
using both algorithms (longest common subsequence &amp; edit distance).
So, what  i asked for is how i can use both of them to get 
an optimized solution.</description>
		<content:encoded><![CDATA[<p>It&#8217;s required from me to implement a simple spell checker<br />
using both algorithms (longest common subsequence &amp; edit distance).<br />
So, what  i asked for is how i can use both of them to get<br />
an optimized solution.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: biorelated</title>
		<link>http://biorelated.com/2009/01/06/approximate-string-matching-metrics-with-amatch/#comment-131</link>
		<dc:creator>biorelated</dc:creator>
		<pubDate>Wed, 09 Dec 2009 13:53:11 +0000</pubDate>
		<guid isPermaLink="false">http://biorelated.wordpress.com/?p=75#comment-131</guid>
		<description>Also you might want to look at &lt;a href=&quot;http://github.com/binarylogic/searchlogic&quot; rel=&quot;nofollow&quot;&gt;searchlogic gem (http://github.com/binarylogic/searchlogic)&lt;/a&gt; It might be more appropriate in your case.</description>
		<content:encoded><![CDATA[<p>Also you might want to look at <a href="http://github.com/binarylogic/searchlogic" rel="nofollow">searchlogic gem (</a><a href="http://github.com/binarylogic/searchlogic" rel="nofollow">http://github.com/binarylogic/searchlogic</a>) It might be more appropriate in your case.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John</title>
		<link>http://biorelated.com/2009/01/06/approximate-string-matching-metrics-with-amatch/#comment-130</link>
		<dc:creator>John</dc:creator>
		<pubDate>Wed, 09 Dec 2009 13:46:58 +0000</pubDate>
		<guid isPermaLink="false">http://biorelated.wordpress.com/?p=75#comment-130</guid>
		<description>Thank you for the reply.
I&#039;m sorry for being unclear as I&#039;m a Rails beginner.
Yes, I&#039;m using the ActiveRecord finder method.  I have a search field that searches by project name.  Well, the stored project name can be very long. It&#039;s almost like a keyword search. (whoa)
I think I just had an idea.  I&#039;m going to pursue that avenue.
Thanks again.</description>
		<content:encoded><![CDATA[<p>Thank you for the reply.<br />
I&#8217;m sorry for being unclear as I&#8217;m a Rails beginner.<br />
Yes, I&#8217;m using the ActiveRecord finder method.  I have a search field that searches by project name.  Well, the stored project name can be very long. It&#8217;s almost like a keyword search. (whoa)<br />
I think I just had an idea.  I&#8217;m going to pursue that avenue.<br />
Thanks again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: biorelated</title>
		<link>http://biorelated.com/2009/01/06/approximate-string-matching-metrics-with-amatch/#comment-129</link>
		<dc:creator>biorelated</dc:creator>
		<pubDate>Wed, 09 Dec 2009 13:03:39 +0000</pubDate>
		<guid isPermaLink="false">http://biorelated.wordpress.com/?p=75#comment-129</guid>
		<description>Hi,
Do you mean adding it to an activerecord finder method in rails? or which find method?</description>
		<content:encoded><![CDATA[<p>Hi,<br />
Do you mean adding it to an activerecord finder method in rails? or which find method?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John McLeod</title>
		<link>http://biorelated.com/2009/01/06/approximate-string-matching-metrics-with-amatch/#comment-128</link>
		<dc:creator>John McLeod</dc:creator>
		<pubDate>Tue, 08 Dec 2009 19:09:41 +0000</pubDate>
		<guid isPermaLink="false">http://biorelated.wordpress.com/?p=75#comment-128</guid>
		<description>Hello,
Just a question, how could I add &#039;amatch&#039; to a standard find method?
Thanks for any help.
John</description>
		<content:encoded><![CDATA[<p>Hello,<br />
Just a question, how could I add &#8216;amatch&#8217; to a standard find method?<br />
Thanks for any help.<br />
John</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob Syme</title>
		<link>http://biorelated.com/2009/01/06/approximate-string-matching-metrics-with-amatch/#comment-104</link>
		<dc:creator>Rob Syme</dc:creator>
		<pubDate>Thu, 08 Jan 2009 09:27:50 +0000</pubDate>
		<guid isPermaLink="false">http://biorelated.wordpress.com/?p=75#comment-104</guid>
		<description>Just what I needed, thanks for the tip!

I don&#039;t think that Bio::Sequence objects have a &#039;to_seq&#039; method, but they do have a &#039;seq&#039; method :)
-r</description>
		<content:encoded><![CDATA[<p>Just what I needed, thanks for the tip!</p>
<p>I don&#8217;t think that Bio::Sequence objects have a &#8216;to_seq&#8217; method, but they do have a &#8216;seq&#8217; method :)<br />
-r</p>
]]></content:encoded>
	</item>
</channel>
</rss>
