Sleuth#11
Open
markmcdowall wants to merge 112 commits into
Open
Conversation
…e running R scripts
…ler dataset has been generated
…le from kallisto_quant
rehamFatima
reviewed
Jun 5, 2018
rehamFatima
left a comment
Contributor
There was a problem hiding this comment.
Nice code.
Please find my humble review comments.
| .. code-block:: none | ||
| :linenos: | ||
|
|
||
| # Extract the original reads from teh FASTQ files |
|
|
||
| class process_sleuth(Workflow): | ||
| """ | ||
| Functions for processing Chip-Seq FastQ files. Files are the aligned, |
| metadata : dict | ||
| Input file meta data associated with their roles | ||
|
|
||
| kallisto_tar : str |
| source("http://bioconductor.org/biocLite.R") | ||
| if(!require("rhdf5")) biocLite("rhdf5") | ||
| if(!require("devtools")) install.packages("devtools") | ||
| if(!require("sleuth")) devtools::install_github("pachterlab/sleuth") No newline at end of file |
| "file_path": "tests/data/kallisto.run_info.json", | ||
| "file_path": "tests/data/kallisto.Human.ERR030872.tar.gz", | ||
| "data_type": "data_rna_seq", | ||
| "compressed": "null" |
Contributor
There was a problem hiding this comment.
(Q) . What exactly is the compressed tag for ?
Member
Author
There was a problem hiding this comment.
Indicate if the file is compressed or not.
| fi | ||
| done | ||
|
|
||
| # Added to remove the Sleuth results folder due to nexted structure |
| ), | ||
| "run_info_file": Metadata( | ||
| "kallisto_tar_file": Metadata( | ||
| data_type="data_ranseq", |
| } | ||
| } | ||
| ] | ||
| } No newline at end of file |
Member
Author
There was a problem hiding this comment.
This is fine as it is a JSON file
|
|
||
| class sleuthTool(Tool): # pylint: disable=invalid-name | ||
| """ | ||
| Tool for peak calling for iDamID-seq data |
| def run(self, input_files, input_metadata, output_files): | ||
| """ | ||
| The main function to run Sleuth over a set of RNA-seq experiments | ||
| nalysed using Kallisto to identify differentially expressed genes. |
pabloacera
approved these changes
Jun 12, 2018
…o that any dataset/expt info is also retained
…of the files metadata
Member
Author
|
Awaiting confirmation about the method for passing the parameters to the RNA-seq pipeline and Sleuth before merging. |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This is a new tools for the analysis of differential gene expression.
It has required changes to the original process_rnaseq pipeline for the packaging of the results as well as new pipelines and tools.