Skip to content

Commit

Permalink
fixing reading pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
costero-e committed May 24, 2024
1 parent 2a92cad commit eae3a2c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions genomicVariations_vcf.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
with open('files/deref_schemas/genomicVariations.json') as json_file:
dict_properties = json.load(json_file)

with open('pipelines/templates/default.json') as pipeline_file:
with open('pipelines/default/templates/default.json') as pipeline_file:
pipeline = json.load(pipeline_file)

def commas(prova):
Expand Down Expand Up @@ -94,7 +94,7 @@ def generate(dict_properties):
num_rows=conf.num_variants
pbar = tqdm(total = num_rows)
for v in vcf:
print(v)
#print(v)
dict_to_xls={}
vstringed = str(v)
for population_splitted in pipeline['frequencyInPopulations|frequencies|population']:
Expand Down

0 comments on commit eae3a2c

Please sign in to comment.