-
Notifications
You must be signed in to change notification settings - Fork 1
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
Iterative motif search #10
Comments
Tentatively done but not sure if result is what you want. |
Hi Adam, please describe what you have done about this issue and please tell how we can test it. |
I fixed the bug we saw today: I needed to convert the number of the motif into a character. The search now neatly returns a readable result if the threshold is kept low. |
What is the result on the simulated dataset with window 5? |
path = "test_data/simulated-phosphoproteomic-data.txt" Key: 22212 18981 1239 15209 440 1017 1918 106 1512 Final Graph: {None: (5, 'P', True)} |
How should we read these? I would like to understand the resulting DAG structure. |
The resulting acyclic graph in this case would be the original sequences with a single edge of (5, "P", True) leading to only the sequences with a "P" at index 5. The method itself works, and understanding the DAG structure can be part of the visualization issue. |
Let me give an example: The output above produces "(5, 'P', True) => []" twice in the last steps. Why is that? How can we look at this output and draw the DAG? Also, where does the index 5 map on the sequence? Is it the center? |
Write an iterative method that will start by looking for enrichments and deficiencies for each location and each amino acid. Then it will
Iterate this until nothing comes out as significant. This will give you a tree of results, but you will see that some of the nodes on the tree will converge in the same motif, meaning it is actually a DAG.
Report each significant motif with their p-values, and with their parent-child relations.
The text was updated successfully, but these errors were encountered: