Skip to content

Commit

Permalink
Renamed a process
Browse files Browse the repository at this point in the history
  • Loading branch information
aivo0 committed Nov 10, 2024
1 parent 41bae32 commit f37a6a4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 16 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,5 @@ results
dag.dot*
flowchart.png*
trace.txt*
report.html*
report.html*
bin/spkid_system
17 changes: 2 additions & 15 deletions transcribe.nf
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ audio_file = file(params.in)

out_dir = ""
if (params.out_dir == "") {
out_dir = "/results/${audio_file.baseName}/"
out_dir = "results/${audio_file.baseName}/"
}
else if (params.out_dir[-1] != "/") {
out_dir = params.out_dir + "/"
Expand Down Expand Up @@ -129,8 +129,6 @@ process language_id {
'''
}



process mfcc {
memory '1GB'

Expand Down Expand Up @@ -211,8 +209,6 @@ process speaker_id {
'''
}



// Do 1-pass decoding using chain online models
process one_pass_decoding {
memory '5GB'
Expand Down Expand Up @@ -246,7 +242,6 @@ process one_pass_decoding {
'''
}


process rnnlm_rescoring {
memory '5GB'

Expand Down Expand Up @@ -276,8 +271,6 @@ process rnnlm_rescoring {
'''
}



process lattice2ctm {
memory '4GB'
cpus 2
Expand Down Expand Up @@ -317,8 +310,6 @@ process lattice2ctm {
'''
}



process to_json {
memory '500MB'

Expand All @@ -343,7 +334,6 @@ process to_json {

}


process punctuation {
memory '4GB'

Expand Down Expand Up @@ -372,10 +362,7 @@ process punctuation {
'''
}




process output {
process final_output {
memory '500MB'

publishDir "${out_dir}", mode: 'copy', overwrite: true
Expand Down

0 comments on commit f37a6a4

Please sign in to comment.