Skip to content

Commit

Permalink
Code review: fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronKol committed Nov 3, 2024
1 parent 8a766c2 commit 9ffa3f9
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 10 deletions.
18 changes: 9 additions & 9 deletions tools/irma/IRMA.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@
#if $input_type == 'single'
#if $input_type_conditional.fastq_input1.is_of_type('fastq.gz')
ln -sf '${input_type_conditional.fastq_input1}' file1.fastq.gz &&
ln -sf '${input_type_conditional.fastq_input1}' file1.fastq.gz &&
#end if
#elif $input_type == 'paired_collection'
#if $input_type_conditional.fastq_input.forward.is_of_type('fastq.gz')
ln -sf '${input_type_conditional.fastq_input.forward}' file1.fastq.gz &&
ln -sf '${input_type_conditional.fastq_input.reverse}' file2.fastq.gz &&
ln -sf '${input_type_conditional.fastq_input.forward}' file1.fastq.gz &&
ln -sf '${input_type_conditional.fastq_input.reverse}' file2.fastq.gz &&
#end if
#end if
Expand All @@ -37,19 +37,19 @@
#if $input_type_conditional.input_type == 'single'
#if $input_type_conditional.fastq_input1.is_of_type('fastq.gz')
file1.fastq.gz
file1.fastq.gz
#else
'${input_type_conditional.fastq_input1}'
'${input_type_conditional.fastq_input1}'
#end if
#elif $input_type_conditional.input_type == 'paired_collection'
#if $input_type_conditional.fastq_input.forward.is_of_type('fastq.gz')
file1.fastq.gz
file2.fastq.gz
file1.fastq.gz
file2.fastq.gz
#else
'${input_type_conditional.fastq_input.forward}'
'${input_type_conditional.fastq_input.reverse}'
'${input_type_conditional.fastq_input.forward}'
'${input_type_conditional.fastq_input.reverse}'
#end if
#end if
Expand Down
1 change: 0 additions & 1 deletion tools/irma/createMissingFiles.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ def getMissingSegments():
for file in os.listdir(dirPrefix):
if file.endswith(".fasta"):
presentSegments.append(file.split('.')[0])
print(presentSegments)
return [segment for segment in expectedSegments
if segment not in presentSegments]

Expand Down

0 comments on commit 9ffa3f9

Please sign in to comment.