-
Notifications
You must be signed in to change notification settings - Fork 440
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
cutadapt improvements #5577
cutadapt improvements #5577
Conversation
test 4 was failing due to galaxyproject/galaxy#15085 here the size assertion makes no sense given that we compare for exact equality anyway.
- makes no sense to apply the `internal` property (which just appends an X to the adapter sequence) to all adapters - also came in handy for unifying the cli generation for the adapter options using a single token
instead of value and use lowe case boolean attribute values
if we would want to consider fastqillumina/solexa then we would need to set `--quality-base 33`. while this would be easy, we would also need to set the output type equal to the input type (which seems not worth the effort) .. alternatively we could call some converter on the output to make it fastqsanger.
d1f6c7f
to
74b5a7f
Compare
- fasta output could not be detected due to `out[12].fq*` - polyA trimming tests required bump
- requires `--quality-base=64` set - also allow .bz2 types (which were already covered by the code)
0551660
to
b708043
Compare
b708043
to
2693765
Compare
2693765
to
abda5b0
Compare
Do you want to have another look on this @mvdbeek ? |
thanks a lot @bernt-matthias! |
Hi guys,
Would you mind to fix this or change the profile version? |
It's a bug one way or another, the parameter should be fully qualified (i.e |
Which version is that happening on @lldelisle ? This seems to be fixed in the latest version at least ? |
Maybe I just ran an iwc rna-seq workflow and it was version 4.4+galaxy1 |
fixes #5099
While working on this I have noted some more room for improvement. special attention is needed here IMO:
internal
parameter has been dropped. while the implementation was probably not good anyway (the set value applied to all adapters which was likely not intended), the current implementation does not allow adding theX
for builtin adapters.Maybe I find the time to add some missing parameters ...
FOR CONTRIBUTOR: