Entering edit mode
4.7 years ago
rob.costa1234
▴
310
I have several fastq files in tar.gz. can i rum check sum on his tar if so how? Thanks
I have several fastq files in tar.gz. can i rum check sum on his tar if so how? Thanks
To generate md5sums
use,
md5sum <file>
To validate the check sums.
md5sum -c md5sum.txt
The program will consider the tar.gz archive as single file.
Use of this site constitutes acceptance of our User Agreement and Privacy Policy.
Wiil it give me checksum of individual files inside tar?
No. It won't give you checksum of files inside tar archive. You will need to uncompress the tar file and then check.