Entering edit mode
4.8 years ago
jomagrax
▴
40
Hi everyone my name is Jos, this is my problem:
I have downloded some .bam files compressed in .rar, I decompressed them with both winrar and the command unrar obtaining this:
file control_1.bam control_1.bam: gzip compressed data, extra field
when I try to see the file this message comes up
head control_1.bam head: error writing 'standard output': Input/output error
What that means, thankyou in advance.
BAM files are binary so you will not be able to see anything with
head
.Instead of head, try using dedicated tools such as
samtools
,seqkit
orpicardtools
to read bam file.