-
Notifications
You must be signed in to change notification settings - Fork 192
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
using regex gives empty file #674
Comments
That definitely shouldn't be happening.
Can you post the content of the log file?
|
|
Ah! The pattern matching uses Please leave this issue open as a reminder to me to update the documentation. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I am trying to extract the umi from 3 prime end, but it is giving me empty file. I tried with the example dataset provided in the umi-tools document. In the example file first sequence is
CAGGTTCAATCTCGGTGGGACCTC
, and i want to extract all the ones that start withG
and end with any 5 bases. So, I used following code:umi_tools extract --extract-method=regex --bc-pattern="(?P<umi_1>G.{5}$)" --stdin=example.fastq.gz --log=processed2.log --stdout=processed2.fastq.gz
The text was updated successfully, but these errors were encountered: