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
{{ message }}
This repository was archived by the owner on Apr 20, 2026. It is now read-only.
Hello.
In issue #65@jjzieve said that GTCtoVCF should work on python3, but last commit on master says:
GTCtoVCF is currently only known to work with python2.7
I can confirm that GTCtoVCF working on Python3 (just tested) and even working with last numpy (1.21.4) and pysam (0.17.0).
Only problem is PyVCF and its use_2to3, removed in setuptools 58, that's why I have to use pip install setuptools<58.
If you plan to support the tool further, I suggest finding a replacement for pyvcf - other people looking (like here).
Here is part of my Dockerfile (we're using Python 3.7.5):
RUN pip install --no-cache-dir 'setuptools<58'
RUN pip install --no-cache-dir numpy pyvcf pysam
ENV GTCTOVCF_VERSION="1.2.1"
RUN cd "$SOFT" \
&& wget -q "https://github.com/Illumina/GTCtoVCF/archive/refs/tags/${GTCTOVCF_VERSION}.tar.gz" -O "$SOFT/GTCtoVCF-${GTCTOVCF_VERSION}.tar.gz" \
&& tar -xzf "$SOFT/GTCtoVCF-${GTCTOVCF_VERSION}.tar.gz" \
&& rm "$SOFT/GTCtoVCF-${GTCTOVCF_VERSION}.tar.gz"
ENV GTCTOVCF="$SOFT/GTCtoVCF-${GTCTOVCF_VERSION}/gtc_to_vcf.py"
Hello.
In issue #65 @jjzieve said that
GTCtoVCFshould work on python3, but last commit on master says:I can confirm that
GTCtoVCFworking on Python3 (just tested) and even working with lastnumpy(1.21.4) andpysam(0.17.0).Only problem is
PyVCFand its use_2to3, removed insetuptools58, that's why I have to usepip install setuptools<58.If you plan to support the tool further, I suggest finding a replacement for
pyvcf- other people looking (like here).Here is part of my Dockerfile (we're using Python 3.7.5):