'dock_rescore' con YASARA para complejos receptor-ligando.


Podemos calcular el valor de ΔG, Kcal/mol de la unión de un ligando cristaligráfico con receptor usando el macro 'dock_rescore' de YASARA. Igualmente, podemos hacer ese cálculo cuando disponemos de poses de ligandos calculadas con cualquier porgrama de 'docking'. Para el cálculo de muchos complejos receptor-ligando, el uso de Linux nos ahorra muchos dolores de cabeza.

Disponemos de dos ficheros de datos: '6M91mod-peptide-repair_tres_ligand.sdf' (con 1001 ligandos) y '6M91mod-peptide-repair_tres_receptor.pdb'. Estos ficheros se encuentran en la ruta /home/jant/runRESCORE/.

Editamos el fichero dock_rescore.mcr según nuestros intereses, en este ejemplo según los valores que se ven en la imagen justo debajo, localizado en la ruta /home/jant/yasara-26.05.05/mcr/.


Los scripts de Python que se muestran a continuación se encuentran en la ruta /home/jant/py-linux/16_rescore-YAS/ y se ejecutan secuencialmente.

Para comprender la construcción de cada script es necesario ver la apertura que hace YASARA de los ficheros '6M91mod-peptide-repair_tres_ligand.sdf' (con 1001 ligandos) y '6M91mod-peptide-repair_tres_receptor.pdb' y eso se muestra eb la imagen justo debajo. El 'Obj 1' corresponde al receptor y los siguientes 1001 corresponden a los ligandos y secuencialmente se nombran como 'A_J97_601', 'tres__1', 'tres__2', 'tres__3', etc.

En vista de estos datos, necesitamos crear un fichero de texto (_lista-4-variables-en-4-columnas.txt en nuestro ejemplo) con dos variables separadas por tabuladores. Las columnas 3 y 4 son repetición de la columna 2 pero mantengo esa estructura por comodidad.


Mi primer script de Python para procesar los datos de rescoring se llama 160_recalcular-deltaG-dos-variables.py y tiene la siguiente estructura:

# -*- coding: utf-8 -*-
import os
from pathlib import Path

# --- CONFIGURACION DE RUTAS ---
base_path = Path('/home/jant/py-linux/16_rescore-YAS') 

lista_path = base_path / '_lista-4-variables-en-4-columnas.txt'
template_path = base_path / 'run-macro_template_SCORE.mcr'

# Ahora la salida es la misma carpeta base que indicaste
output_dir = Path('/home/jant/py-linux/16_rescore-YAS')

# Crear carpeta si no existe (aunque ya deberia existir)
output_dir.mkdir(parents=True, exist_ok=True)

# Leer plantilla
try:
    template = template_path.read_text(encoding='utf-8')
except FileNotFoundError:
    print(f"Error: No se encontro la plantilla en {template_path}")
    exit()

# Leer variables y generar macros
if not lista_path.exists():
    print(f"Error: No se encontro el archivo de variables en {lista_path}")
    exit()

with open(lista_path, 'r', encoding='utf-8') as f:
    for line in f:
        line = line.strip()
        if not line:
            continue

        partes = line.split('\t')

        if len(partes) < 2:
            print(f"Linea omitida (formato incorrecto): {line}")
            continue

        variable_1 = partes[0]
        variable_2 = partes[1]

        # Reemplazo encadenado para asegurar que ambas variables se apliquen
        contenido = template.replace('[variable-1]', variable_1).replace('[variable-2]', variable_2)

        # Nombre del archivo de salida usando la variable_2
        output_file = output_dir / f'{variable_2}.mcr'
        
        # Guardar
        output_file.write_text(contenido, encoding='utf-8')

        print(f'Generado: {output_file.name}')

print("\n>>> Macros generados exitosamente en /home/jant/py-linux/16_rescore-YAS/")


El script anterior necesita el fichero 'run-macro_template_SCORE.mcr' como plantilla (justo debajo), a partir de la cual se genera un macro por cada ligando (en nuestro ejemplo 1001 ficheros *.mcr):

Clear
LoadPDB "/home/jant/runRESCORE/6M91mod-peptide-repair_tres_receptor.pdb"
Loadsdf "/home/jant/runRESCORE/6M91mod-peptide-repair_tres_ligand.sdf",Transfer=yes
SaveYOb 1,/home/jant/runRESCORE/[variable-2]_receptor.yob
SaveSDF [variable-1],/home/jant/runRESCORE/[variable-2]_ligand.sdf,Transform=Yes,DativeBonds=No
MacroTarget /home/jant/runRESCORE/[variable-2]_receptor.yob,Remove=FromUnderscore
Include /home/jant/yasara-26.05.05/mcr/dock_runlocal.mcr
Exit

El siguiente script de Python genera 1001 ficheros *.sbatch para lanzar a la cola de SLURM 1001 'jobs', se llama 161_template_variable_DOCKING.py y tiene la siguiente estructura:

# -*- coding: iso-8859-1 -*-
import os

# Ruta y nombre de archivo de la lista de variables
var_file_path = '/home/jant/py-linux/16_rescore-YAS/_lista-4-variables-en-4-columnas.txt'

# Ruta y nombre de archivo de la plantilla de configuración
template_file_path = '/home/jant/py-linux/16_rescore-YAS/_15-template-config-UMH_DOCKING.txt'

# Abrir el archivo de variables y leer las líneas
with open(var_file_path, 'r') as var_file:
    var_lines = var_file.readlines()

    # Para cada línea de variables, generar una nueva plantilla con las variables sustituidas
for line in var_lines:
    # Separar las variables por tabuladores y eliminar cualquier espacio en blanco
    variables = [var.strip() for var in line.split('\t')]
    # Leer la plantilla de configuración y sustituir las variables
    with open(template_file_path, 'r') as template_file:
        template = template_file.read()
        for i in range(len(variables)):
            template = template.replace(f'[variable-{i+1}]', variables[i])
    
            # Guardar el archivo de configuración generado con el nombre de la primera variable
            # y la extensión ".sbatch"
    output_file_path = f"/home/jant/py-linux/16_rescore-YAS/_RES{variables[1]}.sbatch"
    with open(output_file_path, 'w') as output_file:
        output_file.write(template)
print("Proceso completado con éxito!")

Exit

El script anterior necesita el fichero de plantilla: '_15-template-config-UMH_DOCKING.txt'. Va a generar 1001 ficheros *.sbatch. El siguiente script de Python (162_template_docking_sh.py) genera un script de shell para cada job.

# -*- coding: utf-8 -*-
import os
import glob
import re

folder_path = "/home/jant/py-linux/16_rescore-YAS/"
file_pattern = "_RES"

# Función para extraer números y texto para orden natural
def natural_key(string_):
    """ Convierte "archivo10" en ["archivo", 10] para ordenar correctamente """
    return [int(s) if s.isdigit() else s.lower() for s in re.split(r'(\d+)', string_)]

# Obtener archivos
files = glob.glob(os.path.join(folder_path, file_pattern + "*"))

# --- ORDEN NATURAL ---
files.sort(key=natural_key)

with open("163_alanzar-DOCK.sh", "w") as f:
    for filename in files:
        # Usamos os.path.basename para que el nombre sea más limpio si es necesario
        # pero mantenemos la lógica de sbatch
        if os.path.isfile(filename):
            f.write(f"sbatch {filename}\n")

# Establecer permisos 777
os.chmod("163_alanzar-DOCK.sh", 0o777)

print(f"Script generado con {len(files)} archivos en orden natural.")
Exit

163_alanzar-DOCK.sh

sbatch /home/jant/py-linux/16_rescore-YAS/_RESA_J97_601.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__1.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__2.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__3.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__4.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__5.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__6.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__7.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__8.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__9.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__10.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__11.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__12.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__13.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__14.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__15.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__16.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__17.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__18.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__19.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__20.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__21.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__22.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__23.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__24.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__25.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__26.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__27.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__28.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__29.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__30.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__31.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__32.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__33.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__34.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__35.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__36.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__37.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__38.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__39.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__40.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__41.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__42.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__43.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__44.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__45.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__46.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__47.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__48.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__49.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__50.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__51.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__52.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__53.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__54.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__55.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__56.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__57.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__58.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__59.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__60.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__61.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__62.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__63.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__64.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__65.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__66.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__67.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__68.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__69.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__70.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__71.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__72.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__73.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__74.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__75.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__76.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__77.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__78.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__79.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__80.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__81.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__82.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__83.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__84.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__85.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__86.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__87.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__88.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__89.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__90.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__91.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__92.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__93.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__94.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__95.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__96.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__97.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__98.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__99.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__100.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__101.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__102.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__103.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__104.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__105.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__106.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__107.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__108.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__109.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__110.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__111.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__112.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__113.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__114.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__115.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__116.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__117.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__118.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__119.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__120.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__121.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__122.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__123.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__124.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__125.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__126.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__127.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__128.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__129.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__130.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__131.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__132.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__133.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__134.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__135.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__136.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__137.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__138.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__139.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__140.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__141.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__142.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__143.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__144.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__145.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__146.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__147.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__148.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__149.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__150.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__151.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__152.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__153.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__154.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__155.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__156.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__157.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__158.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__159.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__160.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__161.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__162.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__163.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__164.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__165.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__166.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__167.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__168.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__169.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__170.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__171.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__172.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__173.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__174.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__175.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__176.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__177.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__178.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__179.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__180.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__181.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__182.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__183.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__184.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__185.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__186.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__187.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__188.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__189.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__190.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__191.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__192.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__193.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__194.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__195.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__196.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__197.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__198.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__199.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__200.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__201.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__202.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__203.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__204.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__205.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__206.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__207.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__208.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__209.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__210.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__211.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__212.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__213.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__214.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__215.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__216.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__217.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__218.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__219.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__220.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__221.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__222.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__223.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__224.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__225.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__226.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__227.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__228.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__229.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__230.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__231.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__232.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__233.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__234.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__235.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__236.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__237.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__238.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__239.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__240.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__241.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__242.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__243.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__244.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__245.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__246.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__247.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__248.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__249.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__250.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__251.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__252.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__253.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__254.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__255.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__256.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__257.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__258.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__259.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__260.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__261.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__262.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__263.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__264.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__265.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__266.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__267.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__268.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__269.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__270.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__271.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__272.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__273.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__274.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__275.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__276.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__277.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__278.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__279.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__280.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__281.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__282.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__283.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__284.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__285.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__286.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__287.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__288.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__289.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__290.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__291.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__292.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__293.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__294.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__295.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__296.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__297.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__298.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__299.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__300.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__301.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__302.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__303.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__304.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__305.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__306.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__307.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__308.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__309.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__310.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__311.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__312.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__313.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__314.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__315.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__316.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__317.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__318.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__319.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__320.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__321.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__322.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__323.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__324.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__325.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__326.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__327.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__328.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__329.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__330.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__331.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__332.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__333.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__334.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__335.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__336.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__337.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__338.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__339.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__340.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__341.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__342.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__343.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__344.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__345.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__346.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__347.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__348.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__349.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__350.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__351.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__352.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__353.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__354.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__355.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__356.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__357.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__358.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__359.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__360.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__361.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__362.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__363.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__364.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__365.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__366.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__367.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__368.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__369.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__370.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__371.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__372.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__373.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__374.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__375.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__376.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__377.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__378.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__379.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__380.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__381.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__382.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__383.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__384.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__385.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__386.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__387.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__388.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__389.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__390.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__391.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__392.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__393.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__394.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__395.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__396.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__397.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__398.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__399.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__400.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__401.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__402.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__403.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__404.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__405.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__406.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__407.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__408.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__409.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__410.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__411.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__412.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__413.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__414.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__415.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__416.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__417.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__418.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__419.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__420.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__421.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__422.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__423.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__424.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__425.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__426.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__427.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__428.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__429.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__430.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__431.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__432.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__433.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__434.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__435.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__436.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__437.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__438.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__439.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__440.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__441.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__442.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__443.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__444.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__445.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__446.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__447.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__448.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__449.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__450.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__451.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__452.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__453.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__454.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__455.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__456.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__457.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__458.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__459.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__460.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__461.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__462.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__463.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__464.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__465.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__466.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__467.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__468.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__469.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__470.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__471.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__472.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__473.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__474.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__475.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__476.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__477.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__478.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__479.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__480.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__481.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__482.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__483.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__484.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__485.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__486.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__487.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__488.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__489.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__490.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__491.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__492.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__493.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__494.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__495.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__496.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__497.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__498.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__499.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__500.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__501.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__502.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__503.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__504.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__505.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__506.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__507.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__508.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__509.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__510.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__511.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__512.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__513.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__514.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__515.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__516.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__517.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__518.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__519.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__520.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__521.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__522.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__523.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__524.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__525.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__526.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__527.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__528.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__529.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__530.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__531.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__532.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__533.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__534.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__535.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__536.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__537.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__538.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__539.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__540.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__541.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__542.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__543.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__544.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__545.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__546.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__547.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__548.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__549.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__550.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__551.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__552.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__553.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__554.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__555.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__556.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__557.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__558.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__559.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__560.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__561.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__562.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__563.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__564.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__565.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__566.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__567.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__568.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__569.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__570.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__571.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__572.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__573.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__574.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__575.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__576.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__577.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__578.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__579.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__580.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__581.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__582.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__583.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__584.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__585.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__586.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__587.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__588.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__589.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__590.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__591.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__592.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__593.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__594.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__595.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__596.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__597.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__598.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__599.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__600.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__601.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__602.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__603.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__604.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__605.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__606.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__607.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__608.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__609.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__610.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__611.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__612.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__613.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__614.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__615.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__616.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__617.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__618.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__619.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__620.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__621.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__622.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__623.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__624.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__625.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__626.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__627.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__628.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__629.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__630.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__631.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__632.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__633.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__634.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__635.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__636.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__637.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__638.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__639.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__640.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__641.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__642.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__643.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__644.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__645.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__646.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__647.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__648.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__649.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__650.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__651.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__652.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__653.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__654.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__655.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__656.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__657.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__658.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__659.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__660.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__661.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__662.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__663.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__664.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__665.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__666.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__667.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__668.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__669.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__670.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__671.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__672.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__673.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__674.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__675.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__676.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__677.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__678.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__679.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__680.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__681.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__682.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__683.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__684.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__685.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__686.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__687.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__688.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__689.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__690.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__691.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__692.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__693.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__694.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__695.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__696.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__697.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__698.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__699.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__700.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__701.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__702.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__703.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__704.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__705.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__706.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__707.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__708.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__709.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__710.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__711.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__712.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__713.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__714.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__715.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__716.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__717.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__718.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__719.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__720.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__721.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__722.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__723.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__724.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__725.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__726.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__727.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__728.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__729.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__730.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__731.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__732.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__733.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__734.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__735.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__736.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__737.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__738.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__739.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__740.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__741.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__742.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__743.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__744.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__745.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__746.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__747.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__748.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__749.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__750.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__751.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__752.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__753.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__754.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__755.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__756.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__757.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__758.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__759.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__760.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__761.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__762.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__763.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__764.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__765.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__766.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__767.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__768.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__769.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__770.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__771.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__772.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__773.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__774.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__775.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__776.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__777.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__778.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__779.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__780.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__781.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__782.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__783.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__784.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__785.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__786.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__787.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__788.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__789.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__790.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__791.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__792.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__793.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__794.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__795.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__796.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__797.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__798.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__799.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__800.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__801.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__802.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__803.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__804.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__805.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__806.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__807.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__808.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__809.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__810.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__811.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__812.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__813.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__814.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__815.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__816.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__817.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__818.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__819.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__820.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__821.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__822.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__823.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__824.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__825.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__826.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__827.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__828.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__829.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__830.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__831.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__832.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__833.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__834.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__835.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__836.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__837.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__838.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__839.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__840.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__841.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__842.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__843.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__844.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__845.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__846.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__847.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__848.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__849.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__850.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__851.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__852.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__853.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__854.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__855.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__856.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__857.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__858.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__859.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__860.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__861.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__862.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__863.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__864.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__865.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__866.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__867.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__868.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__869.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__870.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__871.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__872.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__873.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__874.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__875.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__876.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__877.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__878.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__879.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__880.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__881.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__882.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__883.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__884.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__885.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__886.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__887.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__888.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__889.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__890.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__891.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__892.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__893.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__894.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__895.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__896.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__897.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__898.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__899.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__900.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__901.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__902.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__903.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__904.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__905.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__906.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__907.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__908.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__909.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__910.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__911.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__912.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__913.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__914.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__915.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__916.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__917.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__918.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__919.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__920.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__921.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__922.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__923.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__924.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__925.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__926.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__927.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__928.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__929.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__930.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__931.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__932.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__933.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__934.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__935.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__936.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__937.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__938.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__939.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__940.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__941.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__942.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__943.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__944.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__945.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__946.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__947.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__948.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__949.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__950.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__951.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__952.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__953.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__954.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__955.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__956.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__957.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__958.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__959.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__960.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__961.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__962.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__963.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__964.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__965.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__966.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__967.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__968.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__969.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__970.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__971.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__972.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__973.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__974.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__975.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__976.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__977.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__978.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__979.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__980.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__981.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__982.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__983.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__984.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__985.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__986.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__987.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__988.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__989.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__990.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__991.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__992.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__993.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__994.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__995.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__996.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__997.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__998.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__999.sbatch
sbatch /home/jant/py-linux/16_rescore-YAS/_REStres__1000.sbatch

Y para terminar, el script 164_analiza-logs.py rescata los valores de ΔG de generados con el dock_rescore.

# -*- coding: utf-8 -*-
from pathlib import Path
import re

# --- CONFIGURACION ---
ruta = Path("/home/jant/runRESCORE")
salida = ruta / "_resultados-TRES.txt"

def natural_key(text):
    return [int(c) if c.isdigit() else c.lower() for c in re.split(r'(\d+)', text)]

def limpiar_numero(texto):
    """ Convierte a float y luego a string para eliminar ceros a la izquierda """
    try:
        # Al convertir a float, 000007.8930 se convierte en 7.893
        valor = float(texto.strip())
        # Si prefieres mantener un numero fijo de decimales, usa: return f"{valor:.4f}"
        return str(valor)
    except ValueError:
        return texto.strip()

# Buscar *.log
logs = sorted(ruta.glob("*.log"), key=lambda x: natural_key(x.stem))

print(f"Procesando {len(logs)} archivos en {ruta}...")

with open(salida, "w", encoding="utf-8") as fout:
    # Cabecera
    fout.write("Compound\tClu\tBind.energy[kcal/mol]\tDissoc. constant [pM]\tCon.Surf[A^2]\n")

    for log_file in logs:
        try:
            linea_datos = None
            with open(log_file, "r", encoding="utf-8", errors="ignore") as fin:
                en_seccion_clusters = False
                for line in fin:
                    if "After clustering" in line:
                        en_seccion_clusters = True
                    if en_seccion_clusters and line.strip().startswith("001 |"):
                        linea_datos = line.strip()
                        break 

            if linea_datos:
                bloques = [x.strip() for x in linea_datos.split("|")]
                
                # bloques[0] -> Cluster (ej: 001)
                # bloques[1] -> Energia (ej: 000007.8930)
                # bloques[2] -> Constante (ej: 00000001638152.3750)
                # bloques[3] -> Superficie (ej: 000332.65)
                
                nombre = log_file.stem
                
                # Limpiamos los ceros de cada campo numerico
                cluster = limpiar_numero(bloques[0])
                energia = limpiar_numero(bloques[1])
                constante = limpiar_numero(bloques[2])
                superficie = limpiar_numero(bloques[3])

                # Escribimos con tabuladores
                fout.write(f"{nombre}\t{cluster}\t{energia}\t{constante}\t{superficie}\n")
            else:
                print(f"[AVISO] No se encontro el cluster 001 en: {log_file.name}")

        except Exception as e:
            print(f"[ERROR] En {log_file.name}: {e}")

print(f"\n>>> Hecho! Los resultados en {salida} ahora estan limpios para Excel.")