-
Notifications
You must be signed in to change notification settings - Fork 32
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
error regular expression? #295
Comments
Seems the gawk problem. try to install gawk before running. |
Thanks for reply! What I used is a docker image which built use the Dockerfile in repo Another thing is that I noticed the fourth column in file "03.assemble/assemble/{sample}_report.tsv" is amino acid sequence, and its' content maybe "out_of_frame" or contains underscore or question mark, eg: "CSV_VAGIQETQYF" or "CAVVESGNTGK?IF". I wonder know the purpose of this step is to filter out these tcr? |
Yes, TCRs that meet these conditions will be filtered. |
Thanks, install gawk can run this command |
Describe the bug
when running flv_trust4 assay, I got the error below
subprocess.CalledProcessError: Command ' awk '$4!
"_" && $4!"?"' .//C2301003-3-T/03.assemble/assemble/C2301003-3-T_report.tsv > .//C2301003-3-T/03.assemble/assemble/C2301003-3-T_filter_report.tsv 2>&1' returned non-zero exit status 2the awk syntax maybe <awk '"_"!
$4 && "?"!$4'>, right? I don't know what is doing here, maybe export the line which the fourth column doesn't match an underscore and question mark, but I got this errorVersion
e.g. 2.1.0
The text was updated successfully, but these errors were encountered: