-
Notifications
You must be signed in to change notification settings - Fork 11
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
output is overriden when multiple fastq files are provided. #10
Comments
e662544 should fix this. |
Hi @guilhermesena1, the bug seems to have persisted with v1.2.1 installed from conda. I analysed two fastq files and redirected the output to a directory. falco writes to the same files and fails to add prefixes. falco fastq/* --outdir falco_out |
Hello, Thank you for reporting the issue. Thar's really strange. From the empty names before the underscore I think this may be an issue with how filenames are escaped. Would you be able to just answer one question and run two quick tests? (1) question: which operating system and shell are you using (bash? zsh?) (2) does the program behave as expected if you change the command to
(3) does the program behave as expected if you switch the order of the arguments and put the filenames at the end? (that's how the program should be run) i.e.
Either way I'll try to reproduce as soon as I have access to my computer again. Thank you! |
I pushed a fixed at the most recent commit ( a97182e ). Unfortunately this fix is only available for now by cloning and compiling the repo. I'll leave this open until we create a new release and conda update to fix this problem. Thanks for reporting again! |
Thanks @guilhermesena1 and sorry for the late response. I cloned the directory, run I'm using Ubuntu Version="20.04.5 LTS" make[1]: Entering directory '/home/kwamae/software/falco/src' |
Quick look suggests you're missing zlib. See the README.md file for installation instructions of dependencies. Should be straightforward but let us know. |
Thanks, @andrewdavidsmith. 🤦♂️ @guilhermesena1, thanks for the fix. It works fine now. |
If multiple inputs are given and the
-o
flag sets a directory name, only the results for the last file shows up. This is due to each file overriding the previous because they are all calledoutput_dir/fastqc_data.txt
.Fastqc zips each report. We should create subdirectories within the output directory, one for each file name, but only if more than one file is provided.
The text was updated successfully, but these errors were encountered: