You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First, thank you for developing this excellent tool for multi-omics data integration. Taiji's approach to integrating ATAC-seq and RNA-seq data is very helpful for our research.
Issue Description
Running Taiji pipeline with bulk ATAC-seq and RNA-seq data integration. While most outputs are generated, network analysis results are incomplete:
Network/*/edges_combined.csv is empty (only header)
GeneRanks.tsv and GeneRanks_PValues.tsv only contain column headers
RNA-seq:
- id: condition1_RNAgroup: condition1replicates:
- rep: 1files:
- path: /path/to/rna_counts/condition1_rep1.counts.tsvtags: ['GeneQuant']
- rep: 2files:
- path: /path/to/rna_counts/condition1_rep2.counts.tsvtags: ['GeneQuant']
- rep: 3files:
- path: /path/to/rna_counts/condition1_rep3.counts.tsvtags: ['GeneQuant']
- id: condition2_RNAgroup: condition2replicates:
- rep: 1files:
- path: /path/to/rna_counts/condition2_rep1.counts.tsvtags: ['GeneQuant']
- rep: 2files:
- path: /path/to/rna_counts/condition2_rep2.counts.tsvtags: ['GeneQuant']
- rep: 3files:
- path: /path/to/rna_counts/condition2_rep3.counts.tsvtags: ['GeneQuant']ATAC-seq:
- id: condition1_ATACgroup: condition1replicates:
- rep: 1files:
- path: /path/to/atac/condition1_rep1.mLb.clN.sorted.bamtags: ['Filtered']
- rep: 2files:
- path: /path/to/atac/condition1_rep2.mLb.clN.sorted.bamtags: ['Filtered']
- rep: 3files:
- path: /path/to/atac/condition1_rep3.mLb.clN.sorted.bamtags: ['Filtered']
- id: condition2_ATACgroup: condition2replicates:
- rep: 1files:
- path: /path/to/atac/condition2_rep1.mLb.clN.sorted.bamtags: ['Filtered']
- rep: 2files:
- path: /path/to/atac/condition2_rep2.mLb.clN.sorted.bamtags: ['Filtered']
- rep: 3files:
- path: /path/to/atac/condition2_rep3.mLb.clN.sorted.bamtags: ['Filtered']###config.yamlinput: "input.yaml"assembly: "GRCh38"genome: "/path/to/genome/genome.fa"annotation: "/path/to/annotation/GRCh38/genes.gtf"motif_file: "/path/to/motif/cisBP_human.meme"output_dir: "output/"###file contents generanks.tsv and generanks_pvalues.tsv only header condition1 condition2#### in the network folder nodes.csv gets populated geneName:ID,expression,expressionZScoregeneA,1,0.1geneB,1,0.1geneC,1,0.1geneD,1.107,2.425geneE,0.848,1.566####edges_binding.csv only header :START_ID,:END_ID,chr,start:int,end:int,annotation,affinity,:TYPE####edges_combined.csv :START_ID,:END_ID,weight,:TYPEEnvironmentTaiji version: 1.3.1.2samtools: 1.3.1Using preprocessed BAM files with 'Filtered' tagPipeline completes without errorsAll intermediate files are generatedQuestionsWhy are edge files empty when nodes.csv contains data?Is there a minimum threshold for edge creation? if yes how to reduce that threshold ?How can I debug the network construction step?Are there specific parameters needed in config.yaml for network generation?Do I need additional settings since I'm using preprocessed BAM files?**one thing i observed in my result output when compared to your example output i dont have folder containing Promoters with promoters.bed do i need to provide it ?Additional NotesTried with both single and multiple replicatesBoth BAM and peak-based approaches produce same resultAll ATACSeq and RNASeq intermediate files are generated successfullyThank you for your time in looking into this issue. We really appreciate your work on Taiji and your help with troubleshooting.Best regards,Arpit
The text was updated successfully, but these errors were encountered:
Hi Taiji team,
First, thank you for developing this excellent tool for multi-omics data integration. Taiji's approach to integrating ATAC-seq and RNA-seq data is very helpful for our research.
Issue Description
Running Taiji pipeline with bulk ATAC-seq and RNA-seq data integration. While most outputs are generated, network analysis results are incomplete:
Directory Structure
output/
├── ATACSeq/
├── GeneRanks_PValues.tsv
├── GeneRanks.tsv
├── GENOME/
├── Network/
│ └── condition1/
│ ├── edges_binding.csv # Only header
│ ├── edges_combined.csv # Only header
│ └── nodes.csv # Has content
├── RNASeq/
└── SCATACSeq/
input.yaml:
The text was updated successfully, but these errors were encountered: