bergmanlab / ngs_te_mapper2

Software for detecting transposable element insertions from next-generation sequencing data
BSD 2-Clause "Simplified" License
9 stars 1 forks source link

Nothing provides perl-text-soundex error for ngs_te_mapper2 #7

Open dgodin19 opened 1 year ago

dgodin19 commented 1 year ago

Hi,

I am trying to create the environment for ngs_te_mapper2. I have attempted to use either mamba or conda with:

mamba create -n ngs_te_mapper2 --channel bioconda ngs_te_mapper2

or conda create -n ngs_te_mapper2 --channel bioconda ngs_te_mapper2

and I run into:

Encountered problems while solving:

I tried downloading perl-text-soundex from conda forge, but I still run into the previous errors. Any ideas? I am using a linux subsystem on a windows machine.

shunhuahan commented 1 year ago

Hi @dgodin19,

Thanks for reporting it. There are multiple variables that could cause this issue, including base conda environment and conda version. You could first try installing the exact version of perl-text-soundex and repeatmasker as follows, then try installing ngs_te_mapper2, see if it works. It's possible the repeatmasker version your conda was trying to install doesn't have a compatible version of perl-text-soundex in conda.

conda create --name ngs_te_mapper2_test
conda activate ngs_te_mapper2_test
conda install perl-text-soundex=3.05=pl526_1000
conda install repeatmasker=4.0.7=pl526_13
conda install ngs_te_mapper2

Let me know how these suggestions work out for you and I could potentially update ngs_te_mapper2 bioconda recipe or repo accordingly to prevent others from having the same issues as well. Thanks!

Best, Shunhua

cbergman commented 1 year ago

Hi @dgodin19

Did you make any progress on getting ngs_te_mapper2 installed. If so, could you please let us know so we can close this issue?

Thanks, Casey