The below line of example code in the README.md lists
import torch
from bpnetlite.io import extract_loci
from bpnetlite.io import LocusGenerator
from bpnetlite import BPNet
However in bpnetlite.io there is no LocusGenerator function. There is only DataGenerator or PeakGenerator.
In addition, there is no extract_loci function in bpnetlite.io (but it does call one from tangermeme.io)
Should the code be instead like below?
import torch
from tangermeme.io import extract_loci
from bpnetlite.io import PeakGenerator
from bpnetlite import BPNet
That's weird -- I thought I had switched over to LocusGenerator. Must've not actually made it in. But, yes, the code should be as you show on the bottom there.
The below line of example code in the README.md lists
However in bpnetlite.io there is no LocusGenerator function. There is only DataGenerator or PeakGenerator. In addition, there is no extract_loci function in bpnetlite.io (but it does call one from tangermeme.io)
Should the code be instead like below?