-
Notifications
You must be signed in to change notification settings - Fork 10
Error Accessing Model Information #163
Comments
An update... For some reason, two nights ago I was able to successfully print the files from the mdl-printcytoseed command from my personal laptop installation (information in the original post above was coming from a different installation). Yesterday, I performed an ms-update, and now I am unable to use this command on my laptop. The output is exactly as described above... it was working, model existed, nothing changed except the ms-update... I was simply testing to see that I was still able to successfully print the files for cytoseed. any ideas? |
This probably has to do with access rights. Are you logged in to On Mon, Jun 18, 2012 at 4:46 PM, aabest
Matt DeJongh, Ph.D. |
I made the model on my local installation of Model-SEED, gapfilled on specific media, performed a checkgrowth, performed fva, and then printed to cytoseed successfully. Then the next day... it did not work on the same installation. I did not log out or change users during the interim. I did run an ms-update to the latest version of Model-SEED between the trials. |
For now, try commenting out as follows (the two lines with +# at the beginning): +++ b/lib/ModelSEED/FIGMODEL/FIGMODELdatabase.pm
On Mon, Jun 25, 2012 at 11:23 AM, aabest
Matt DeJongh, Ph.D. |
Okay, this works with the above change. I will change on the other installations, as well. Is there an underlying issue? Thanks! |
The underlying issue is problem with access rights - I'm hoping that Are you and your students able to print cytoseed files now? On Mon, Jun 25, 2012 at 2:48 PM, aabest
Matt DeJongh, Ph.D. |
Yes, we can print the cytoseed files successfully. Thanks for getting a workaround together. |
When using the mdl-printcytoseed command, we are not getting correct model information printed to the appropriate cytoseed files.
The program is returning no information or an error in the mdl-printcytoseed subroutine in ModelDriver.pm when calling "get_model_data" and "biomass_reaction_details" in the following code:
Output for model data is:
--- ~
When the biomass is accessed, it returns:
error:
This error is being generated from code in FBAMODEL.pm
Accessing other data in the model appears to work (for instance, compound data, reaction data).
Additionally, accessing the compound data seems to be taking about 20 minutes to process this call:
my $cids = $fbaObj->get_compound_id_list({ "id" => [$args->{model}] });
open(FH, ">".$cmdir."/compound_details") or ModelSEED::utilities::ERROR("Could not open file: $!\n");
my $cpds = $fbaObj->get_compound_data({ "id" => $cids->{$args->{model}} });
print FH $dumper->dump($cpds);
close FH;
print "Compound data printed...\n";
Seems like that is very long, especially for a small genome/model.
The text was updated successfully, but these errors were encountered: