Skip to content
Open
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
2 changes: 1 addition & 1 deletion config/nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ params {
report_dir = 'report'
publish_dir_mode = 'symlink' // avoid duplicating output files (I think we should always try to use symlink instead of copy mode)
samples_csv = "$projectDir/../samples/samples.csv"
ref_genome = "$projectDir/../references/cds_from_genomic.fna"
ref_genome = "$projectDir/../references/mrna_genomic_sequence.fna" // adicionar as sequencias genomicas dos mRNAs anotados
}

// OBS: that is just a draft version; we must try to remove every 'code smell' from our code (if possible)
Expand Down
2 changes: 2 additions & 0 deletions modules/downloadReadFTP.nf
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
process downloadReadFTP {
maxForks 2 // limit parallel downloads: https://github.com/nextflow-io/nextflow/discussions/3415

input:
tuple val(run), path(json_file)

Expand Down