Horje
bash add chr to beginning of vcf Code Example
bash add chr to beginning of vcf
# Example usage:
awk '{if($0 !~ /^#/) print "chr"$0; else print $0}' input.vcf
# This converts a vcf file with numeric genome coordinates to one with 
# chr in front of the chromosome number. 

# Note, this command does the opposite operation, if needed:
awk '{gsub(/^chr/,""); print}' input.vcf




Shell

Related
lollypop music player install ubuntu Code Example lollypop music player install ubuntu Code Example
php runing using aphp.ini Code Example php runing using aphp.ini Code Example
bash hide file Code Example bash hide file Code Example
desktop trigger click bash shell ubuntu Code Example desktop trigger click bash shell ubuntu Code Example
bash load file as array Code Example bash load file as array Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
15