ae99b536ff30a731a1ae226e124867534a715bd4,hicexplorer/hicPlotDistVsCounts.py,,main,#,297
Before Change
else:
label = labels[matrix_file]
args.outFileData.write("//{}\n".format(label))
args.outFileData.write("\t".join(map(str, x)) + "\n")
args.outFileData.write("\t".join(map(str, y)) + "\n")
for ax in axs.reshape(-1):
After Change
idx += 1
if args.outFileData is not None:
x_vals= np.stack(x).T
y_vals= np.stack(y).T
table_to_export = pd.DataFrame(
{"Matrix": matrix_file,
"Chromosome": chrom,
"Distance": x_vals,
"Contacts": y_vals
})
table_to_export.to_csv(args.outFileData, sep="\t")
for ax in axs.reshape(-1):
if ax is None:

In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 3
Instances
Project Name: deeptools/HiCExplorer
Commit Name: ae99b536ff30a731a1ae226e124867534a715bd4
Time: 2018-04-24
Author: 26085589+gtrichard@users.noreply.github.com
File Name: hicexplorer/hicPlotDistVsCounts.py
Class Name:
Method Name: main
Project Name: hanxiao/bert-as-service
Commit Name: 2bfe5bfcec7759ae022b1a479411aa7d1b8401f1
Time: 2019-05-06
Author: zyn2122@gmail.com
File Name: example/example7.py
Class Name:
Method Name:
Project Name: astorfi/TensorFlow-World
Commit Name: 874382bfb96b92dcfdd6326ba83c54ad1e9d42f2
Time: 2017-06-26
Author: amirsina.torfi@gmail.com
File Name: codes/2-basics_in_machine_learning/linear_regression/code/linear_regression.py
Class Name:
Method Name: