Search Results

Search: Posts Made By: Chubler_XL
2,756
Posted By Chubler_XL
You could go thru all the values in $5 using...
You could go thru all the values in $5 using comma , and slash / as separators.

awk 'BEGIN{FS=OFS="\t"}
{$0=toupper($0)}
FNR==NR{
if(NR>1 && ($7 ~ "FULL GENE SEQUENC")) {
gsub("...
2,756
Posted By Chubler_XL
Trying to match full gene sequencing and full...
Trying to match full gene sequencing and full gene sequence as this is in the data.
2,756
Posted By Chubler_XL
Try these changes: awk 'BEGIN{FS=OFS="\t"} ...
Try these changes:

awk 'BEGIN{FS=OFS="\t"}
{$0=toupper($0)}
FNR==NR{
if(NR>1 && ($7 ~ "FULL GENE SEQUENC")) {
gsub(" ","",$5) #removing white space
...
Showing results 1 to 3 of 3

 
All times are GMT -4. The time now is 08:52 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy