-
Notifications
You must be signed in to change notification settings - Fork 27
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 in checkGrep(grep(".A.txt", files)) #95
Comments
I have the same issue, any work arounds? |
Hello there! I ran into the same error. After checked the output folder, I found that a few of subfolders that should be created as in line ~302-308 in cli.py were missing. what I did is I changed '/.internal' to /internal' and in OneSample.py, I changed line ~17 config = yaml.load(stream, Loader=yaml.Loader) to from ruamel.yaml import YAML; d = YAML(typ='rt'); config = d.load(stream). Leave --keep-temp-files in the command so that u can know whether all the folders were made. HTHs!!! |
Pinning |
Hello, I tried doing both the above option, but keep getting the same error. Below is the code I used:
Output: Is there a workaround for this? or I am doing something weird. Any help will be appreciated. Thank you! |
I figured it out, in the end troubleshooting using the log file "ASAP_Seq_young.snakemake_tenx.log" was quite helpful. For my particular case first it showed some error in pulp package, and downgrading with pip3 install --force-reinstall -v "pulp==2.7" did the trick as mentioned in issue #93 There were some other issues post this, however they could be easily resolved by following the log files. |
Hi! I ran into this error:
“Error in checkGrep(grep(".A.txt", files)) :
Improper folder specification; file missing / extra file present. See documentation
Calls: importMito -> checkGrep
Execution halted”
To Reproduce
Steps to reproduce the behavior:
mgatk tenx -i possorted_bam.bam -n atac-08 -o atac-08 -c 30 -bt CB -b cellranger/atac-08/filtered_peak_bc_matrix/barcodes.tsv --keep-temp-files
The same if I use scRNA data:
mgatk tenx -i possorted_bam.bam -n scRNA-09 -o scRNA-09 -c 30 -ub UB -bt CB -b cellranger/scRNA-09/filtered_feature_bc_matrix/barcodes.tsv --keep-temp-files
Thank you very much for your help!
The text was updated successfully, but these errors were encountered: