aiken

Results 7 comments of aiken

> I tried it on electron 10 and was able to record the screen with QuickTime on mac. Anyone manage to solve this issue? I also had this problem. Have...

@gaofan83 About 160 cells. But why is there a big difference between kallisto and cellranger?

@gaofan83 This is my cammand: `kb count -i /mnt/data/ref/transcriptome.idx -g /mnt/data/ref/transcripts_to_genes.txt -t 8 -m 16G --mm --h5ad --filter bustools --cellranger --gene-names --verbose --overwrite -x 10XV2 -o output/SRR8315735 SRR8315735_1.fastq.gz SRR8315735_2.fastq.gz` Where...

@gaofan83 10xv2 Contains 5' barcode whitelist. Look at this image from 10x site。 ![image](https://user-images.githubusercontent.com/3069871/220043426-fa9a2297-2ee4-4f79-ad2b-d5ee76a05be6.png)

@agibsonccc Python version is 3.10.2 the script is like this : ` xml_data_str = xml_data_bytes.decode(encoding='utf-8') root = etree.fromstring(xml_data_str) lotRunJson =generate_lotrunjson(root) machineRcpJson =generate_machinercpjson(root) imageJson =generate_imagejson(root, lotRunJson) waferRunJson =generate_waferrunjson(root) targetJson =generate_targetjson(root, lotRunJson)...

@agibsonccc Sorry, my file is confidential. My question is that the code for xml parsing executed directly in the python environment runs very fast. However, the xml parsing executed through...

@agibsonccc **The xml like this:** ![1700406062789](https://github.com/deeplearning4j/deeplearning4j/assets/3069871/9737a23b-1f98-4c93-baca-f051d6686799) **The python script like this:** ``` from lxml import etree def dumps_json(obj): if obj: return json.dumps(obj) return json.dumps("") xml_data = xml_data_bytes.decode(encoding='utf-8') root = etree.fromstring(xml_data)...