-
-
Notifications
You must be signed in to change notification settings - Fork 88
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
csvtk filter2 problem when header column names contain "_" #44
Comments
is there any error message? |
no error message. the second only output header line: |
Hi @hongenxu , thanks for reporting this bug. Actually, it's not the mater of "_" but column names starting with digits. Anyway, it is a bug, and I just fixed it, v0.14.0-dev2 works. |
Hi @shenwei356. This problem still exists (0.19.1) if column name doesn't start with a digit but contains digits anywhere except as their trailing symbols. That's enough to change |
Thank you @VorontsovIE , I've fixed it: |
Wow! That was lightning fast. Thank you a lot! |
Prerequisites
csvtk version
Version: 0.13.0
Describe your issue
if the header names contain "_", like “ExAC_ALL”,
cat test.hg19_multianno.csv |csvtk filter2 -f ' $6 < 0.05 && $7<0.05'
workscat test.hg19_multianno.csv |csvtk filter2 -f ' $1000g2015aug_all < 0.05 && $1000g2015aug_eas<0.05'
doesn't work
cat test.hg19_multianno.csv
The text was updated successfully, but these errors were encountered: