Skip to content

Commit

Permalink
v2.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ESapenaVentura committed Jul 14, 2023
1 parent 5d133c4 commit fb9985e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lrgasp_validation/validation.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ def challenges_are_valid(challenges, experiment_json):
if experiment_json['platforms'] not in split_challenge[2]:
ERRORS.append(f'Sequencing platform in challenge {challenge} and metadata provided in experiment.json is not consistent; please ensure you selected the proper sequencing platform.')
length = experiment_json['data_category'].split("_")
length = f"{length[0][0]}{length[1][0]}"
length = f"{length[0][0]}{length[1][0]}".upper()
if length not in split_challenge[3]:
ERRORS.append(f'Read length in challenge {challenge} and metadata provided in experiment.json is not consistent; please ensure you selected the proper read length.')

Expand Down

0 comments on commit fb9985e

Please sign in to comment.