We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
split2
I'd like to be able to do the following:
seqkit split2 -1 my_r1.fq.gz -2 my_r2.fq.gz --by-parts 10 --by-parts-prefix "my_r{read}_"
And get out:
my_r1_001.fq.gz my_r2_001.fq.gz my_r1_002.fq.gz my_r2_002.fq.gz ...
Thanks!
The text was updated successfully, but these errors were encountered:
Oh, It looks like a bug!
Sorry, something went wrong.
split2: fix prefix checking when paired-end files are given. #512
ad523f7
fixed:
$ seqkit split2 -1 my_r1.fq.gz -2 my_r2.fq.gz --by-part 10 --by-part-prefix "my_r{read}_" -O out [INFO] flag -1/--read1 and -2/--read2 given, ignore: - [INFO] split seqs from my_r1.fq.gz and my_r2.fq.gz [INFO] split into 10 parts [INFO] write 1 sequences to file: out/my_r2_001.fq.gz [INFO] write 1 sequences to file: out/my_r1_001.fq.gz [INFO] write 1 sequences to file: out/my_r2_002.fq.gz [INFO] write 1 sequences to file: out/my_r1_002.fq.gz ...
seqkit_darwin_arm64.tar.gz seqkit_linux_amd64.tar.gz seqkit_linux_arm64.tar.gz seqkit_windows_amd64.exe.tar.gz
No branches or pull requests
I'd like to be able to do the following:
And get out:
Thanks!
The text was updated successfully, but these errors were encountered: