Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migrate CleanVcf into GATK #733

Draft
wants to merge 21 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/.dockstore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,7 @@ workflows:
filters:
branches:
- main
- kj_sv_cleanvcf
tags:
- /.*/

Expand Down
12 changes: 0 additions & 12 deletions dockerfiles/sv-pipeline/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -70,13 +70,9 @@ RUN plink2 || true
# -Compile StitchFragmentedCNVs Java program
# -Compile StitchFragmentedCNVs unit tests
# -Compile VCFParser unit tests
# -Compile and test CleanVCFPart1 Java program
# -Compile and test CleanVCFPart1 unit tests
ENV STITCH_JAR="/opt/sv-pipeline/java/build/StitchFragmentedCNVs.jar"
ARG STITCH_UNIT_TEST_JAR="/opt/sv-pipeline/java/build/StitchFragmentedCNVsUnitTest.jar"
ARG VCF_PARSER_UNIT_TEST_JAR="/opt/sv-pipeline/java/build/VCFParserUnitTest.jar"
ENV CLEAN_VCF_PART_1_JAR="/opt/sv-pipeline/java/build/CleanVCFPart1.jar"
ARG CLEAN_VCF_PART_1_UNIT_TEST_JAR="/opt/sv-pipeline/java/build/CleanVCFPart1UnitTest.jar"
ARG BUILD_DEPS="openjdk-8-jdk"
ARG DEBIAN_FRONTEND=noninteractive
RUN export APT_TRANSIENT_PACKAGES=$(diff_of_lists.sh "$BUILD_DEPS" $APT_REQUIRED_PACKAGES) && \
Expand All @@ -97,14 +93,6 @@ RUN export APT_TRANSIENT_PACKAGES=$(diff_of_lists.sh "$BUILD_DEPS" $APT_REQUIRED
echo "Running VCFParserUnitTest..." && \
java -enableassertions -jar $VCF_PARSER_UNIT_TEST_JAR && \
rm -rf build/classes/* $VCF_PARSER_UNIT_TEST_JAR && \
javac -d build/classes org/broadinstitute/svpipeline/CleanVCFPart1.java org/broadinstitute/svpipeline/VCFParser.java && \
jar cfe build/CleanVCFPart1.jar "org.broadinstitute.svpipeline.CleanVCFPart1" -C build/classes . && \
rm -rf build/classes/* && \
javac -d build/classes org/broadinstitute/svpipeline/CleanVCFPart1UnitTest.java org/broadinstitute/svpipeline/CleanVCFPart1.java org/broadinstitute/svpipeline/VCFParser.java && \
jar cfe build/CleanVCFPart1UnitTest.jar "org.broadinstitute.svpipeline.CleanVCFPart1UnitTest" -C build/classes . && \
echo "Running CleanVCFPart1UnitTest..." && \
java -enableassertions -jar $CLEAN_VCF_PART_1_UNIT_TEST_JAR && \
rm -rf build/classes/* $CLEAN_VCF_PART_1_UNIT_TEST_JAR && \
apt-get -qqy remove --purge $APT_TRANSIENT_PACKAGES && \
apt-get -qqy autoremove --purge && \
apt-get -qqy clean && \
Expand Down

This file was deleted.

This file was deleted.

Loading
Loading