https://github.com/fjruizruano/ngs-protocols
Raw File
Tip revision: 39a091d1fa569a7fc717ac73c4b3de07f0a1204d authored by fjruizruano on 03 August 2023, 11:48:27 UTC
adding gfa2fas.py and extract_gfa.py
Tip revision: 39a091d
repeat_masker_run.py
#! /usr/bin/python

from subprocess import call

library = raw_input("Introduce library name: ")
threads = raw_input("Introduce number of threads: ")

files = open("lista.txt").readlines()

for file in files:
	call("RepeatMasker -par %s -nolow -no_is -engine crossmatch -lib %s %s" % (threads, library, file[:-1]) , shell=True)
back to top