Skip to content

Commit eec92ec

Browse files
Lennart Opitzopitzl
authored andcommitted
optional bam storage
1 parent 2600b73 commit eec92ec

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

master/lib/CellRangerApp.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def initialize
4040
@params['bamStats'] = true
4141
@params['bamStats', 'description'] = 'Compute stats per cell from the bam file?'
4242
@params['keepBam'] = false
43-
@params['bamStats', 'description'] = 'Keep bam file produced by CellRanger? Usually it is not neccessary for downstream analyses'
43+
@params['keepBam', 'description'] = 'Keep bam file produced by CellRanger? Usually it is not neccessary for downstream analyses'
4444
@params['cmdOptions'] = ''
4545
@params['cmdOptions', 'description'] = 'specify the commandline options for CellRanger (e.g. --include-introns for single nuclei data); do not specify any option that is already covered by the dedicated input fields'
4646
@params['specialOptions'] = ''

master/lib/SpaceRangerApp.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ def initialize
3131
Dir["/srv/GT/databases/10x_Probesets/Visium/*"].sort.select{|design| File.file?(design)}.each do |dir|
3232
@params['probesetFile'][File.basename(dir)] = File.basename(dir)
3333
end
34+
@params['keepBam'] = false
35+
@params['keepBam', 'description'] = 'Keep bam file produced by CellRanger? Usually it is not neccessary for downstream analyses'
3436
@params['cmdOptions'] = ''
3537
@params['cmdOptions', 'description'] = 'specify the commandline options for SpaceRanger; do not specify any option that is already covered by the dedicated input fields'
3638
@params['specialOptions'] = ''

0 commit comments

Comments
 (0)