Hi! I'm having an issue running main_probabilities.py in my dataset of 60x wgs tumour. It is crashing with the following error: ``` [xalmal@bespin sv-bay-data]$ /apps/CLC_ExternalApps/SV-Bay/miniconda2/bin/python2.7 -B /apps/CLC_ExternalApps/SV-Bay/SV-Bay/src/main_probabilities.py -c /apps/CLC_ExternalApps/SV-Bay/SV-Bay/config/config.yaml Traceback (most recent call last): File "/apps/CLC_ExternalApps/SV-Bay/SV-Bay/src/main_probabilities.py", line 199, in <module> input_data = BayesianInputData(config, stats, chromosomes) File "/apps/CLC_ExternalApps/SV-Bay/SV-Bay/src/bayesianinput.py", line 57, in __init__ self.__LoadLambda(config, stats) File "/apps/CLC_ExternalApps/SV-Bay/SV-Bay/src/bayesianinput.py", line 224, in __LoadLambda (lambda_norm,lambda_abnorm) = self.__CalculateLambda(config, stats) File "/apps/CLC_ExternalApps/SV-Bay/SV-Bay/src/bayesianinput.py", line 363, in __CalculateLambda if gem_val_abnormal[i/step]!=-1: IndexError: list index out of range ``` I looked in the log file and it seems to be complaining that the .gem file and .fa files for chromosome 1 are of different lengths. I used the hg19 fasta and gems from the zip files linked to from the documentation here, so I feel that it should work. I will also paste the main_probabilities.log here: ``` main_probabilities.py line:197 INFO [2016-11-11 11:12:22,971] Chromosomes to process:['chr1', 'chr2', 'chr3', 'chr4', 'chr5', 'chr6', 'chr7', 'chr8', 'chr9', 'chr10', 'chr11', 'chr12', 'chr13', 'chr14', 'chr15', 'chr16', 'chr17', 'chr18', 'chr19', 'chr20', 'chr21', 'chr22', 'chrX', 'chrY'] bayesianinput.py line:48 INFO [2016-11-11 11:12:22,971] Loading data... bayesianinput.py line:106 INFO [2016-11-11 11:12:22,971] Loading normal fragments... bayesianinput.py line:137 INFO [2016-11-11 11:32:03,126] Loading links... bayesianinput.py line:158 INFO [2016-11-11 11:32:21,881] Constructing sublinks... bayesianinput.py line:223 WARNING [2016-11-11 11:32:32,877] Lambda file not found, calculating lambda bayesianinput.py line:252 INFO [2016-11-11 11:32:32,877] Started calculating lambda_gen bayesianinput.py line:67 WARNING [2016-11-11 11:32:39,167] Lengths of .fa and .gem sequences do not match for chrom chr1 (249250626 and 248956422) bayesianinput.py line:69 WARNING [2016-11-11 11:32:39,167] Some flanking regions will be truncated to match the minimal length and some links (intersecting with chrom tail) will be dropped. bayesianinput.py line:70 WARNING [2016-11-11 11:32:39,167] Please fix your .gem file. ``` PS. How did you generate these .gem files so that I can try to generate new ones for myself? Thank you! /Alvar