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

Add FASTQ files to testing operations #3

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

adamrtalbot
Copy link
Contributor

@adamrtalbot adamrtalbot commented Oct 1, 2024

This PR adds the ability to use the FASTQ files in downstream operations (e.g. rename, compress). This will allow us to add larger input files into the mix for pushing the limits of testing a bit more based on requirements.

Comment on lines +2 to +8
params.total_reads = 10000 // Total number of reads per file (10k reads generates a ~1GB file)
params.num_files = 10 // Number of FASTQ files to generate in parallel and concatenate
params.small_files = 1000 // Number of small files to generate in a single process
params.run = null // Tools to selectively run
params.skip = '' // Tools to selectively skip
params.use_small_files = true // Use small files in downstream operations
params.use_fastq_files = false // Use FASTQ files in downstream operations
Copy link
Member

Choose a reason for hiding this comment

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

Suggested change
params.total_reads = 10000 // Total number of reads per file (10k reads generates a ~1GB file)
params.num_files = 10 // Number of FASTQ files to generate in parallel and concatenate
params.small_files = 1000 // Number of small files to generate in a single process
params.run = null // Tools to selectively run
params.skip = '' // Tools to selectively skip
params.use_small_files = true // Use small files in downstream operations
params.use_fastq_files = false // Use FASTQ files in downstream operations
params.large_file_types = 'fastq' // Number of FASTQ files to generate in parallel and concatenate
params.small_file_types = 'fastq,dev0' // Number of FASTQ files to generate in parallel and concatenate
params.large_num_files = 10 // Number of FASTQ files to generate in parallel and concatenate
params.small_num_files = 1000 // Number of small files to generate in a single process
params.fastq_total_reads = 10000 // Total number of reads per file (10k reads generates a ~1GB file)
params.run_processes = null // Tools to selectively run
params.skip_processes = '' // Tools to selectively skip
//params.use_small_files = true // Use small files in downstream operations
//params.use_fastq_files = false // Use FASTQ files in downstream operations

@adamrtalbot
Copy link
Contributor Author

adamrtalbot commented Oct 2, 2024

Note: this is a much lighter weight version of #5 which may be a better long term solution. This one is backwards compatible while PR #5 is not.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants