-
Notifications
You must be signed in to change notification settings - Fork 172
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
Pipeline ignores --kallisto_index #21
Comments
Pull Request #22 should fix this issue - you can for example test using this here and replacing [...] with your parameters of choice:
|
Hi, thanks for looking into this! Unfortunately with
Seems like the |
in addition, if I specify some gtf file via
looks like kallisto never gets triggered! |
The first part is expected and intentional: If you don't specify a GTF, there is no way to extract the transcriptome as this annotation is used to find out what are the exons on the selected genome FastA. Double checking the processes, this is also correctly configured:
This should work ...? This runs through and produces |
What I see is that the index has to be specified as a directory rather than a .idx file:
However, if the index is specified the pipeline doesn't execute the following processes:
|
I get the
|
I should probably sit down with this and provide a complete fix with additional tests for supplied indices (which isn't covered entirely so far...) |
Might be a good idea... But I think the problem here is a bit broader than just the Also, it appears from further work that the latest version of kallisto (0.46.2) is broken. When I follow the kallisto tutorial, then things appear to run through ok with kallisto v0.46.1. |
Thanks for the notification for Kallisto 0.46.2 being broken. The tests were probably running at some point just fine (as tested by multiple tests...) but were then broken in attempts to fix some cases where kallisto wasn't running inside the tests at all unfortunately. I unfortunately also experienced memory issues on TravisCI, which might be overcome now that we switched entirely to running on GitHub Actions. Lets see, currently going through 250+ github issues / things :-( |
This should be fixed in the latest |
Hi,
I'm trying to run kallisto, using a precomputed index, but it keeps failing.
I get
Must provide either a GTF file ('--gtf') or transcript to gene mapping ('--txp2gene') to align with Alevin
, which is slightly weird since im not trying to run Alevin.Adding
--gtf resources/Homo_sapiens.GRCh38.96.gtf
, gives meNeither of --fasta or --transcriptome provided! At least one must be provided to quantify genes
Adding
--transcriptome_fasta resources/Homo_sapiens.GRCh38.cdna.all.fa.gz
runs into this issue #20Anyways, neither
--gtf
nor--transcriptome_fasta
should be needed for kallisto with a precomputed index!I tried to backtrack the issue in the
main.nf
but no luck, the logic is quite complicated (I just started using nextflow two days ago)The text was updated successfully, but these errors were encountered: