-
Notifications
You must be signed in to change notification settings - Fork 26
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
hit selection module #191
Merged
Merged
hit selection module #191
Changes from all commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
724c897
hit selection first draft
LaurenceKuhl 093e5c1
Test
LaurenceKuhl 88118c9
First running hitselection
LaurenceKuhl 47476a7
Merge branch 'dev' into hit_selection
LaurenceKuhl 6077809
Add smaller steps for the test
LaurenceKuhl ae842d5
Merge branch 'hit_selection' of github.com:laurencekuhl/crisprseq int…
LaurenceKuhl f66fa7b
Fix hitselection
LaurenceKuhl 7e7c52a
Polish the plot
LaurenceKuhl f79f7b7
hit selection documentation is added.
049fb2b
Add hitselection to mageck mle
LaurenceKuhl 17c9558
Test
73bbca4
Add usage
LaurenceKuhl af36f3a
Update the nextflow config
LaurenceKuhl 5a44897
Update docs/output/screening.md
LaurenceKuhl 9a78d06
Update changelog
LaurenceKuhl e010fa8
Merge branch 'hit_selection' of github.com:laurencekuhl/crisprseq int…
LaurenceKuhl fd2367c
Add hitselection on bagel2 and if statements around the hitselection …
LaurenceKuhl 0b995cc
Update docs/usage/screening.md
LaurenceKuhl 7399348
Add the specific folder
LaurenceKuhl 97c827d
Update docs/usage/screening.md
LaurenceKuhl 19744a9
Update docs/usage/screening.md
LaurenceKuhl 98d683e
Add a iteration number in the rra tests
LaurenceKuhl File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -134,6 +134,18 @@ The contrast from reference to treatment should be ; separated | |
|
||
If you wish to remove specific genes before the drugZ analysis, you can use the `--drugz_remove_genes` option following a comma separated list of genes. | ||
|
||
### Running Hitselection | ||
|
||
Hitselection provides the user with a threshold and a set of genes that are likely to be closer to true positives by identifying the most interconnected subnetworks within the ranked gene list. This module is for now only developed for KO screens on Human data mapped to Entrez IDs. | ||
|
||
Hitselection is a script for identifying rank thresholds for CRISPR screen results based on using the connectivity of subgraphs of protein-protein interaction (PPI) networks. The script is based on R and is also an implementation of RNAiCut (Kaplow et al., 2009), a method for estimating thresholds in RNAi data. The principle behind Hitselection is that true positive hits are densely connected in the PPI networks. The script runs a simulation based on Poisson distribution of the ranked screen gene list to calculate the -logP value for comparing the interconnectivity of the real subnetwork and the degree match random subnetwork of each gene, one by one. The degree of the nodes is used as the interconnectivity metric. | ||
|
||
To run Hitselection, you can specify '--hitselection' and it will automatically run on the gene essentiality algorithms you have chosen. The outputs are a png file containing the -logP value vs gene rank plot and a txt file containing all the -logP values, edge and average edge values and ranked gene symbols. | ||
|
||
## :warning: The hitselection algorithm is for the moment developed only for KO screens and requires the library to map to genes with an Homosapiens EntrezID. | ||
|
||
## :warning: Please be advised that the Hitselection algorithm is time intensive and will make the pipeline run longer | ||
Comment on lines
+145
to
+147
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. To show a formatted warning box on the webside the notation is the following:
|
||
|
||
Note that the pipeline will create the following files in your working directory: | ||
|
||
```bash | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this go under point 5?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actually no it's also a gene essentiality analysis but only on drug treated cell lines. It does something similar to MAGeCK MLE