Skip to content

Commit e8242a9

Browse files
committed
trying dev null
1 parent 732f2c4 commit e8242a9

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
oldbin
22
log
3-
singularity
3+
apptainer/
4+
singularity/
45
work
56
trace*
67
*report*

modules/local/exorthist/align_pairs.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ process PARSE_IPA_PROT_ALN {
1515
path "${sp1.name}-${sp2.name}_EXs_to_split_part_*.txt", emit: EXs_to_split
1616

1717
script:
18-
def prev_alignments = prevaln.name != 'NO_FILE' ? "${prevaln}" : ''
18+
def prev_alignments = prevaln.name != 'null' ? "${prevaln}" : ''
1919
def cls_parts = cls_part_file.name.split("_")
2020
def dist_range_par
2121

subworkflows/local/exorthist/align.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ workflow ALIGN {
2424
if (prevaln) {
2525
prevaln_ch = Channel.fromPath(prevaln, type: 'dir', checkIfExists: true).collect()
2626
} else {
27-
prevaln_ch = Channel.fromPath("/path/to/NO_FILE").collect()
27+
prevaln_ch = Channel.fromPath("/dev/null").collect()
2828
}
2929

3030
// the last argument is the protein similarity alignment.

0 commit comments

Comments
 (0)