Skip to content
Snippets Groups Projects
Commit b9b0bf11 authored by Floreal Cabanettes's avatar Floreal Cabanettes
Browse files

Fix for simulation

parent e27220bb
No related branches found
No related tags found
No related merge requests found
......@@ -91,8 +91,9 @@ tools = config['tools']
# list of chromosomes
chromosomes = config["chromosomes"]
chr_batches = {}
ref_chr = "reference_raw.fasta" if not os.path.exists(REFERENCE) and os.path.exists("reference_raw.fasta") else REFERENCE
for chromosome in chromosomes:
chr_batches[chromosome] = get_chr_batches(REFERENCE, chromosome)
chr_batches[chromosome] = get_chr_batches(ref_chr, chromosome)
# list of variants to be detected
varianttypes = ['DEL', 'INV', 'DUP', 'mCNV']
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment