GoekeLab/proActiv

cannot find extdata/testdata/bam

Closed this issue · 2 comments

Hi, thank your teams' great work.

I am a newbie. I want to try your package by using example bam file. However, I cannot find extdata/testdata/bam? Could you help me? Thank you.

Best regards,
Ruiyan

Hi,

The bam files are in the extdata/testdata/bam directory. You can obtain their paths on your system with the following:

> bam_path <- system.file('extdata/testdata/bam', package = 'proActiv')
> bam_path
[1] "C:/Users/joseph/OneDrive/Documents/R/win-library/4.1/proActiv/extdata/testdata/bam"


> list.files(bam_path, full.names = TRUE)
[1] "C:/Users/joseph/OneDrive/Documents/R/win-library/4.1/proActiv/extdata/testdata/bam/SGNEx_A549_Illumina_replicate1-run1_genome_subset.bam"
[2] "C:/Users/joseph/OneDrive/Documents/R/win-library/4.1/proActiv/extdata/testdata/bam/SGNEx_MCF7_Illumina_replicate2-run1_genome_subset.bam"

ok , thank you very much!