Hi, my question is basically the same as : GC-BIAS correction for BAM file
I need a software that will take in bam/fastq and output a GC (and other) -bias corrected bam/fastq. The issue with computeGCBias/correctGCBias is that one of their dependencies requires centOS7 to run but I only have access to centOS6.
Are there any other software that corrects for GC bias and outputs a bam/fastq file? I looked at several software like salmon and some R packages but they don't seem to have an option to output bam/fastq.
Thanks for the assistance
Can you be more specific? Which dependencies? I installed deepTools 2.1 on CentOS 6 without problems.
Yeah i installed deepTools no problem but when I ran computeGCBias, I get this error: ImportError: /lib64/libc.so.6: version `GLIBC_2.14' not found
This comment "CentOS 6 uses glibc 2.12 so those errors are to be expected if you try to run something compiled for a more recent glibc version. The solution is either to get the correct application built for use on glibc 2.12 or to use CentOS 7 which has glibc 2.17." from https://www.centos.org/forums/viewtopic.php?t=57881 implies that I cannot install glibc 2.14 on CentOS 6
This will only happen if you compiled something under centOS7 and are using it then on a CentOS6 machine. The source code itself will compile against whatever version of libraries you happen to have, that won't matter.
Perhaps you'll have better luck with using conda to install things, since this suggests that there are larger issues with your server setup.
Devon, thanks,
I followed your advice and used conda to install deeptools, and computeGCBias now runs smoothly