다음과 같은 탭 구분 기호가 있는 파일이 있습니다.
Chr1 mak gene 120221 120946 . + . ID=spa-h0003.02;Name=spa-h0003.02
Chr1 mak mRNA 120221 120946 . + . ID=spa-cap_Chr1_00M;Parent=spa-h0003.02;Name=spa-cap_Chr1_00M
Chr1 mak exon 120221 120946 . + . Parent=spa-cap_Chr1_00M
Chr1 mak gene 18546165 18546939 . + . ID=spa-h0004.02;Name=spa-h0004.02
Chr1 mak mRNA 18546165 18546939 . + . ID=spa-cap_Chr1_18;Parent=spa-h0004.02;Name=spa-cap_Chr1_18
Chr1 mak exon 18546165 18546504 . + . Parent=spa-cap_Chr1_18
Chr1 mak exon 18546791 18546939 . + . Parent=spa-cap_Chr1_18
세 번째 열에 "gene"이 있는 경우에만 다른 문자열을 바꾸고 싶습니다. 그러나 아홉 번째 열의 문자열은 두 번째 파일에 있는 정보를 기반으로 다음과 같이 바꿔야 합니다(탭 포함).
spa-h0003.02 spa-cap_Chr1_00M
spa-h0004.02 spa-cap_Chr1_18
나는 무엇을 해야할지 모르겠습니다. 나는 다음과 같이 생각하고 있습니다. (XX는 두 번째 파일의 정보여야 할까요?)
cat file | awk '$3 == "gene" && $9 == "spa-" {$9 = "XX"} {print}'
하지만 두 번째 파일의 정보를 어떻게 사용합니까? 아마도:
while read n k; do sed -i 's/$n/$k/g' file1; done < fileA
답변1
file1
바꾸려는 텍스트가 있고 file2
대체 텍스트가 있고 ID=
둘 사이에서 조회를 수행 할 수 있다고 가정하면 다음 awk 스크립트를 사용할 수 있습니다(더 인기 있는 것 같습니다).
awk -F'\t' '
NR==FNR{
a[$1]=$2 # fills the array a with the replacement text
next
}
$3=="gene"{ # check only lines with 'gene'
id=gensub("ID=([^;]*);.*","\\1",1,$9); # extract the id string
if(id in a) # if the id is part of the array a
gsub(id,a[id]) # replace it
}
1 # print the line
' file2 file1
답변2
인기 없는 선택: Tcl. Tcl에는 string map
이를 수행하는 훌륭한 명령이 있습니다 .정확히이것. 불행하게도 Tcl은 실제로 Perl 스타일의 단일 라이너용으로 제작되지 않았습니다.
echo '
# read the mapping file into a list
set fh [open "mapping" r]
set content [read $fh]
close $fh
set mapping [regexp -all -inline {\S+} $content]
# read the contents of the data file
# and apply mapping to field 9 when field 3 is "gene"
set fh [open "file" r]
while {[gets $fh line] != -1} {
set fields [split $line \t]
if {[lindex $fields 2] eq "gene"} {
lset fields 8 [string map $mapping [lindex $fields 8]]
}
puts [join $fields \t]
}
close $fh
' | tclsh
awk를 사용하여 다음과 같이 작성합니다.
awk -F'\t' -v OFS='\t' '
NR == FNR {repl[$1]= $2; next}
$3 == "gene" {
for (seek in repl)
while ((idx = index($9, seek)) > 0)
$9 = substr($9, 1, idx-1) repl[seek] substr($9, idx + length(seek))
}
{print}
' mapping file