Open Edert opened 4 days ago
Hi Thomas,
I just updated the repository, please see the updated README and install the latest version of CRISPR-Correct: pip install crispr-ambiguous-mapping==0.0.177
Here is a draft of what the function should look like with R1 only:
result = crispr_ambiguous_mapping.mapping.get_whitelist_reporter_counts_from_fastq(
whitelist_guide_reporter_df=GUIDE_LIBRARY_DATAFRAME,
fastq_r1_fn=INPUT_GZ_FILE, # Tool accepts GZ files
protospacer_start_position = 0,
protospacer_length = 20,
is_protospacer_r1 = True,
is_protospacer_header = False,
revcomp_protospacer = False,
protospacer_hamming_threshold_strict=7,
cores=CPUS)
The updated version isn't as robustly tested so let me know if you still have issues.
Hi,
I am trying to run CRISPR-Correct with just one fastq file (R1 only). According to the readme it should be possible to do so. How should I define the fastq_r2_fn parameter as it seems to be required? None, NULL, or an empty string '' does not work.
My python lines:
and this is my fastq file:
Best regards, Thomas