<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-GB">
	<id>https://www.vigyanwiki.in/index.php?action=history&amp;feed=atom&amp;title=Module%3AInterPro_content</id>
	<title>Module:InterPro content - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://www.vigyanwiki.in/index.php?action=history&amp;feed=atom&amp;title=Module%3AInterPro_content"/>
	<link rel="alternate" type="text/html" href="https://www.vigyanwiki.in/index.php?title=Module:InterPro_content&amp;action=history"/>
	<updated>2026-04-28T21:13:47Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.39.3</generator>
	<entry>
		<id>https://www.vigyanwiki.in/index.php?title=Module:InterPro_content&amp;diff=142865&amp;oldid=prev</id>
		<title>Indicwiki: 1 revision imported from :alpha:Module:InterPro_content</title>
		<link rel="alternate" type="text/html" href="https://www.vigyanwiki.in/index.php?title=Module:InterPro_content&amp;diff=142865&amp;oldid=prev"/>
		<updated>2023-04-26T06:19:06Z</updated>

		<summary type="html">&lt;p&gt;1 revision imported from &lt;a href=&quot;https://alpha.indicwiki.in/index.php?title=Module:InterPro_content&quot; class=&quot;extiw&quot; title=&quot;alpha:Module:InterPro content&quot;&gt;alpha:Module:InterPro_content&lt;/a&gt;&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;en-GB&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Revision as of 11:49, 26 April 2023&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-notice&quot; lang=&quot;en-GB&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(No difference)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Indicwiki</name></author>
	</entry>
	<entry>
		<id>https://www.vigyanwiki.in/index.php?title=Module:InterPro_content&amp;diff=142864&amp;oldid=prev</id>
		<title>alpha&gt;Indicwiki: Created page with &quot;local getArgs = require('Module:Arguments').getArgs  local beginText = 'This article incorporates text from the public domain Pfam and InterPro: ' local baseUrl = 'htt...&quot;</title>
		<link rel="alternate" type="text/html" href="https://www.vigyanwiki.in/index.php?title=Module:InterPro_content&amp;diff=142864&amp;oldid=prev"/>
		<updated>2023-02-08T07:36:57Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;local getArgs = require(&amp;#039;Module:Arguments&amp;#039;).getArgs  local beginText = &amp;#039;This article incorporates text from the public domain &lt;a href=&quot;/index.php?title=Pfam&amp;amp;action=edit&amp;amp;redlink=1&quot; class=&quot;new&quot; title=&quot;Pfam (page does not exist)&quot;&gt;Pfam&lt;/a&gt; and &lt;a href=&quot;/index.php?title=InterPro&amp;amp;action=edit&amp;amp;redlink=1&quot; class=&quot;new&quot; title=&quot;InterPro (page does not exist)&quot;&gt;InterPro&lt;/a&gt;: &amp;#039; local baseUrl = &amp;#039;htt...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;local getArgs = require('Module:Arguments').getArgs&lt;br /&gt;
&lt;br /&gt;
local beginText = 'This article incorporates text from the public domain [[Pfam]] and [[InterPro]]: '&lt;br /&gt;
local baseUrl = 'https://www.ebi.ac.uk/interpro/entry/'&lt;br /&gt;
&lt;br /&gt;
local p = {}&lt;br /&gt;
&lt;br /&gt;
local function interproLink(arg)&lt;br /&gt;
	-- text before first space, if any; otherwise, whole arg&lt;br /&gt;
	local accessionNumber = arg:match('^([^ ]*) ') or arg&lt;br /&gt;
&lt;br /&gt;
	-- text after first space, if any; otherwise, accessionNumber&lt;br /&gt;
	local linkText = arg:match(' (.*)') or accessionNumber&lt;br /&gt;
	&lt;br /&gt;
	return '[' .. baseUrl .. accessionNumber .. ' ' .. linkText .. ']'&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function renderList(args)&lt;br /&gt;
	local list_args = {&lt;br /&gt;
		class = 'inline'&lt;br /&gt;
	}&lt;br /&gt;
    for _, a in ipairs(args) do&lt;br /&gt;
    	table.insert(list_args, interproLink(a))&lt;br /&gt;
    end&lt;br /&gt;
&lt;br /&gt;
	return require('Module:List').horizontal(list_args)&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
function p.main(frame)&lt;br /&gt;
	local args = getArgs(frame)&lt;br /&gt;
&lt;br /&gt;
	if not args[1] then&lt;br /&gt;
		return '&amp;lt;div class=&amp;quot;error&amp;quot;&amp;gt;[[Module:InterPro content]]: required argument 1 is missing&amp;lt;/div&amp;gt;'&lt;br /&gt;
    elseif not args[2] then&lt;br /&gt;
		return '&amp;lt;div role=&amp;quot;note&amp;quot; style=&amp;quot;font-style: italic;&amp;quot;&amp;gt;' .. beginText .. interproLink(args[1]) .. '&amp;lt;/div&amp;gt;'&lt;br /&gt;
	else&lt;br /&gt;
		return '&amp;lt;div role=&amp;quot;note&amp;quot; style=&amp;quot;font-style: italic;&amp;quot;&amp;gt;' .. beginText .. renderList(args) .. '&amp;lt;/div&amp;gt;'&lt;br /&gt;
	end&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
return p&lt;/div&gt;</summary>
		<author><name>alpha&gt;Indicwiki</name></author>
	</entry>
</feed>