I have the CSV file like below
MK0280,GCA_000007185.1,AAM01497.1,430,1 430,430,COG0001,COG0001,0,570.0,1.0e-200,432,3-431
MA_0581,GCA_000007345.1,AAM04025.1,424,1 424,424,COG0001,COG0001,0,574.0,1.0e-200,432,3-426
I want the output like below
MK0280,GCA_000007185.1,AAM01497,430,1 430,430,COG0001,COG0001,0,570.0,1.0e-200,432,3-431
MA_0581,GCA_000007345.1,AAM04025,424,1 424,424,COG0001,COG0001,0,574.0,1.0e-200,432,3-426
Want to remove decimal part from column 3. Any sed/awk or other suggestion?