Skip to content

Commit

Permalink
Merge pull request #15 from icgc-argo/validate-seqtools@0.1.1
Browse files Browse the repository at this point in the history
[release]
  • Loading branch information
edsu7 authored Aug 17, 2022
2 parents 4b2788a + e4156c1 commit f1e3957
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
7 changes: 5 additions & 2 deletions validate-seqtools/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
/* this block is auto-generated based on info from pkg.json where */
/* changes can be made if needed, do NOT modify this block manually */
nextflow.enable.dsl = 2
version = '0.1.0' // package version
version = '0.1.1'

container = [
'ghcr.io': 'ghcr.io/icgc-argo/argo-data-submission.validate-seqtools'
Expand Down Expand Up @@ -67,10 +67,13 @@ process validateSeqtools {
// add and initialize variables here as needed
args_skip_md5sum_check = params.skip_md5sum_check ? "--skip_md5sum_check " : ""
"""
cp ${json_file} local_copy
python3 /tools/main.py \
-j ${json_file} \
-j local_copy \
${args_skip_md5sum_check} \
> seq-tools.log 2>&1
rm local_copy
ls validation_report.PASS*.jsonl && ( exit 0 || exit 1)
"""
}

Expand Down
2 changes: 1 addition & 1 deletion validate-seqtools/pkg.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "validate-seqtools",
"version": "0.1.0",
"version": "0.1.1",
"description": "Using Seq-tools, validates molecular",
"main": "main.nf",
"deprecated": false,
Expand Down
2 changes: 1 addition & 1 deletion validate-seqtools/tests/checker.nf
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
/* this block is auto-generated based on info from pkg.json where */
/* changes can be made if needed, do NOT modify this block manually */
nextflow.enable.dsl = 2
version = '0.1.0' // package version
version = '0.1.1'

container = [
'ghcr.io': 'ghcr.io/icgc-argo/argo-data-submission.validate-seqtools'
Expand Down
File renamed without changes.

0 comments on commit f1e3957

Please sign in to comment.