Changeset 15827
- Timestamp:
- 05/03/12 23:04:53 (13 months ago)
- Location:
- trunk
- Files:
-
- 2 added
- 10 modified
-
.pydevproject (modified) (1 diff)
-
.settings/org.eclipse.core.resources.prefs (modified) (1 diff)
-
MANIFEST.in (modified) (1 diff)
-
README (added)
-
doc/sphinx/source/optionsSet/sequenceFilter.txt (modified) (1 diff)
-
doc/theorie/LCS-SIMD/Matrix.xlsx (modified) (previous)
-
doc/theorie/Quality-Score/Quality-Score.aux (modified) (1 diff)
-
doc/theorie/Quality-Score/Quality-Score.pdf (modified) (previous)
-
doc/theorie/Quality-Score/Quality-Score.synctex.gz (modified) (previous)
-
doc/theorie/Quality-Score/Quality-Score.tex (modified) (5 diffs)
-
setup.py (modified) (3 diffs)
-
src/obipython.py (added)
Legend:
- Unmodified
- Added
- Removed
-
trunk/.pydevproject
r12859 r15827 7 7 <path>/OBITools/textwrangler</path> 8 8 </pydev_pathproperty> 9 <pydev_property name="org.python.pydev.PYTHON_PROJECT_VERSION">python 2. 6</pydev_property>10 <pydev_property name="org.python.pydev.PYTHON_PROJECT_INTERPRETER">Python -2.6</pydev_property>9 <pydev_property name="org.python.pydev.PYTHON_PROJECT_VERSION">python 2.7</pydev_property> 10 <pydev_property name="org.python.pydev.PYTHON_PROJECT_INTERPRETER">Python2.7</pydev_property> 11 11 </pydev_project> -
trunk/.settings/org.eclipse.core.resources.prefs
r8471 r15827 1 # Mon Jun 08 09:41:56 CEST 20091 #Tue Oct 25 23:50:16 ICT 2011 2 2 eclipse.preferences.version=1 3 encoding//doc/sphinx/source/conf.py=utf-8 3 4 encoding//src/jwarcher2tab.py=iso-8859-1 4 5 encoding//src/obitools/carto/__init__.py=latin1 -
trunk/MANIFEST.in
r12648 r15827 1 include setup.py 1 2 recursive-include src *.pyx *.pxd *.c *.h 2 3 -
trunk/doc/sphinx/source/optionsSet/sequenceFilter.txt
r10666 r15827 18 18 identifier of the sequence. The pattern is case 19 19 sensitive 20 21 .. cmdoption:: --id-list=<FILENAME> 22 23 a file containing a list of sequence identifiers to 24 be selected. 20 25 21 26 .. cmdoption:: -a <ATTRIBUTE_NAME>:<REGULAR_PATTERN>, --attribute=<ATTRIBUTE_NAME>:<REGULAR_PATTERN> -
trunk/doc/theorie/Quality-Score/Quality-Score.aux
r14658 r15827 1 1 \relax 2 \@writefile{lot}{\contentsline {table}{\numberline {1}{\ignorespaces default}}{1}} 3 \newlabel{defaulttable}{{}{1}} 4 \@writefile{lot}{\contentsline {table}{\numberline {2}{\ignorespaces default}}{2}} 5 \newlabel{defaulttable}{{}{2}} 2 \catcode`:\active 3 \catcode`;\active 4 \catcode`!\active 5 \catcode`?\active 6 \select@language{french} 7 \@writefile{toc}{\select@language{french}} 8 \@writefile{lof}{\select@language{french}} 9 \@writefile{lot}{\select@language{french}} 10 \@writefile{toc}{\contentsline {section}{\numberline {1}La fonction de score}{1}} 11 \@writefile{toc}{\contentsline {subsection}{\numberline {1.1}notation}{1}} 12 \@writefile{toc}{\contentsline {subsection}{\numberline {1.2}Score d'un match dans l'alignement}{1}} 13 \@writefile{lot}{\contentsline {table}{\numberline {1}{\ignorespaces cas d'un match AA apparent}}{1}} 14 \newlabel{defaulttable}{{1.2}{1}} 15 \@writefile{lot}{\contentsline {table}{\numberline {2}{\ignorespaces cas d'un mismatch AC apparent}}{2}} 16 \newlabel{defaulttable}{{1.2}{2}} -
trunk/doc/theorie/Quality-Score/Quality-Score.tex
r14658 r15827 4 4 %\geometry{landscape} % Activate for for rotated page geometry 5 5 %\usepackage[parfill]{parskip} % Activate to begin paragraphs with an empty line rather than an indent 6 \usepackage[french]{babel} 7 \usepackage[T1]{fontenc} 8 \usepackage[latin1]{inputenc} 6 9 \usepackage{graphicx} 7 10 \usepackage{amssymb} … … 10 13 \DeclareGraphicsRule{.tif}{png}{.png}{`convert #1 `dirname #1`/`basename #1 .tif`.png} 11 14 12 \title{ Brief Article}15 \title{Algorithme de micro assemblage entre les lectures pair-end} 13 16 \author{The Author} 14 17 %\date{} % Activate to display a given date or no date … … 16 19 \begin{document} 17 20 \maketitle 18 %\section{} 19 %\subsection{} 21 22 \section{La fonction de score} 23 24 \subsection{notation} 25 26 \begin{itemize} 27 \item[$P_{X}$ :] probabilité de la base lue sur la séquence X 28 \item[$P_{Y}$ :] probabilité de la base lue sur la séquence Y 29 \end{itemize} 30 31 $P_{X}$ et $P_{Y}$ sont liés au score de la base donnée par le séquenceur. Approximativement par la relation suivante (varie en fonction du schéma de score). 32 33 \begin{equation} 34 P_{\text{base lue}}= 1 - e^{-\frac{Q}{10}} 35 \end{equation} 36 37 Pour les Solexa, le type d'erreur prise en compte est une substitution. Nous ne considérons que ce séquenceur et posons que l'erreur à pu se produite de manière équivalente vers toutes les autres bases. 38 39 \begin{itemize} 40 \item[$S_{match}$ :] score d'un match plein entre deux nucléotides ($S_{match} > 0 $) 41 \item[$S_{mismatch}$ :] score d'un mismatch plein entre deux nucléotides ($S_{match} < 0 $) 42 \end{itemize} 43 44 45 46 \subsection{Score d'un match dans l'alignement} 47 48 Le score d'un match (ou d'un mismatch) est en fait la somme d'une fraction d'un match plein et d'une fraction d'un mismatch. 49 50 20 51 21 52 \begin{table}[htdp] … … 29 60 T & $P_{Y}.(1-P_{X})/3$ & $(1-P_{X})/3.(1-P_{Y})/3$ & $(1-P_{X})/3.(1-P_{Y})/3$ & $\mathbf{(1-P_{X})/3.(1-P_{Y})/3}$ \\\hline 30 61 \end{tabular} 31 \caption{ default}62 \caption{cas d'un match AA apparent} 32 63 \end{center} 33 64 \label{defaulttable} … … 83 114 T & $(1-P_{X})/3.(1-P_{Y})/3$ & $P_{Y}.(1-P_{X})/3$ & $(1-P_{X})/3.(1-P_{Y})/3$ & $\mathbf{(1-P_{X})/3.(1-P_{Y})/3}$ \\\hline 84 115 \end{tabular} 85 \caption{ default}116 \caption{cas d'un mismatch AC apparent} 86 117 \end{center} 87 118 \label{defaulttable} -
trunk/setup.py
r15765 r15827 6 6 7 7 8 from distutils.core import setup 8 try: 9 from setuptools.core import setup 10 except ImportError: 11 from distutils.core import setup 9 12 from distutils.extension import Extension 10 13 from distutils.util import convert_path … … 195 198 196 199 197 VERSION = '0.2. 300'200 VERSION = '0.2.400' 198 201 AUTHOR = 'Eric Coissac' 199 202 EMAIL = 'eric@coissac.eu' … … 237 240 packages=findPackage(SRC), 238 241 cmdclass = {'build_ext': build_ext,'build_scripts':build_scripts, 'install_scripts':install_scripts}, 239 requires=['Cython (>=0.1 2)'],242 requires=['Cython (>=0.16)'], 240 243 zip_safe = False, 241 244 ext_modules=EXTENTION)


