gagneurlab / drop

Pipeline to find aberrant events in RNA-Seq data, useful for diagnosis of rare disorders
MIT License
129 stars 43 forks source link

Splicing part error when running own data #393

Closed liffcardio closed 1 year ago

liffcardio commented 1 year ago

Hi, I set an environment by using the DROP_1.2.2.yaml, then run the demo in the environment. It worked well. Then I use the same environment to run my own data. The expression part worked. But when I run the splicing part using

snakemake -c2 aberrantSplicing

the error came and the log is attached. the yaml file for my data is also attached. Any help is much appreciated. Do you have a clue about this? Thank you very much.

2022-11-15T104746.086646.snakemake.log

projectTitle: "DROP: Detection of RNA Outliers" root: /droptest/Output # root directory of all output objects and tables htmlOutputPath: /droptest/Output/html # path for HTML rendered reports indexWithFolderName: true # whether the root base name should be part of the index name

hpoFile: null # if null, downloads it from webserver sampleAnnotation: /droptest/Data/sample_annotation.tsv # path to sample annotation (see documentation on how to create it)

root: /droptest/Output sampleAnnotation: /droptest/Data/sample_annotation.tsv geneAnnotation: v29: /droptest/Data/gencode.v42.chr_patch_hapl_scaff.annotation.gtf genomeAssembly: hg38 genome: gencode: /droptest/Data/GRCh38.p13.genome.fa

hpoFile: null #relation between genes and phenotypes encoded as HPO term(necessary?)

exportCounts:

specify which gene annotations to include and which

# groups to exclude when exporting counts
geneAnnotations:
    - v29
excludeGroups: null

genome: # path to reference genome sequence in fasta format.

You can define multiple reference genomes in yaml format, ncbi: path/to/ncbi, ucsc: path/to/ucsc

# the keywords that define the path should be in the GENOME column of the sample annotation table
gencode: /droptest/Data/GRCh38.p13.genome.fa 

aberrantExpression: run: true groups:

aberrantSplicing: run: true groups:

mae: run: true groups:

rnaVariantCalling: run: true groups:

tools: gatkCmd: gatk bcftoolsCmd: bcftools samtoolsCmd: samtools

vyepez88 commented 1 year ago

Hi, can you please also attach your sample annotation?

liffcardio commented 1 year ago

Thank you for your reply. I tried to keep running the program and found out my bam file did not have read group tag. I added the read group tag and it seems working well at the moment. Thank you very much.