The read_csv function from pandas should be able to read in the .tsv (tab-separated-value) files. You will need to pass sep='\t' to the function to indicate the it is tab-delimited.
pandas will need to be installed using requirements.txt, environment.yml, or another method. pandas often installs without trouble but not always. I would try that sooner rather than later so that we can deal with any possible dependency issues before next week.
The read_csv function from pandas should be able to read in the
.tsv
(tab-separated-value) files. You will need to passsep='\t'
to the function to indicate the it is tab-delimited.pandas
will need to be installed usingrequirements.txt
,environment.yml
, or another method.pandas
often installs without trouble but not always. I would try that sooner rather than later so that we can deal with any possible dependency issues before next week.