Saltar al contenido principal
LibreTexts Español

16.7: Alineación de Secuencias y Construcción de Árboles

  • Page ID
    56315
  • \( \newcommand{\vecs}[1]{\overset { \scriptstyle \rightharpoonup} {\mathbf{#1}} } \)

    \( \newcommand{\vecd}[1]{\overset{-\!-\!\rightharpoonup}{\vphantom{a}\smash {#1}}} \)

    \( \newcommand{\id}{\mathrm{id}}\) \( \newcommand{\Span}{\mathrm{span}}\)

    ( \newcommand{\kernel}{\mathrm{null}\,}\) \( \newcommand{\range}{\mathrm{range}\,}\)

    \( \newcommand{\RealPart}{\mathrm{Re}}\) \( \newcommand{\ImaginaryPart}{\mathrm{Im}}\)

    \( \newcommand{\Argument}{\mathrm{Arg}}\) \( \newcommand{\norm}[1]{\| #1 \|}\)

    \( \newcommand{\inner}[2]{\langle #1, #2 \rangle}\)

    \( \newcommand{\Span}{\mathrm{span}}\)

    \( \newcommand{\id}{\mathrm{id}}\)

    \( \newcommand{\Span}{\mathrm{span}}\)

    \( \newcommand{\kernel}{\mathrm{null}\,}\)

    \( \newcommand{\range}{\mathrm{range}\,}\)

    \( \newcommand{\RealPart}{\mathrm{Re}}\)

    \( \newcommand{\ImaginaryPart}{\mathrm{Im}}\)

    \( \newcommand{\Argument}{\mathrm{Arg}}\)

    \( \newcommand{\norm}[1]{\| #1 \|}\)

    \( \newcommand{\inner}[2]{\langle #1, #2 \rangle}\)

    \( \newcommand{\Span}{\mathrm{span}}\) \( \newcommand{\AA}{\unicode[.8,0]{x212B}}\)

    \( \newcommand{\vectorA}[1]{\vec{#1}}      % arrow\)

    \( \newcommand{\vectorAt}[1]{\vec{\text{#1}}}      % arrow\)

    \( \newcommand{\vectorB}[1]{\overset { \scriptstyle \rightharpoonup} {\mathbf{#1}} } \)

    \( \newcommand{\vectorC}[1]{\textbf{#1}} \)

    \( \newcommand{\vectorD}[1]{\overrightarrow{#1}} \)

    \( \newcommand{\vectorDt}[1]{\overrightarrow{\text{#1}}} \)

    \( \newcommand{\vectE}[1]{\overset{-\!-\!\rightharpoonup}{\vphantom{a}\smash{\mathbf {#1}}}} \)

    \( \newcommand{\vecs}[1]{\overset { \scriptstyle \rightharpoonup} {\mathbf{#1}} } \)

    \( \newcommand{\vecd}[1]{\overset{-\!-\!\rightharpoonup}{\vphantom{a}\smash {#1}}} \)

    UGENE

    El siguiente video ilustra el proceso de construcción de árboles usando MUSCLE y PhyML en UGENE.

    Línea de Comando

    Lo siguiente requiere:

    • Un entorno similar a Unix como Linux o macOS
    • MUSCLE para realizar un alineamiento de múltiples secuencias
    • PhyML para generar máxima verosimilitud
    • FigTree para manipular el árbol

    Descarga el archivo de ejemplo naranjas. En el directorio de descargas, realice lo siguiente:

    1

    2

    3

    4

    5

    6

    7

    8

    9

    descomprimir orange.zip

    cd naranja

    cat. /*txt >> naranjas.fasta ## fusiona todos los archivos en un solo archivo fasta

    muscular - en naranjas.fasta -phyiout naranjas.phy

    ## -phyiout le dice a Muscle que use el formato phylip intercalado para la salida

    phyml -i naranjas.phy -m HKY85

    ## -m es para el método y HKY85 es el método de nucleótidos predeterminado que usamos en UGENE

    mv naranjas.phy_phyml_árbol.txt naranjas.nwk

    ## cambiar el nombre de la salida para reflejar que es un archivo nwk


    This page titled 16.7: Alineación de Secuencias y Construcción de Árboles is shared under a CC BY-NC-SA 4.0 license and was authored, remixed, and/or curated by Bio-OER.