Molmed / checkQC

CheckQC inspects the content of an Illumina runfolder and determines if it passes a set of quality criteria
http://checkqc.readthedocs.io/
GNU General Public License v3.0
25 stars 16 forks source link

Use PyYAML's safe_load instead of load #101

Closed slohse closed 3 years ago

slohse commented 3 years ago

PyYAML version 6.0 changed the load() function to require a second argument, a Loader. There are several different loaders, some of them having serious security implications. So to force devs to consciously make a choice of loader, they changed the signature of the load function. Alternatively the safe_load function can be used, which is what I did.