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

Code review #52

Merged
merged 4 commits into from
May 5, 2023
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: 11 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,17 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
config: ["test", "test_cram", "test_chr", "test_no_bai", "test_no_crai"]
config:
[
"test",
"test_cram",
"test_chr",
"test_no_bai",
"test_no_crai",
"test_no_stats",
"test_no_qc",
"test_collate_fast",
]
# Nextflow versions
include:
# Test pipeline minimum Nextflow version
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## v2.0.0dev - [date]
## v2.0.0 - Annie Easley

Initial release of nf-core/bamtofastq, created with the [nf-core](https://nf-co.re/) template.

Expand Down
2 changes: 1 addition & 1 deletion conf/test.config
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ params {
// Limit resources so that this can run on GitHub Actions
max_cpus = 2
max_memory = '6.GB'
max_time = '48.h'
max_time = '6.h'

// Input data
input = "https://raw.githubusercontent.com/nf-core/test-datasets/bamtofastq/samplesheet/test_bam_samplesheet.csv"
Expand Down
2 changes: 1 addition & 1 deletion conf/test_chr.config
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ params {
// Limit resources so that this can run on GitHub Actions
max_cpus = 2
max_memory = '6.GB'
max_time = '48.h'
max_time = '6.h'

// Input data
input = "https://raw.githubusercontent.com/nf-core/test-datasets/bamtofastq/samplesheet/test_chr_samplesheet.csv"
Expand Down
2 changes: 1 addition & 1 deletion conf/test_collate_fast.config
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ params {
// Limit resources so that this can run on GitHub Actions
max_cpus = 2
max_memory = '6.GB'
max_time = '48.h'
max_time = '6.h'

// Input data
input = "https://raw.githubusercontent.com/nf-core/test-datasets/bamtofastq/samplesheet/test_bam_samplesheet.csv"
Expand Down
2 changes: 1 addition & 1 deletion conf/test_cram.config
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ params {
// Limit resources so that this can run on GitHub Actions
max_cpus = 2
max_memory = '6.GB'
max_time = '48.h'
max_time = '6.h'

// Input data
input = 'https://raw.githubusercontent.com/nf-core/test-datasets/bamtofastq/samplesheet/test_cram_samplesheet.csv'
Expand Down
2 changes: 1 addition & 1 deletion conf/test_no_bai.config
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ params {
// Limit resources so that this can run on GitHub Actions
max_cpus = 2
max_memory = '6.GB'
max_time = '48.h'
max_time = '6.h'

// Input data
input = 'https://raw.githubusercontent.com/nf-core/test-datasets/bamtofastq/samplesheet/test_bam_samplesheet_no_bai.csv'
Expand Down
2 changes: 1 addition & 1 deletion conf/test_no_crai.config
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ params {
// Limit resources so that this can run on GitHub Actions
max_cpus = 2
max_memory = '6.GB'
max_time = '48.h'
max_time = '6.h'

// Input data
input = 'https://raw.githubusercontent.com/nf-core/test-datasets/bamtofastq/samplesheet/test_cram_samplesheet_no_crai.csv'
Expand Down
2 changes: 1 addition & 1 deletion conf/test_no_qc.config
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ params {
// Limit resources so that this can run on GitHub Actions
max_cpus = 2
max_memory = '6.GB'
max_time = '48.h'
max_time = '6.h'

// Input data
input = "https://raw.githubusercontent.com/nf-core/test-datasets/bamtofastq/samplesheet/test_bam_samplesheet.csv"
Expand Down
2 changes: 1 addition & 1 deletion conf/test_no_stats.config
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ params {
// Limit resources so that this can run on GitHub Actions
max_cpus = 2
max_memory = '6.GB'
max_time = '48.h'
max_time = '6.h'

// Input data
input = "https://raw.githubusercontent.com/nf-core/test-datasets/bamtofastq/samplesheet/test_bam_samplesheet.csv"
Expand Down
5 changes: 3 additions & 2 deletions nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ params {
multiqc_methods_description = null

// Boilerplate options
outdir = 'results'
outdir = null
tracedir = "${params.outdir}/pipeline_info"
publish_dir_mode = 'copy'
email = null
Expand Down Expand Up @@ -183,6 +183,7 @@ profiles {
test_no_crai { includeConfig 'conf/test_no_crai.config' }
test_no_stats { includeConfig 'conf/test_no_stats.config' }
test_no_qc { includeConfig 'conf/test_no_qc.config' }
test_collate_fast { includeConfig 'conf/test_collate_fast.config' }
}

// Load igenomes.config if required
Expand Down Expand Up @@ -232,7 +233,7 @@ manifest {
description = """Workflow converts one or multiple bam/cram files to fastq format"""
mainScript = 'main.nf'
nextflowVersion = '!>=22.10.1'
version = '2.0'
version = '2.0.0'
doi = ''
}

Expand Down