'Python data extraction from online database
I am trying to download a CSV file from CELLTALKDB. I correctly enter the names of columns but in the downloaded CSV, the information was missing?
my code col_names are:
col_names = ['lr_pair','ligand_gene_symbol','receptor_gene_symbol','ligand_gene_id', 'receptor_gene_id','ligand_ensembl_protein_id','receptor_ensembl_protein']
I have attached the download file and the original file please do comment if anyone has an idea.
Solution 1:[1]
pd.read_csv("file.txt", delimiter='\t')
please note that your file is a text one
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Moun |

