Skip to content
Snippets Groups Projects
Commit 69ced2dc authored by mariabernard's avatar mariabernard
Browse files

1000RNASeq_chicken_calling : pandas read_table deprecated, use read_csv with sep='\t'

parent 84aba97a
No related branches found
No related tags found
No related merge requests found
......@@ -32,7 +32,7 @@ if "bin_dir" in config:
os.environ['PATH'] = config["bin_dir"] + os.pathsep + os.environ['PATH']
# sample config
table = pd.read_table(config["sample_config"], dtype=str)
table = pd.read_csv(config["sample_config"], dtype=str,sep='\t')
available_PL=["ILLUMINA","SLX","SOLEXA","SOLID","454","LS454","COMPLETE","PACBIO","IONTORRENT","CAPILLARY","HELICOS","UNKNOWN"]
sequencer=table.sequencer.unique()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment