Skip to content

Commit

Permalink
optional bam storage
Browse files Browse the repository at this point in the history
  • Loading branch information
Lennart Opitz authored and opitzl committed Oct 24, 2023
1 parent 2600b73 commit eec92ec
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion master/lib/CellRangerApp.rb
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def initialize
@params['bamStats'] = true
@params['bamStats', 'description'] = 'Compute stats per cell from the bam file?'
@params['keepBam'] = false
@params['bamStats', 'description'] = 'Keep bam file produced by CellRanger? Usually it is not neccessary for downstream analyses'
@params['keepBam', 'description'] = 'Keep bam file produced by CellRanger? Usually it is not neccessary for downstream analyses'
@params['cmdOptions'] = ''
@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'
@params['specialOptions'] = ''
Expand Down
2 changes: 2 additions & 0 deletions master/lib/SpaceRangerApp.rb
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ def initialize
Dir["/srv/GT/databases/10x_Probesets/Visium/*"].sort.select{|design| File.file?(design)}.each do |dir|
@params['probesetFile'][File.basename(dir)] = File.basename(dir)
end
@params['keepBam'] = false
@params['keepBam', 'description'] = 'Keep bam file produced by CellRanger? Usually it is not neccessary for downstream analyses'
@params['cmdOptions'] = ''
@params['cmdOptions', 'description'] = 'specify the commandline options for SpaceRanger; do not specify any option that is already covered by the dedicated input fields'
@params['specialOptions'] = ''
Expand Down

0 comments on commit eec92ec

Please sign in to comment.