maximilianh / cellBrowser

main repo: https://github.com/ucscGenomeBrowser/cellBrowser/ - Python pipeline and Javascript scatter plot library for single-cell datasets, http://cellbrowser.rtfd.org
https://github.com/ucscGenomeBrowser/cellBrowser/
GNU General Public License v3.0
104 stars 40 forks source link

[0.5.45] Could not find a dataset #126

Closed baracus37 closed 5 years ago

baracus37 commented 5 years ago

Hi,

I am looking to convert a Seurat object (v3.0.2) into a CellBrowser. I followed the instructions here using the ExportToCellBroswer function and tested it with the pbmc_small datatset (my own dataset show the same error) provided together with Seurat:

ExportToCellbrowser(object = pbmc_small, dataset.name = "PBMC", dir = "out",cb.dir = "./out/test")

Writing expression matrix to out/exprMatrix.tsv.gz Writing embeddings to out/tsne.coords.tsv Writing meta data to out/meta.tsv cellbrowser.conf already exists in target directory, refusing to overwrite it Prepared cellbrowser directory out Converting cellbrowser directory to html/json files INFO:root:Creating ./out/test/PBMC INFO:root:Creating ./out/test/PBMC/metaFields INFO:root:Checking and reordering meta data to ./out/test/PBMC/meta.tsv INFO:root:Reading sample names from /media/pgm/Data/tobias/52-NGS-260219-0/Seurat/EPDC_CF_aCF_combined/out/meta.tsv INFO:root:Reading headers of file /media/pgm/Data/tobias/52-NGS-260219-0/Seurat/EPDC_CF_aCF_combined/out/exprMatrix.tsv.gz INFO:root:Data contains 80 samples/cells INFO:root:Converting to numbers and compressing meta data fields INFO:root:Field Cell: type uniqueString, 80 different values INFO:root:Field nCountRNA: type int, 71 different values INFO:root:Field nFeatureRNA: type int, 48 different values INFO:root:Field Cluster: type enum, 3 different values INFO:root:Indexing meta file ./out/test/PBMC/meta.tsv to ./out/test/PBMC/meta.index INFO:root:Kept 80 cells present in both meta data file and expression matrix INFO:root:Determining if ./out/test/PBMC/exprMatrix.tsv.gz needs to be created INFO:root:./out/test/PBMC/exprMatrix.tsv.gz does not exist. INFO:root:Auto-detecting number type of /media/pgm/Data/tobias/52-NGS-260219-0/Seurat/EPDC_CF_aCF_combined/out/exprMatrix.tsv.gz INFO:root:Auto-detect: Numbers in matrix are of type 'float' INFO:root:Auto-detected gene IDs type: symbols INFO:root:Copying/compressing /media/pgm/Data/tobias/52-NGS-260219-0/Seurat/EPDC_CF_aCF_combined/out/exprMatrix.tsv.gz to ./out/test/PBMC/exprMatrix.tsv.gz INFO:root:converting ./out/test/PBMC/exprMatrix.tsv.gz to ./out/test/PBMC/exprMatrix.bin and writing index to ./out/test/PBMC/exprMatrix.json, type None INFO:root:Compressing gene expression vectors... INFO:root:Auto-detecting number type of ./out/test/PBMC/exprMatrix.tsv.gz INFO:root:Auto-detect: Numbers in matrix are of type 'float' INFO:root:Wrote ./out/test/PBMC/cellbrowser.json.bak INFO:root:Wrote ./out/test/PBMC/cellbrowser.json.bak INFO:root:Wrote ./out/test/PBMC/dataset.json INFO:root:Wrote ./out/test/PBMC/dataset.json INFO:root:Parsing column Cluster from ./out/test/PBMC/meta.tsv INFO:root:Parsing coordinates for Seurat tsne INFO:root:Creating ./out/test/PBMC/coords/coords_0 INFO:root:Writing coordinates for Seurat tsne INFO:root:Calculating cluster midpoints for Seurat tsne INFO:root:/media/pgm/Data/tobias/52-NGS-260219-0/Seurat/EPDC_CF_aCF_combined/out/summary.html does not exist INFO:root:/media/pgm/Data/tobias/52-NGS-260219-0/Seurat/EPDC_CF_aCF_combined/out/methods.html does not exist INFO:root:/media/pgm/Data/tobias/52-NGS-260219-0/Seurat/EPDC_CF_aCF_combined/out/downloads.html does not exist INFO:root:/media/pgm/Data/tobias/52-NGS-260219-0/Seurat/EPDC_CF_aCF_combined/out/thumb.png does not exist INFO:root:/media/pgm/Data/tobias/52-NGS-260219-0/Seurat/EPDC_CF_aCF_combined/out/protocol.pdf does not exist INFO:root:/media/pgm/Data/tobias/52-NGS-260219-0/Seurat/EPDC_CF_aCF_combined/out/desc.conf does not exist INFO:root:Wrote ./out/test/PBMC/cellbrowser.json.bak INFO:root:Wrote ./out/test/PBMC/cellbrowser.json.bak INFO:root:Wrote ./out/test/PBMC/dataset.json INFO:root:Wrote ./out/test/PBMC/dataset.json INFO:root:Copying js, css and img files to ./out/test INFO:root:Creating ./out/test/ext/images INFO:root:Creating ./out/test/img INFO:root:Creating ./out/test/js INFO:root:Creating ./out/test/css INFO:root:Found 1 datasets INFO:root:Wrote ./out/test/index.html, added datasets: PBMC

This creates all files but when i open the index.html file and try to load the dataset, I get the following error:

Could not find a dataset at PBMC/dataset.json?d99f645d8a. If you are sure that the link is correct, please contact the administrator of this server, or cells@ucsc.edu if this is running at UCSC.

I also tried to create a rds file, but this fails as well:

cbImportSeurat -i pbmc_small.rds -o pbmc3kImport

Traceback (most recent call last): File "/home/tobias/.local/lib/python3.6/site-packages/pkg_resources/init.py", line 2354, in resolve return functools.reduce(getattr, self.attrs, module) AttributeError: module 'cellbrowser.seurat' has no attribute 'cbImportSeurat2Cli'

During handling of the above exception, another exception occurred:

Traceback (most recent call last): File "/usr/local/bin/cbImportSeurat", line 11, in load_entry_point('cellbrowser==0.5.45', 'console_scripts', 'cbImportSeurat')() File "/home/tobias/.local/lib/python3.6/site-packages/pkg_resources/init.py", line 487, in load_entry_point return get_distribution(dist).load_entry_point(group, name) File "/home/tobias/.local/lib/python3.6/site-packages/pkg_resources/init.py", line 2728, in load_entry_point return ep.load() File "/home/tobias/.local/lib/python3.6/site-packages/pkg_resources/init.py", line 2346, in load return self.resolve() File "/home/tobias/.local/lib/python3.6/site-packages/pkg_resources/init.py", line 2356, in resolve raise ImportError(str(exc)) ImportError: module 'cellbrowser.seurat' has no attribute 'cbImportSeurat2Cli'

Any help would be appreciated!

maximilianh commented 5 years ago

First, thanks for opening this ticket!

The first issue looks like some confusion about the output directory. Which webserver are you using ?

The second one is a stupid bug that I’ll fix as soon as I can.

On Fri 2 Aug 2019 at 10:38, baracus37 notifications@github.com wrote:

Hi,

I am looking to convert a Seurat object (v3.0.2) into a CellBrowser. I followed the instructions here https://cellbrowser.readthedocs.io/seurat.html using the ExportToCellBroswer function and tested it with the pbmc_small datatset (my own dataset show the same error) provided together with Seurat:

ExportToCellbrowser(object = pbmc_small, dataset.name = "PBMC", dir = "out",cb.dir = "./out/test")

Writing expression matrix to out/exprMatrix.tsv.gz Writing embeddings to out/tsne.coords.tsv Writing meta data to out/meta.tsv cellbrowser.conf already exists in target directory, refusing to overwrite it Prepared cellbrowser directory out Converting cellbrowser directory to html/json files INFO:root:Creating ./out/test/PBMC INFO:root:Creating ./out/test/PBMC/metaFields INFO:root:Checking and reordering meta data to ./out/test/PBMC/meta.tsv INFO:root:Reading sample names from /media/pgm/Data/tobias/52-NGS-260219-0/Seurat/EPDC_CF_aCF_combined/out/meta.tsv INFO:root:Reading headers of file /media/pgm/Data/tobias/52-NGS-260219-0/Seurat/EPDC_CF_aCF_combined/out/exprMatrix.tsv.gz INFO:root:Data contains 80 samples/cells INFO:root:Converting to numbers and compressing meta data fields INFO:root:Field Cell: type uniqueString, 80 different values INFO:root:Field nCountRNA: type int, 71 different values INFO:root:Field nFeatureRNA: type int, 48 different values INFO:root:Field Cluster: type enum, 3 different values INFO:root:Indexing meta file ./out/test/PBMC/meta.tsv to ./out/test/PBMC/meta.index INFO:root:Kept 80 cells present in both meta data file and expression matrix INFO:root:Determining if ./out/test/PBMC/exprMatrix.tsv.gz needs to be created INFO:root:./out/test/PBMC/exprMatrix.tsv.gz does not exist. INFO:root:Auto-detecting number type of /media/pgm/Data/tobias/52-NGS-260219-0/Seurat/EPDC_CF_aCF_combined/out/exprMatrix.tsv.gz INFO:root:Auto-detect: Numbers in matrix are of type 'float' INFO:root:Auto-detected gene IDs type: symbols INFO:root:Copying/compressing /media/pgm/Data/tobias/52-NGS-260219-0/Seurat/EPDC_CF_aCF_combined/out/exprMatrix.tsv.gz to ./out/test/PBMC/exprMatrix.tsv.gz INFO:root:converting ./out/test/PBMC/exprMatrix.tsv.gz to ./out/test/PBMC/exprMatrix.bin and writing index to ./out/test/PBMC/exprMatrix.json, type None INFO:root:Compressing gene expression vectors... INFO:root:Auto-detecting number type of ./out/test/PBMC/exprMatrix.tsv.gz INFO:root:Auto-detect: Numbers in matrix are of type 'float' INFO:root:Wrote ./out/test/PBMC/cellbrowser.json.bak INFO:root:Wrote ./out/test/PBMC/cellbrowser.json.bak INFO:root:Wrote ./out/test/PBMC/dataset.json INFO:root:Wrote ./out/test/PBMC/dataset.json INFO:root:Parsing column Cluster from ./out/test/PBMC/meta.tsv INFO:root:Parsing coordinates for Seurat tsne INFO:root:Creating ./out/test/PBMC/coords/coords_0 INFO:root:Writing coordinates for Seurat tsne INFO:root:Calculating cluster midpoints for Seurat tsne INFO:root:/media/pgm/Data/tobias/52-NGS-260219-0/Seurat/EPDC_CF_aCF_combined/out/summary.html does not exist INFO:root:/media/pgm/Data/tobias/52-NGS-260219-0/Seurat/EPDC_CF_aCF_combined/out/methods.html does not exist INFO:root:/media/pgm/Data/tobias/52-NGS-260219-0/Seurat/EPDC_CF_aCF_combined/out/downloads.html does not exist INFO:root:/media/pgm/Data/tobias/52-NGS-260219-0/Seurat/EPDC_CF_aCF_combined/out/thumb.png does not exist INFO:root:/media/pgm/Data/tobias/52-NGS-260219-0/Seurat/EPDC_CF_aCF_combined/out/protocol.pdf does not exist INFO:root:/media/pgm/Data/tobias/52-NGS-260219-0/Seurat/EPDC_CF_aCF_combined/out/desc.conf does not exist INFO:root:Wrote ./out/test/PBMC/cellbrowser.json.bak INFO:root:Wrote ./out/test/PBMC/cellbrowser.json.bak INFO:root:Wrote ./out/test/PBMC/dataset.json INFO:root:Wrote ./out/test/PBMC/dataset.json INFO:root:Copying js, css and img files to ./out/test INFO:root:Creating ./out/test/ext/images INFO:root:Creating ./out/test/img INFO:root:Creating ./out/test/js INFO:root:Creating ./out/test/css INFO:root:Found 1 datasets INFO:root:Wrote ./out/test/index.html, added datasets: PBMC

This creates all files but when i open the index.html file and try to load the dataset, I get the following error:

Could not find a dataset at PBMC/dataset.json?d99f645d8a. If you are sure that the link is correct, please contact the administrator of this server, or cells@ucsc.edu if this is running at UCSC.

I also tried to create a rds file, but this fails as well:

cbImportSeurat -i pbmc_small.rds -o pbmc3kImport

Traceback (most recent call last): File "/home/tobias/.local/lib/python3.6/site-packages/pkg_resources/init.py", line 2354, in resolve return functools.reduce(getattr, self.attrs, module) AttributeError: module 'cellbrowser.seurat' has no attribute 'cbImportSeurat2Cli'

During handling of the above exception, another exception occurred:

Traceback (most recent call last): File "/usr/local/bin/cbImportSeurat", line 11, in load_entry_point('cellbrowser==0.5.45', 'console_scripts', 'cbImportSeurat')() File "/home/tobias/.local/lib/python3.6/site-packages/pkg_resources/init.py", line 487, in load_entry_point return get_distribution(dist).load_entry_point(group, name) File "/home/tobias/.local/lib/python3.6/site-packages/pkg_resources/init.py", line 2728, in load_entry_point return ep.load() File "/home/tobias/.local/lib/python3.6/site-packages/pkg_resources/init.py", line 2346, in load return self.resolve() File "/home/tobias/.local/lib/python3.6/site-packages/pkg_resources/init.py", line 2356, in resolve raise ImportError(str(exc)) ImportError: module 'cellbrowser.seurat' has no attribute 'cbImportSeurat2Cli'

Any help would be appreciated!

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/maximilianh/cellBrowser/issues/126?email_source=notifications&email_token=AACL4TJYESHBQ7XPICQDJI3QCPXAVA5CNFSM4II3T5JKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HDAFPZA, or mute the thread https://github.com/notifications/unsubscribe-auth/AACL4TIAMTH4BWSWCJC36SLQCPXAVANCNFSM4II3T5JA .

maximilianh commented 5 years ago

I really need a little test using pbmc_small. And document it.

On Fri 2 Aug 2019 at 11:11, Maximilian Haeussler maximilianh@gmail.com wrote:

First, thanks for opening this ticket!

The first issue looks like some confusion about the output directory. Which webserver are you using ?

The second one is a stupid bug that I’ll fix as soon as I can.

On Fri 2 Aug 2019 at 10:38, baracus37 notifications@github.com wrote:

Hi,

I am looking to convert a Seurat object (v3.0.2) into a CellBrowser. I followed the instructions here https://cellbrowser.readthedocs.io/seurat.html using the ExportToCellBroswer function and tested it with the pbmc_small datatset (my own dataset show the same error) provided together with Seurat:

ExportToCellbrowser(object = pbmc_small, dataset.name = "PBMC", dir = "out",cb.dir = "./out/test")

Writing expression matrix to out/exprMatrix.tsv.gz Writing embeddings to out/tsne.coords.tsv Writing meta data to out/meta.tsv cellbrowser.conf already exists in target directory, refusing to overwrite it Prepared cellbrowser directory out Converting cellbrowser directory to html/json files INFO:root:Creating ./out/test/PBMC INFO:root:Creating ./out/test/PBMC/metaFields INFO:root:Checking and reordering meta data to ./out/test/PBMC/meta.tsv INFO:root:Reading sample names from /media/pgm/Data/tobias/52-NGS-260219-0/Seurat/EPDC_CF_aCF_combined/out/meta.tsv INFO:root:Reading headers of file /media/pgm/Data/tobias/52-NGS-260219-0/Seurat/EPDC_CF_aCF_combined/out/exprMatrix.tsv.gz INFO:root:Data contains 80 samples/cells INFO:root:Converting to numbers and compressing meta data fields INFO:root:Field Cell: type uniqueString, 80 different values INFO:root:Field nCountRNA: type int, 71 different values INFO:root:Field nFeatureRNA: type int, 48 different values INFO:root:Field Cluster: type enum, 3 different values INFO:root:Indexing meta file ./out/test/PBMC/meta.tsv to ./out/test/PBMC/meta.index INFO:root:Kept 80 cells present in both meta data file and expression matrix INFO:root:Determining if ./out/test/PBMC/exprMatrix.tsv.gz needs to be created INFO:root:./out/test/PBMC/exprMatrix.tsv.gz does not exist. INFO:root:Auto-detecting number type of /media/pgm/Data/tobias/52-NGS-260219-0/Seurat/EPDC_CF_aCF_combined/out/exprMatrix.tsv.gz INFO:root:Auto-detect: Numbers in matrix are of type 'float' INFO:root:Auto-detected gene IDs type: symbols INFO:root:Copying/compressing /media/pgm/Data/tobias/52-NGS-260219-0/Seurat/EPDC_CF_aCF_combined/out/exprMatrix.tsv.gz to ./out/test/PBMC/exprMatrix.tsv.gz INFO:root:converting ./out/test/PBMC/exprMatrix.tsv.gz to ./out/test/PBMC/exprMatrix.bin and writing index to ./out/test/PBMC/exprMatrix.json, type None INFO:root:Compressing gene expression vectors... INFO:root:Auto-detecting number type of ./out/test/PBMC/exprMatrix.tsv.gz INFO:root:Auto-detect: Numbers in matrix are of type 'float' INFO:root:Wrote ./out/test/PBMC/cellbrowser.json.bak INFO:root:Wrote ./out/test/PBMC/cellbrowser.json.bak INFO:root:Wrote ./out/test/PBMC/dataset.json INFO:root:Wrote ./out/test/PBMC/dataset.json INFO:root:Parsing column Cluster from ./out/test/PBMC/meta.tsv INFO:root:Parsing coordinates for Seurat tsne INFO:root:Creating ./out/test/PBMC/coords/coords_0 INFO:root:Writing coordinates for Seurat tsne INFO:root:Calculating cluster midpoints for Seurat tsne INFO:root:/media/pgm/Data/tobias/52-NGS-260219-0/Seurat/EPDC_CF_aCF_combined/out/summary.html does not exist INFO:root:/media/pgm/Data/tobias/52-NGS-260219-0/Seurat/EPDC_CF_aCF_combined/out/methods.html does not exist INFO:root:/media/pgm/Data/tobias/52-NGS-260219-0/Seurat/EPDC_CF_aCF_combined/out/downloads.html does not exist INFO:root:/media/pgm/Data/tobias/52-NGS-260219-0/Seurat/EPDC_CF_aCF_combined/out/thumb.png does not exist INFO:root:/media/pgm/Data/tobias/52-NGS-260219-0/Seurat/EPDC_CF_aCF_combined/out/protocol.pdf does not exist INFO:root:/media/pgm/Data/tobias/52-NGS-260219-0/Seurat/EPDC_CF_aCF_combined/out/desc.conf does not exist INFO:root:Wrote ./out/test/PBMC/cellbrowser.json.bak INFO:root:Wrote ./out/test/PBMC/cellbrowser.json.bak INFO:root:Wrote ./out/test/PBMC/dataset.json INFO:root:Wrote ./out/test/PBMC/dataset.json INFO:root:Copying js, css and img files to ./out/test INFO:root:Creating ./out/test/ext/images INFO:root:Creating ./out/test/img INFO:root:Creating ./out/test/js INFO:root:Creating ./out/test/css INFO:root:Found 1 datasets INFO:root:Wrote ./out/test/index.html, added datasets: PBMC

This creates all files but when i open the index.html file and try to load the dataset, I get the following error:

Could not find a dataset at PBMC/dataset.json?d99f645d8a. If you are sure that the link is correct, please contact the administrator of this server, or cells@ucsc.edu if this is running at UCSC.

I also tried to create a rds file, but this fails as well:

cbImportSeurat -i pbmc_small.rds -o pbmc3kImport

Traceback (most recent call last): File "/home/tobias/.local/lib/python3.6/site-packages/pkg_resources/ init.py", line 2354, in resolve return functools.reduce(getattr, self.attrs, module) AttributeError: module 'cellbrowser.seurat' has no attribute 'cbImportSeurat2Cli'

During handling of the above exception, another exception occurred:

Traceback (most recent call last): File "/usr/local/bin/cbImportSeurat", line 11, in load_entry_point('cellbrowser==0.5.45', 'console_scripts', 'cbImportSeurat')() File "/home/tobias/.local/lib/python3.6/site-packages/pkg_resources/ init.py", line 487, in load_entry_point return get_distribution(dist).load_entry_point(group, name) File "/home/tobias/.local/lib/python3.6/site-packages/pkg_resources/ init.py", line 2728, in load_entry_point return ep.load() File "/home/tobias/.local/lib/python3.6/site-packages/pkg_resources/ init.py", line 2346, in load return self.resolve() File "/home/tobias/.local/lib/python3.6/site-packages/pkg_resources/ init.py", line 2356, in resolve raise ImportError(str(exc)) ImportError: module 'cellbrowser.seurat' has no attribute 'cbImportSeurat2Cli'

Any help would be appreciated!

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/maximilianh/cellBrowser/issues/126?email_source=notifications&email_token=AACL4TJYESHBQ7XPICQDJI3QCPXAVA5CNFSM4II3T5JKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HDAFPZA, or mute the thread https://github.com/notifications/unsubscribe-auth/AACL4TIAMTH4BWSWCJC36SLQCPXAVANCNFSM4II3T5JA .

baracus37 commented 5 years ago

Thanks for the quick reply! I am running Rstudio Server on one of our workstations and for the first try I just wanted to generate all necessary files and open the index.html locally. So so far no webserver is involved.

I really need a little test using pbmc_small. And document it.

Could you specify what you need from my side to resolve this issue?

maximilianh commented 5 years ago

Is this a real webserver that you're using? Which address did you type into your internet browser?

On Fri, Aug 2, 2019 at 11:47 AM baracus37 notifications@github.com wrote:

Thanks for the quick reply! I am running Rstudio Server on one of our workstations and for the first try I just wanted to generate all necessary files and open the index.html locally. So so far no webserver is involved.

Could you specify what you need from my side to resolve this issue?

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/maximilianh/cellBrowser/issues/126?email_source=notifications&email_token=AACL4TNQAVZI54Y3QBI4UPLQCP7CPA5CNFSM4II3T5JKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD3NIQLA#issuecomment-517638188, or mute the thread https://github.com/notifications/unsubscribe-auth/AACL4TM26I2ZODJI4KZGYITQCP7CPANCNFSM4II3T5JA .

maximilianh commented 5 years ago

You could also try the cbBuild program onto the output directory of the Seurat export and the option -p 4444. This will start a real webserver on your own machine on port 4444.

baracus37 commented 5 years ago

Ok. I just tried to open the html file by double clicking on it. When I run ExportToCellBrowser with the port option, it works. Thanks a lot! I was actually hoping that I could just share the CellBrowser folder to my collaboration partners so that they can run the Cellbrowser locally. Is there a way to do this?

maximilianh commented 5 years ago

Do you have a lab webserver ? Or some other website ? I can try to find a free one or one that hosts for very cheap...

Or shall I host it on cells.ucsc.edu ?

On Fri 2 Aug 2019 at 12:15, baracus37 notifications@github.com wrote:

Ok. I just tried to open the html file by double clicking on it. When I run ExportToCellBrowser with the port option, it works. Thanks a lot! I was actually hoping that I could just share the CellBrowser folder to my collaboration partners so that they can run the Cellbrowser locally. Is there a way to do this?

— You are receiving this because you commented.

Reply to this email directly, view it on GitHub https://github.com/maximilianh/cellBrowser/issues/126?email_source=notifications&email_token=AACL4TMSXXARTLXPHIW4AN3QCQCMVA5CNFSM4II3T5JKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD3NKXTA#issuecomment-517647308, or mute the thread https://github.com/notifications/unsubscribe-auth/AACL4TIFPIXGLBG2VVOVM5TQCQCMVANCNFSM4II3T5JA .

baracus37 commented 5 years ago

Thanks for offering. I think for now, I will be using one of our workstations for this purpose.

maximilianh commented 5 years ago

Hm, a workstation as a webserver? Won't it be inaccessible for the normal internet?

If your University doesn't provide hosting, you could try something like https://infinityfree.net

I'm re-opening the ticket because you found a bug in the seurat converter.

On Fri, Aug 2, 2019 at 1:57 PM baracus37 notifications@github.com wrote:

Closed #126 https://github.com/maximilianh/cellBrowser/issues/126.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/maximilianh/cellBrowser/issues/126?email_source=notifications&email_token=AACL4TJ5Q35JULOMNX72OPTQCQOJ7A5CNFSM4II3T5JKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOS3CD6SI#event-2529443657, or mute the thread https://github.com/notifications/unsubscribe-auth/AACL4TOCLYVFN77EBNOOBMDQCQOJ7ANCNFSM4II3T5JA .

baracus37 commented 5 years ago

Yes, I just had to find that out... :( You offered hosting it on cells.ucsc.edu. Is there a way to limit access to the dataset (password) or will the dataset be publicly available?

Oh right, I forgot about the bug.

maximilianh commented 5 years ago

cbImportSeurat should work again in new version 0.5.46

You can upgrade with pip install cellbrowser --ugprade.

On Fri, Aug 2, 2019 at 3:25 PM Maximilian Haeussler maximilianh@gmail.com wrote:

Hm, a workstation as a webserver? Won't it be inaccessible for the normal internet?

If your University doesn't provide hosting, you could try something like https://infinityfree.net

I'm re-opening the ticket because you found a bug in the seurat converter.

On Fri, Aug 2, 2019 at 1:57 PM baracus37 notifications@github.com wrote:

Closed #126 https://github.com/maximilianh/cellBrowser/issues/126.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/maximilianh/cellBrowser/issues/126?email_source=notifications&email_token=AACL4TJ5Q35JULOMNX72OPTQCQOJ7A5CNFSM4II3T5JKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOS3CD6SI#event-2529443657, or mute the thread https://github.com/notifications/unsubscribe-auth/AACL4TOCLYVFN77EBNOOBMDQCQOJ7ANCNFSM4II3T5JA .

maximilianh commented 5 years ago

I can limit it.

Is it OK that it goes online when your paper is published? (I like having more datasets... :-)

On Fri, Aug 2, 2019 at 3:28 PM baracus37 notifications@github.com wrote:

Yes, I just had to find that out... :( You offered hosting it on cells.ucsc.edu. Is there a way to limit access to the dataset (password) or will the dataset be publicly available?

Oh right, I forgot about the bug.

— You are receiving this because you modified the open/close state. Reply to this email directly, view it on GitHub, or mute the thread.

baracus37 commented 5 years ago

That's great! I will speak to my collaborators (its actually their data, not mine) and let you know once they have decided.