Skip to content

Commit 9419bbf

Browse files
committed
Support performCleanupAfterEachStep in more places of the UI
1 parent e4ddb61 commit 9419bbf

File tree

4 files changed

+32
-0
lines changed

4 files changed

+32
-0
lines changed

SequenceAnalysis/resources/web/SequenceAnalysis/panel/AlignmentImportPanel.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,14 @@ Ext4.define('SequenceAnalysis.panel.AlignmentImportPanel', {
9494
inputValue: true,
9595
checked: true,
9696
xtype: 'checkbox'
97+
},{
98+
fieldLabel: 'Perform Cleanup After Each Step',
99+
helpPopup: 'Is selected, intermediate files from this job will be deleted after each step, instead of once at the end of the job. This can reduce the working directory size. Note: this will only apply if deleteIntermediateFiles is selected, and this is not supported across every possible pipeline type.',
100+
name: 'performCleanupAfterEachStep',
101+
inputValue: true,
102+
uncheckedValue: false,
103+
checked: true,
104+
xtype: 'checkbox'
97105
},{
98106
fieldLabel: 'Treatment of Input Files',
99107
xtype: 'combo',

SequenceAnalysis/resources/web/SequenceAnalysis/panel/SequenceAnalysisPanel.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -309,6 +309,14 @@ Ext4.define('SequenceAnalysis.panel.SequenceAnalysisPanel', {
309309
uncheckedValue: false,
310310
checked: true,
311311
xtype: 'checkbox'
312+
},{
313+
fieldLabel: 'Perform Cleanup After Each Step',
314+
helpPopup: 'Is selected, intermediate files from this job will be deleted after each step, instead of once at the end of the job. This can reduce the working directory size. Note: this will only apply if deleteIntermediateFiles is selected, and this is not supported across every possible pipeline type.',
315+
name: 'performCleanupAfterEachStep',
316+
inputValue: true,
317+
uncheckedValue: false,
318+
checked: true,
319+
xtype: 'checkbox'
312320
},{
313321
fieldLabel: 'Copy Inputs To Working Directory?',
314322
helpPopup: 'Check to copy the input files to the working directory. Depending on your environment, this may or may not help performance.',

SequenceAnalysis/resources/web/SequenceAnalysis/panel/VariantProcessingPanel.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,14 @@ Ext4.define('SequenceAnalysis.panel.VariantProcessingPanel', {
7474
inputValue: true,
7575
checked: true,
7676
xtype: 'checkbox'
77+
},{
78+
fieldLabel: 'Perform Cleanup After Each Step',
79+
helpPopup: 'Is selected, intermediate files from this job will be deleted after each step, instead of once at the end of the job. This can reduce the working directory size. Note: this will only apply if deleteIntermediateFiles is selected, and this is not supported across every possible pipeline type.',
80+
name: 'performCleanupAfterEachStep',
81+
inputValue: true,
82+
uncheckedValue: false,
83+
checked: true,
84+
xtype: 'checkbox'
7785
}, this.getSaveTemplateCfg()]
7886
};
7987
},

singlecell/resources/web/singlecell/panel/SingleCellProcessingPanel.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,14 @@ Ext4.define('SingleCell.panel.SingleCellProcessingPanel', {
9797
inputValue: true,
9898
checked: true,
9999
xtype: 'checkbox'
100+
},{
101+
fieldLabel: 'Perform Cleanup After Each Step',
102+
helpPopup: 'Is selected, intermediate files from this job will be deleted after each step, instead of once at the end of the job. This can reduce the working directory size. Note: this will only apply if deleteIntermediateFiles is selected, and this is not supported across every possible pipeline type.',
103+
name: 'performCleanupAfterEachStep',
104+
inputValue: true,
105+
uncheckedValue: false,
106+
checked: true,
107+
xtype: 'checkbox'
100108
}, this.getSaveTemplateCfg()]
101109
};
102110
},

0 commit comments

Comments
 (0)