-
Notifications
You must be signed in to change notification settings - Fork 79
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
find signatures by name in zipped sbt #993
Comments
to add to this for @luizirber -- tessa would like to get a list of all leaf nodes and their names. she would separately like to be able to load a specific leaf node. I'm 99% sure this is possible from looking at the .sbt.json file, but I'm not sure if there's a good interface for doing it, or if it needs to be hacked together. |
One option is fixing the
Note how ( So, for the use case:
Note that
|
Ah! I noticed this in #925 and changed |
Don't revert, I think this should be the actual behavior =] |
So, for now @bluegenes, it looks like you will need to hack yourself some kind of dictionary to store the filenames of what you want to load, based on the JSON file. What I don't know offhand is if there is a simple API way to load a Ref also #994 which allows for duplicate md5sums to be stored in an SBT. |
A bigger question might be whether we want to include any other metadata search functionality in |
Hi @bluegenes here is a more specific partial answer to enable you to do what I think you need to do, like, yesterday :) ---
So, if you wanted to have an index of names etc, I would suggest doing something like this:
lmk if that helps - I'm sure luiz had it all in short-term memory, but I hadn't interacted with this code in a while :) |
#1590 will support this, if we go forward with it; this is generically supported by manifests (in that PR). |
I have a list of fasta files I'd like to compare, for which I stored signatures within a zipped sbt. Titus mentioned the the sbt json contains mapping information for the
signature name:: signature
.Is there a standard way to iterate through this list to find (and then load) signatures from the sbt by name?
The text was updated successfully, but these errors were encountered: