Hello I have some code to extract data from my .VCF file.
cat '/home/yousef/Desktop/Haplotyp_results/INDEL/info_8indel.vcf' |
sed 's/^.*;DP=\([0-9]*\);.*$/\1/'
I wanted to know what is the meaning of this
(sed 's/^.*;DP=\([0-9]*\);.*$/\1/')
section in the code. I will be pleased if you could give me a source to find the meaning and function of such codes. Thanks