Skip to content

Commit

Permalink
Intermediate in development of t1dgrs2 v2 pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
ngaddis committed Sep 18, 2024
1 parent ee7990d commit 3f71739
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 10 deletions.
17 changes: 8 additions & 9 deletions t1dgrs2_pipeline/v2.0/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,6 @@ RUN conda install -c bioconda -y t1dgrs2
#### Install plink1.9 ####
RUN conda install -c bioconda -y plink

#### Install PERL modules ####
RUN cpanm install JSON

# Add pipeline inputs
RUN mkdir -p /pipeline/inputs
ADD pipeline_inputs/* /pipeline/inputs/
Expand All @@ -71,20 +68,22 @@ ADD pipeline_config/* /pipeline/config/

#### Install custom scripts ####
# Add scripts
ADD scripts/entrypoint.sh /opt/
ADD scripts/run_pipeline.py /opt/
ADD scripts/download_gvcfs_from_revvity_sftp.py /opt/
ADD scripts/batch_extract_gvcf_variants.py /opt/
ADD scripts/download_gvcfs_from_revvity_sftp.py /opt/
ADD scripts/entrypoint.sh /opt/
ADD scripts/extract_gvcf_variants.pl /opt/
ADD scripts/generate_file_for_export.pl /opt/
ADD scripts/merge_file_rows.sh /opt/
ADD scripts/run_pipeline.py /opt/
ADD scripts/sftp_results.py /opt/
# Change permissions
RUN chmod 755 /opt/entrypoint.sh
RUN chmod 755 /opt/run_pipeline.py
RUN chmod 755 /opt/download_gvcfs_from_revvity_sftp.py
RUN chmod 755 /opt/batch_extract_gvcf_variants.py
RUN chmod 755 /opt/download_gvcfs_from_revvity_sftp.py
RUN chmod 755 /opt/entrypoint.sh
RUN chmod 755 /opt/extract_gvcf_variants.pl
RUN chmod 755 /opt/generate_file_for_export.pl
RUN chmod 755 /opt/merge_file_rows.sh
RUN chmod 755 /opt/run_pipeline.py
RUN chmod 755 /opt/sftp_results.py

WORKDIR /data
Expand Down
1 change: 0 additions & 1 deletion t1dgrs2_pipeline/v2.0/scripts/extract_gvcf_variants.pl
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
use Getopt::Long;
use constant FALSE => 0;
use constant TRUE => 1;
use Data::Dumper;

# Autoflush STDOUT
select((select(STDOUT), $|=1)[0]);
Expand Down

0 comments on commit 3f71739

Please sign in to comment.