<?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/"
	
	>
<channel>
	<title>
	Comments on: Protein flexibility calculation with Python	</title>
	<atom:link href="https://www.polarmicrobes.org/protein-flexibility-calculation-with-python/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.polarmicrobes.org/protein-flexibility-calculation-with-python/</link>
	<description>Marine Microbial Ecology</description>
	<lastBuildDate>Thu, 11 Oct 2018 16:06:24 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>
		By: Jeff		</title>
		<link>https://www.polarmicrobes.org/protein-flexibility-calculation-with-python/#comment-395</link>

		<dc:creator><![CDATA[Jeff]]></dc:creator>
		<pubDate>Thu, 11 Oct 2018 16:06:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.polarmicrobes.org/?p=1181#comment-395</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.polarmicrobes.org/protein-flexibility-calculation-with-python/#comment-394&quot;&gt;Alexios Chatzigoulas&lt;/a&gt;.

Cool, thanks Alexios!]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.polarmicrobes.org/protein-flexibility-calculation-with-python/#comment-394">Alexios Chatzigoulas</a>.</p>
<p>Cool, thanks Alexios!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Alexios Chatzigoulas		</title>
		<link>https://www.polarmicrobes.org/protein-flexibility-calculation-with-python/#comment-394</link>

		<dc:creator><![CDATA[Alexios Chatzigoulas]]></dc:creator>
		<pubDate>Thu, 11 Oct 2018 15:31:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.polarmicrobes.org/?p=1181#comment-394</guid>

					<description><![CDATA[Very nice and helpful work. I have a few suggestions to make it even better. The way you smooth the b_factors searches the next 8 amino acids while it should look on the next 4 and the previous 4 amino acids. Also your if statement (if len(win) == 9) prevents the return of all values. I suggest the following code for the smoothing:

    ## average over 9 aa window     
    b_factors_win = []
    it = 0
    for b in range(0, len(b_factors)):
        if b in range(0,4):
            win = b_factors[b - it:b + 5]
            b_win = sum(map(float, win)) / len(win)
            b_factors_win.append(b_win)
            it += 1
        else:
            win = b_factors[b - 4:b + 5]
            b_win = sum(map(float, win)) / len(win)
            b_factors_win.append(b_win)]]></description>
			<content:encoded><![CDATA[<p>Very nice and helpful work. I have a few suggestions to make it even better. The way you smooth the b_factors searches the next 8 amino acids while it should look on the next 4 and the previous 4 amino acids. Also your if statement (if len(win) == 9) prevents the return of all values. I suggest the following code for the smoothing:</p>
<p>    ## average over 9 aa window<br />
    b_factors_win = []<br />
    it = 0<br />
    for b in range(0, len(b_factors)):<br />
        if b in range(0,4):<br />
            win = b_factors[b &#8211; it:b + 5]<br />
            b_win = sum(map(float, win)) / len(win)<br />
            b_factors_win.append(b_win)<br />
            it += 1<br />
        else:<br />
            win = b_factors[b &#8211; 4:b + 5]<br />
            b_win = sum(map(float, win)) / len(win)<br />
            b_factors_win.append(b_win)</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Jeff		</title>
		<link>https://www.polarmicrobes.org/protein-flexibility-calculation-with-python/#comment-289</link>

		<dc:creator><![CDATA[Jeff]]></dc:creator>
		<pubDate>Thu, 10 Dec 2015 16:48:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.polarmicrobes.org/?p=1181#comment-289</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.polarmicrobes.org/protein-flexibility-calculation-with-python/#comment-288&quot;&gt;Pedro Avellar Costa&lt;/a&gt;.

Thanks for inquiring... unfortunately we have not included this in a publication yet (on the to do list!).  Feel free to use the code with a mention in acknowledgements.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.polarmicrobes.org/protein-flexibility-calculation-with-python/#comment-288">Pedro Avellar Costa</a>.</p>
<p>Thanks for inquiring&#8230; unfortunately we have not included this in a publication yet (on the to do list!).  Feel free to use the code with a mention in acknowledgements.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Pedro Avellar Costa		</title>
		<link>https://www.polarmicrobes.org/protein-flexibility-calculation-with-python/#comment-288</link>

		<dc:creator><![CDATA[Pedro Avellar Costa]]></dc:creator>
		<pubDate>Thu, 10 Dec 2015 14:48:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.polarmicrobes.org/?p=1181#comment-288</guid>

					<description><![CDATA[Any chance you have published anywhere so I can properly reference you?]]></description>
			<content:encoded><![CDATA[<p>Any chance you have published anywhere so I can properly reference you?</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
