MD5 Verification Methods
Windows Platform
- Open the Rawdata folder
- Double-click to run
md5check.bat
- A DOS command window will pop up
- If "OK" is displayed at the end, it means there were no issues during data transfer and all files are intact, safe to view and use
macOS Platform
- Open Terminal
- Use the
cd
command to navigate to the directory containing the MD5 verification files - Run the following command:bash
md5 *gz | awk -F '[=() ]' '{print $NF " " $3}’ | diff - md5.md5
- If there is no output, the verification is successful. If there is output, it will display the list of problematic sample files
Linux Platform
- Open Terminal
- Use the
cd
command to navigate to the directory containing the MD5 verification files - Run the following command:bash
md5sum -c md5.md5