fb1865d70fd03332e9776bc85771cc1c8a37463c
maximilianh
  Sun Sep 14 12:01:21 2025 -0700
moving to python3 for default script stubs and adding a note to contributing.md

diff --git src/cbImportCellranger src/cbImportCellranger
index 34700f8..3a62a30 100755
--- src/cbImportCellranger
+++ src/cbImportCellranger
@@ -1,13 +1,13 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 # converter from cellranger to cellbrowser format
 # uses scanpy to parse hdf5, so that part works only on python3
 
 import sys
 from os.path import join, dirname
 
 # tested with python 2.6 and python3, see cellbrowser.py
 import sys
 sys.path.insert(0,  join(dirname(__file__), "cbPyLib") )
 from cellbrowser import convert
 convert.cbCellrangerCli()