drneavin / Demultiplexing_Doublet_Detecting_Docs

MIT License
12 stars 1 forks source link

Method of checking md5sum #53

Open G3N0M3 opened 1 month ago

G3N0M3 commented 1 month ago

Something really minor, but is there a reason why the installation tutorial says to check md5sum using the below?

md5sum Demuxafy.sif > downloaded_Demuxafy.sif.md5
diff -s Demuxafy.sif.md5 downloaded_Demuxafy.sif.md5

I think using the below is more general...?

md5sum -c Demuxafy.sif.md5
drneavin commented 1 month ago

Really no good reason except that I didn't know about the method you suggested. I just tested your suggestion on the md5 file I generated and it worked well. I'll update the docs when I have time to reflect this easier method of validation.

Thanks for the input! I'll leave this open until I make the changes and commit them

G3N0M3 commented 1 month ago

@drneavin Great to hear it was helpful! Just started reading your paper, and it's really impressive how you've used so many methods and integrated them all into one framework. Looking forward to understanding your approach further as I read the paper.