Team:Paris Liliane Bettencourt/Project/SIP

From 2010.igem.org

Revision as of 13:05, 26 October 2010 by Theotime (Talk | contribs)



SIP Wiki Analyser





Find iGEM winner with satistics


This year, iGEM team Paris has made a software to analyse wiki, especially words in the wiki. The first view to use this software was, to find who will win the iGEM competition. We had several aproach to find that, using data on the wikis.
So to analyse the wiki, we have implemented an algorithm called SIP (Statistically Improbable Phrases), used by the Amazon website to caracterize their books. We try to find which are the most improbable words in a large sample (we use all iGEM wiki) but the most probable in the context. We can, with this way, have some original words from some teams, but also characterize their wiki by specifics words or terms. Amazon algorithm is not open, so we have use simple math to describe the system.

In Math language :

  • We have f/F
  • f the frequence of the word in the context : f = o/n (o is the occurence of the word, and n the number of words in the wiki).
  • F the frequence of the same word in a large sample : F = O/N (O, occurence in the sample, and N the number of words in the sample).

In this code, we use wget software to get all wiki of one year, then we remove all character non-alpha-numeric, and convert to lower case. New we compute the frenquencies of each words in a sqlite3 database.
We have extracted and calculated this for the last 3 years. Available on the bottom of the page.

We have displayed these words with graphical effects using this software written in java with different parameters.

For future, we will try next time to compare this words with words used in Instructor's papers (using ENTREZ API), to determine how Instructors influence the team. We think in the last part that an influence by the Instructor has positive results on the team, a better cooperation between memberships.

References