-
Notifications
You must be signed in to change notification settings - Fork 295
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
screed.Record(..., quality=None) should not set 'quality' #1468
Comments
When you create a new Record like this: >>> screed.Record(name="test", sequence="ACGT", quality=None) the result should be:
|
I think #3 personally. We use hasattr(r, 'quality') throughout the current
codebase.
|
Then we have a conflict with #1484, I had the impression we should keep an empty |
Well, umm, I think (3) personally. Which fits with a lot of existing Python code. shrug It's up for discussion. |
I agree with |
On Thu, Oct 06, 2016 at 05:36:04PM -0700, Luiz Irber wrote:
Yes, see #769. I personally think that the Python code is more likely to Are there any drawbacks to the approach? |
I think we can make |
This already works, c.f. #1559. |
Right now, you can't pass 'None' in with 'record' in order to create a Record without a quality entry. Should be able to.
The text was updated successfully, but these errors were encountered: