-
-
Notifications
You must be signed in to change notification settings - Fork 6
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
Update annotSeg_7102f1c.pl #471
base: develop
Are you sure you want to change the base?
Conversation
Lancet changes to sync with other pipelines
Quick bugfix
Update pipeline.yaml
Release v1.1.0
Increment pipeline version
Mutation burden bugfix
Release v1.1.1
Pipeline version bump for v1.1.1
Release v1.1.2
v1.1.2 versioning
release_v1.2
Release v1.2 versioning
AnnotSeg creates a window from which genes are selected from the ensembl gtf. This window was found to be too large and is annotating beyond the actual region of genes. Because it was doing a division/multiplication before a subtraction - this caused windows to be thousands of bp larger than what they actually should be. This fix takes care of making the window size more accurate by doing the subtraction/addition before multiplication/division.
@tizatt can you update teh pull request to be to develop, this update will require a release update. @bryce-turner is this code running in tempe? |
Ok yes I can do it for the develop |
Currently not in tempe, avoiding a perl container for an output not many people use. Plus the implementation is theoretical. |
AnnotSeg creates a window from which genes are selected from the ensembl gtf. This window was found to be too large and is annotating beyond the actual region of genes. Because it was doing a division/multiplication before a subtraction - this caused windows to be thousands of bp larger than what they actually should be. This fix takes care of making the window size more accurate by doing the subtraction/addition before multiplication/division.