You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Writing using FASTX (or any other package) is bad for two reasons:
If FASTX in a new version exports a new name, it may conflict with an existing names in ReadDatastores, causing an error. This means that even adding new features to FASTX can break this package
It makes it harder to find the definition the used functions
All of these should be replaced with using FASTX: Foo, Bar, baz, or, if FASTX internals is used, using FASTX: FASTX, Foo, Bar, baz, such that e.g. FASTX.qux can be accessed.
The text was updated successfully, but these errors were encountered:
Writing
using FASTX
(or any other package) is bad for two reasons:All of these should be replaced with
using FASTX: Foo, Bar, baz
, or, if FASTX internals is used,using FASTX: FASTX, Foo, Bar, baz
, such that e.g.FASTX.qux
can be accessed.The text was updated successfully, but these errors were encountered: