Scott Ransom
Scott Ransom
Just making sure, @JPGlaser ... You don't have PYTHONPATH set, do you? I use conda on my nimrod cluster using this same exact install methodology (including into a "global" conda...
I used to require that PYTHONPATH contain $PRESTO/python, but that is *bad* now and will lead to exactly what you see above.
Running this command prepsubband -sub -subdm 5.75 -nsub 32 -downsamp 1 -o Sband ../GBT_Lband_PSR.fil
Did you figure out what was happening with this? Because I can't reproduce the error in the title of the issue.
Yeah, there isn't any way to do that right now besides editing the header.
Thanks for the pull request! I like the idea. I'm not sure I like the implementation with "--", though. Especially as it breaks the automatic creation of all the accelsearch_clig...
This also applies to PR #117 I just pushed up changes to the command line parsing for realfft, accelsearch, and zapbirds (which all likely need to be called many times...
One other comment: Is the fork() really necessary? If you have all the input filenames, why not simply iterate over them with a for loop within the original process?
No apologies necessary! I really appreciate you making the PR and making PRESTO better to use for others. Thank you so much! I'll verify about fork(), but I'm pretty sure...
So I just checked and it isn't quite a simple as iterating over main() as create_accelobs() will need a slight modification as well since it gets sent the full parsed...
Just checking about the intent of the fork() idea... Is your intent to run all of the accelsearches in parallel with the fork calls? Because that was more than I...