-
Notifications
You must be signed in to change notification settings - Fork 717
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
Move process "convertGFFtoGTF" before "makeSTARindex" #248
Conversation
added flag -M to the featurecounts process, so that it doesn't ignore multimapping reads while counting
Moved process "Convert GFF3 to GTF" before "Making STAR index"
Nice! Great debugging @lpantano ! Thanks @silviamorins 👍 |
Did you change |
I took away a change I had previously pushed to my fork (I had added a |
Git gets me sometimes too 👍 There may be a more cleverer way to do this but for a small change like this I would just re-download all 3 original files you have amended and then make the changes again. Git should work out the differences based on that. e.g.
|
I should have fixed it .. ? |
environment.yml missing - that should be required too 👍 |
But I haven't changed it, is the same as in |
Hmm, the PR says you did ;-) https://github.com/nf-core/rnaseq/pull/248/files |
I removed it and then downloaded it again with |
When did you fork the pipeline? Im wondering if its because you havent updated your local branch to contain the current code on |
Can you try running these commands: |
I did as you said, had a conflict on the |
Looks fine now 👍 Only the files you amended are showing up now with only the changes you made. |
Great, thanks! sorry for the loss of time. Will try not to mess it up next time. |
No worries. The trick is to make sure you update the code on your fork every time you want to add new commits because this will factor in new changes to |
Running the command:
I get the following error:
ERROR ~ No such variable: gtf_makeSTARindex
As suggested by @lpantano here I tried moving the process
convertGFFtoGTF
beforemakeSTARindex
, so that as this last one starts, the necessary input file${gff.baseName}.gtf
(coming fromconvertGFFtoGTF
) exists; the error doesn't show up anymore.PR checklist
nf-core lint .
).CHANGELOG.md
is updatedLearn more about contributing: https://github.com/nf-core/rnaseq/tree/master/.github/CONTRIBUTING.md