Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
NGN3_paper_code/README.md
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
40 lines (37 sloc)
2.76 KB
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
# NGN3_paper_code | |
Source codes to perform computational analyses in NGN3 paper | |
## Methods and Tools | |
* RNA-seq transcript quantification: RSEM | |
* RNA-seq read alignment: STAR | |
* Differential gene expression (DGE): DESeq2 | |
* Differential transcript expression (DTE): DESeq2 | |
* Gene ontology enrichment: PANTHER | |
* Differential transcript usage (DTU): IsoformSwitchAnalyzeR | |
* Differential splicing events: rMATS | |
* RBP consensus motif enrichment: rMAPS2 | |
* CLIP-seq binding site enrichment: RBP-Maps | |
* ONT-seq transcript identification and quantification: IsoTV | |
* ONT-seq transcript classification: SQANTI3 | |
* Protein identification and quantification: MaxQuant | |
* Differential protein enrichment: DEP | |
## Directory structure | |
. | |
├── ONT_seq_analysis # Scripts used for ONT-seq analyses | |
│ ├── DTE_analysis # Differential transcript expression (DTE) analysis | |
│ ├── DTU_analysis # Differential transcript usage (DTU) analysis | |
│ ├── long_short_comparison # Comparison between ONT-seq and Illumina RNA-seq | |
│ ├── quantification_classification # transcript identification, quantification and classification for ONT-seq data | |
├── Proteomics_analysis # Scripts used for Proteomics analyses | |
│ ├── IsoformMS # Protein isoform quantification for mass spectrometry (MS) | |
│ ├── PrepareData # Pre-processing | |
│ ├── RBPs # Differential analysis for RNA binding proteins (RBPs) | |
├── RNA_seq_analysis # Scripts used for RNA-seq analyses | |
│ ├── DGE_analysis # Differential gene expression (DGE) analysis | |
│ ├── DTU_analysis # Differential transcript usage (DTU) analysis | |
│ ├── GO_enrichment_analysis # Gene ontology enrichment analysis | |
│ ├── RBP_binding_site_analysis # RBP binding sites enrichment | |
│ ├── RBP_consensus_motif_analysis # RBP consensus motifs enrichment | |
│ ├── comparative_transcriptome_analysis_with_BrainSpan # Comparison of transcriptomes between BrainSpan and NGN3 models | |
│ ├── differential_splicing_analysis # Event-centered differential splicing analysis | |
│ ├── quantification # transcript quantification for RNA-seq data | |
└── ... | |