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
Thanks for the cool tool. I hope to get it running.
I have been trying to get it run with the following command syntax:
${GALA} ${DRAFTS} -a canu fq ${READS} -nanopore-corrected
It gave this error:
usage: gala -h [options] <draft_names & paths> <fa/fq> <reads> <platform>
gala: error: the following arguments are required: draft_names, input_file, reads, sequencing_platform
I tried taking out -a canu, it gave a new error:
${GALA} ${DRAFTS} -fq ${READS} -nanopore-corrected
usage: gala -h [options] <draft_names & paths> <fa/fq> <reads> <platform>
gala: error: the following arguments are required: sequencing_platform
To get past this error, I had to remove the dash "-" in front of nanopore-corrected:
${GALA} ${DRAFTS} fq ${READS} nanopore-corrected
That got it past that error, but I am currently dealing with Minimap2 now yelling about something, which I will diagnose and report back on.
Speaking to that error though, it seems to me that the syntax guidance on the frontpage of this github repo says to use the following for sequence platforms:
p.s. I am using Python 3.9.12 -- and am wondering if that is causing problems. I tried python 2.7 as listed a sa req, but all the python code seems to explicitly request python3. I know sometimes the later python 3 sub-versions don't play well with code written in the earlier python 3 sub-versions. So that is why I am wondering what version of Python 3 were you using while developing Gala?
Hi,
Thanks for the cool tool. I hope to get it running.
I have been trying to get it run with the following command syntax:
It gave this error:
I tried taking out
-a canu
, it gave a new error:To get past this error, I had to remove the dash "-" in front of nanopore-corrected:
That got it past that error, but I am currently dealing with Minimap2 now yelling about something, which I will diagnose and report back on.
Speaking to that error though, it seems to me that the syntax guidance on the frontpage of this github repo says to use the following for sequence platforms:
...yet that front dash causes a problem.
So perhaps the syntax guidance needs changing, or the argparse code regarding this positional argment.
Best,
John Urban
The text was updated successfully, but these errors were encountered: