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

Argo data submission [email protected] #97

Merged
merged 5 commits into from
Mar 12, 2024
Merged
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
12 changes: 6 additions & 6 deletions argo-data-submission-wf/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
*/

nextflow.enable.dsl = 2
version = '1.1.0'
version = '1.2.0'

// universal params go here, change default value as needed
params.container = ""
Expand Down Expand Up @@ -293,9 +293,9 @@ workflow ArgoDataSubmissionWf {
)

if (params.skip_sanity_check){
experiment_info_tsv=file(payloadJsonToTsvs.out.experiment_tsv)
read_group_info_tsv=file(og_read_group_info_tsv)
file_info_tsv=file(og_file_info_tsv)
experiment_info_tsv=payloadJsonToTsvs.out.experiment_tsv
read_group_info_tsv=payloadJsonToTsvs.out.read_group_tsv

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

test

file_info_tsv=payloadJsonToTsvs.out.file_tsv
} else {
sanityCheck(
payloadJsonToTsvs.out.experiment_tsv,
Expand All @@ -306,8 +306,8 @@ workflow ArgoDataSubmissionWf {
)

experiment_info_tsv=sanityCheck.out.updated_experiment_info_tsv
read_group_info_tsv=file(og_read_group_info_tsv)
file_info_tsv=file(og_file_info_tsv)
read_group_info_tsv=payloadJsonToTsvs.out.read_group_tsv
file_info_tsv=payloadJsonToTsvs.out.file_tsv
}
} else {
if (params.skip_sanity_check){
Expand Down
2 changes: 1 addition & 1 deletion argo-data-submission-wf/pkg.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "argo-data-submission-wf",
"version": "1.1.0",
"version": "1.2.0",
"description": "ARGO data submission workflow",
"main": "main.nf",
"deprecated": false,
Expand Down
2 changes: 1 addition & 1 deletion argo-data-submission-wf/tests/checker.nf
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
*/

nextflow.enable.dsl = 2
version = '1.1.0'
version = '1.2.0'

// universal params
params.publish_dir = ""
Expand Down
4 changes: 2 additions & 2 deletions nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -76,13 +76,13 @@ profiles {
rdpc_qa {
params.song_url = 'https://submission-song.rdpc-qa.cumulus.genomeinformatics.org'
params.score_url = 'https://submission-score.rdpc-qa.cumulus.genomeinformatics.org'
params.clinical_url = 'https://clinical.qa.argo.cancercollaboratory.org'
params.clinical_url = 'https://clinical.argo-qa.cumulus.genomeinformatics.org'
params.schema_url = 'https://submission-song.rdpc-qa.cumulus.genomeinformatics.org/schemas/sequencing_experiment'
}
rdpc_dev {
params.song_url = 'https://submission-song.rdpc-dev.cumulus.genomeinformatics.org'
params.score_url = 'https://submission-score.rdpc-dev.cumulus.genomeinformatics.org'
params.clinical_url = 'https://clinical.dev.argo.cancercollaboratory.org'
params.clinical_url = 'https://clinical.argo-dev.cumulus.genomeinformatics.org'
params.schema_url = 'https://submission-song.rdpc-dev.cumulus.genomeinformatics.org/schemas/sequencing_experiment'
}
}
Binary file added test_data/tiny-grch38-chr11-530001-537000.fa.gz
Binary file not shown.
1 change: 1 addition & 0 deletions test_data/tiny-grch38-chr11-530001-537000.fa.gz.fai
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
chr11 537000 40 50 51
Binary file added test_data/tiny-grch38-chr11-530001-537000.fa.gz.gzi
Binary file not shown.
Loading