awk lines in file between header and footer strings - variables
I'm trying to parse out all of the lines in between different headers and footers to different files using an awk script in a for loop. For example, I have a file with a list of mismatches with sample-name headers (compiled.csv) that looks like this:
19-T00,,,,,,,,,,,,,,,,
1557,WT,,,,,,,,,,,,,,,
6,109-G->A,110-G->A,,,,,,,,,,,,,,
3,183-G->A,,,,,,,,,,,,,,,
19-T10,,,,,,,,,,,,,,,,
642,WT,,,,,,,,,,,,,,,
206,24->G,,,,,,,,,,,,,,,
19-T21,,,,,,,,,,,,,,,,
464,24->G,,,,,,,,,,,,,,,
19-TSpl,,,,,,,,,,,,,,,,
2219,24->G,,,,,,,,,,,,,,,
20-T00,,,,,,,,,,,,,,,,,,
...
...
My goal for the lines above would be to pass all the lines from the 19-T00 to the 2219,24->G,,,,,,,,,,,,,,, in a sample output file called sample-19.csv.
The sample names all share the pattern [0-9][0-9]-T*. And my approach to doing this first was based on creating an array with all 20 sample names (i.e. 19, 20, 21...). I am trying to execute the following loop, and output files are created but they are blank.
for i in {0,19}
do a="$i"
b=`echo $i+1 | bc`
header="${array[$a]}-T"; footer="${array[$b]}-T"
name=`echo $header | cut -d"-" -f1`
awk -F, -v start="$header" -v finish="$footer" '/^start*/,/^finish*/' compiled.csv >"sample-"$name".csv"
done
If I do this manually with the one-liner:
awk '/^19-T*/,/^20-T*/' compiled.csv >sample-19.csv it works fine. So I think there may be a problem in the variable passing, but I don't know how to fix it.
I know there are some other threads discussing the header-footer approach using awk, but I just think my syntax needs some help. If anyone has any advice by way of more experienced eyes, it would be much appreciated. Let me know if anything isn't clear.
Thanks,
Matt
All you need is something like this (untested):
awk '
/^[0-9][0-9]-T00,/ {
close(out)
out = "sample-" $0
sub(/-T00.*/,".csv",out)
}
{ print > out }
' compiled.csv
If you're ever again considering processing text with a shell loop make sure to read why-is-using-a-shell-loop-to-process-text-considered-bad-practice first
using awk
awk --posix '/[0-9]{2}-T00/{split($0,a,"-"); name=a[1]} {print $0>"sample-"name".cas"}' file
Output will be two files "sample-19.csv" and "sample-20.csv" for your contents
Related
awk - store first occurrence based on cell
I have a file (around 10k entries) with following format: text1;text2;text3;lat;long A;B;C;55.01;12.01 A;B;C;n/a;n/a D;E;F;56.011;13.099 D;E;F;56.01;13.01 D;E;F;n/a;n/a I;B;C;n/a;n/a containing duplicates, some without, others with mildly contradicting LAT;LONG coordinates. I only want to store first unique value of [$1;$2;$3;$4;$5] as output, so desired output should look like: text1;text2;text3;lat;long A;B;C;55.01;12.01 D;E;F;56.011;13.099 I;B;C;n/a;n/a I'd assume that I want to create an array, but I struggle with proper formating of it... so any help appreciated !
I'm glad you have it working, but personally, I would suggest something a little more along the lines of: $ awk -F";" '!seen[$1,$2,$3] {print; seen[$1,$2,$3]=1}' file Example Use/Output With your data in file, you could then do: $ awk -F";" '!seen[$1,$2,$3] {print; seen[$1,$2,$3]=1}' file text1;text2;text3;lat;long A;B;C;55.01;12.01 D;E;F;56.011;13.099 I;B;C;n/a;n/a You can shorten it to about your example (which simply checks if the unique index of the first three fields combined has been set yet and relies on the default print operation to output the first records having the unique combination): $ awk -F";" '!seen[$1,$2,$3]++' file However, using the joined fields $1,$2,$3 as the index is about the only way you can ensure uniqueness. If you say your works, then it is certainly shorter. Let me know if you have further questions.
Found it by stopping to look for creating arrays created a new $1 being $1,$2,$3, but the other solutions is indeed more elegant, here is the command I came up with after merging the fields in the file (and setting them as new $1), which I then didn't have to do awk -F';' '!seen[($1)]++' file1.csv > file2.csv
Using pipe and shell command in awk script
I am writing an awk script which needs to produce an output which needs to be sorted. I am able to get the desired unsorted output in an awk array. I tried the following code to sort the array and it works and I don't know why and whether it is the expected behavior. Sample Input to the question: Ram,London,200 Alex,London,500 David,Birmingham,300 Axel,Mumbai,150 John,Seoul,450 Jen,Tokyo,600 Sarah,Tokyo,630 The expected output should be: Birmingham,300 London,700 Mumbai,150 Seoul,450 Tokyo,1230 The following script is required to show the city name along with the respective cumulative total of the integers present in the third field. BEGIN{ FS = "," OFS = "," } { if($2 in arr){ arr[$2]+=$3; }else{ arr[$2]=$3; } } END{ for(i in arr){ print i,arr[i] | "sort" } } The following code is in question: for(i in arr){ print i,arr[i] | "sort" } The output of the print is piped to sort, which is a bash command. So, how does this output travel from awk to bash? Is this the expected behavior or a mere side effect? Is there a better awk way to do it? Have tried asort and asorti already, but they exist with gawk and not awk. PS: I am trying to specifically write a .awk file for the task, without using bash commands. Please suggest the same.
Addressing your specific questions in order: So, how does this output travel from awk to bash? A pipe to a spawned process. Is this the expected behavior or a mere side effect? Expected Is there a better awk way to do it? Have tried asort and asorti already, but they exist with gawk and not awk. Yes, pipe the output of the whole awk command to sort. PS: I am trying to specifically write a .awk file for the task, without using bash commands. Please suggest the same. See https://web.archive.org/web/20150928141114/http://awk.info/?Sorting for the implementation of a few common sorting algorithms in awk. See also https://rosettacode.org/wiki/Category:Sorting_Algorithms. With respect to the question in your comments: Since a process is spawned to sort from within the loop in the END rule, I was confused whether this will call the sort function on a single line and the spawned process will die there after, and a new process to sort will be spawned in the next iteration of the loop The spawned process won't die until your awk script terminates or you call close("sort").
Could you please try changing you sort to sort -t',' -k1 in your code. Since your delimiter is comma so you need to inform sort that your delimiter is different than space. By default sort takes delimiter as comma. Also you could remove if, else block ftom your main block and you could use only arr[$2]+=$3. Keep the rest code as it is apart from sort changes which I mentioned above I am on mobile so couldn't paste all code but explanation should help you here.
What I would suggest is piping the output of awk to sort and not try and worry about piping the output within the END rule. While GNU awk provides asorti() to allow sorting the contents of an array, in this case since it is just the output you want sorted, a single pipe to sort after your awk script completes is all you need, e.g. $ awk -F, -v OFS=, '{a[$2]+=$3}END{for(i in a)print i, a[i]}' file | sort Birmingham,300 London,700 Mumbai,150 Seoul,450 Tokyo,1230 And since it is a single pipe of the output, you incur no per-iteration overhead for the subshell required by the pipe. If you want to avoid the pipe altogether, if you have bash, you can simply use process-substitution with redirection, e.g. $ sort < <(awk -F, -v OFS=, '{a[$2]+=$3}END{for(i in a)print i, a[i]}' file) (same result) If you have GNU awk, then asorti() will sort a by index and you can place the sorted array in a new array b and then output the sorted results within the END rule, e.g. $ awk -F, -v OFS=, '{a[$2]+=$3}END{asorti(a,b);for(i in b)print b[i], a[b[i]]}' file Birmingham,300 London,700 Mumbai,150 Seoul,450 Tokyo,1230
Finding sequence in data
I to use awk to find the sequence of pattern in a DNA data but I cannot figure out how to do it. I have a text file "test.tx" which contains a lot of data and I want to be able to match any sequence that starts with ATG and ends with TAA, TGA or TAG and prints them. for instance, if my text file has data that look like below. I want to find and match all the existing sequence and output as below. AGACGCCGGAAGGTCCGAACATCGGCCTTATTTCGTCGCTCTCTTGCTTTGCTCGAATAAACGAGTTTGGCTTTATCGAATCTCCGTACCGTAAGGTCGAAAACGGCCGGGTCATTGAGTACGTGAAAGTACAAAATGG GTCCGCGAATTTTTCGGTTCGTCTCAGCTTTCGCAGTTTATGGATCAGACGAACCCGCTCTCTGAAATTACTCATAAACGCAGGCTCTCGGCGCTCGGGCCCGGCGGACTCTCGCGGGAGCGTGCAGGTTTCGAAGTTC GGATGATATCGACCATCTCGGCAATCGACGCGTTCGGGCCGTAGGCGAACTGCTCGAAAATCAATTCCGAATCGGGCTTGAGCGAATGGAGCGGGCCATCAAGGAAAAAATGTCTATCCAGCAGGATATGCAAACGACG AAAGTATGTTTTTCGATCCGCGCCGATTCGACCTCTCAAGAGTCGGAAGGCTTAAATTCAATATCAAAATGGGACGCCCCGAGCGCGACCGTATAGACGATCCGCTGCTTGCGCCGATGGATTTCATCGACGTTGTGAA ATGAGACCGGGCGATCCGCCGACTGTGCCAACCGCCTACCGGCTTCTGG Print out matches: ATGATATCGACCATCTCGGCAATCGACGCGTTCGGGCCGTAG ATGATATCGACCATCTCGGCAATCGACGCGTTCGGGCCGTAG ATGTTTTTCGATCCGCGCCGATTCGACCTCTCAAGAGTCGGAAGGCTTAA I try something like this, but it only display the rows that starts with ATG. it doesn't actually fix my problem awk '/^AGT/{print $0}' test.txt
assuming the records are not spanning multiple lines $ grep -oP 'ATG.*?T(AA|AG|GA)' file ATGGATCAGACGAACCCGCTCTCTGA ATGATATCGACCATCTCGGCAATCGACGCGTTCGGGCCGTAG ATGTTTTTCGATCCGCGCCGATTCGACCTCTCAAGAGTCGGAAGGCTTAA ATGGGACGCCCCGAGCGCGACCGTATAG ATGGATTTCATCGACGTTGTGA non-greedy match, requires -P switch (to find the first match, not the longest).
Could you please try following. awk 'match($0,/ATG.*TAA|ATG.*TGA|ATG.*TAG/){print substr($0,RSTART,RLENGTH)}' Input_file
awk - How to extract quoted string in space delimited log file
I'm hoping there might be some simple way to do this, as I'm a total novice using awk. I have a bunch of log files from an AWS load balancer, and I want to extract entries from these logs, where a particular response code was received. Checking the response code is easy enough, I can do the following... $9=="403" {print $0} However what I really want is just the request itself, $13, However this column is quoted, and will contain spaces. It looks like so... "GET https://[my domain name]:443/[my path] HTTP/2.0" If I do the following... $9=="403" {print $13} I just get... "GET So what I think I need to do, is for awk (or some other appropriate utility) to extract the complete column 13, and then be able to break that down into it's individual fields, for method, URL etc.
Could you please try following. I have given inside regex of match 443 as per your sample to match it you could give it as per your need to look for 403 change it to match($0,/\".*403.*\"/) too. awk 'match($0,/\".*443.*\"/){print substr($0,RSTART,RLENGTH)}' Input_file IMHO advantage of this approach will be you need NOT to hard code any field number in your awk. 1 more thing I have assumed that your Input_file will have "......403....." kind of section only once and you want to print that only. 1 more additional awk where I am assuming you may have multiple occurrences of "..." so picking only that one where 403|443 is coming. awk 'match($0,/\".*443[^"]*/){print substr($0,RSTART,RLENGTH+1)}' Input_file EDIT: Or if your Input_file has "...443..." one time or this text is coming first after starting of line(assuming if other occurrences of ".." will come later) then you could try following. awk -F'"' '/443/{print $2}' Input_file
newer version gawk has a built-in variable FPAT which you can use to define fields by a regex pattern. For your logs, if no other quoted fields before the field 9 and 13: awk -v FPAT='[^[:space:]]+|"[^"]*"' '$9 == "403"{print $13}' log_file REF: https://www.gnu.org/software/gawk/manual/html_node/Splitting-By-Content.html
Filter Records in a file based on first column value through AWK/SED
I have a file with the following records: a,1 a,1,2 a,1,2,3 b,4 b,4,5 b,4,5,6 I want the output like this: a,1,2,3 b,4,5,6
It's really unclear what you are trying to do here. It's even less clear what you have tried so far (good StackOverflow questions usually involve some code)! You've read the FAQ, right? If your input is in a file called input_file.csv, then the following awk program will give you the output you have said you want. Whether it will work for your real data is anyone's guess. % awk -F',' '{ lines[$1] = $0 } END { for (line in lines) { print lines[line] } }' input_file.csv I offer no explanation as to what this simple script does, but a handy reference for awk. Thanks for your appreciation!
As requested awk '/......./' input a,1,2,3 b,4,5,6