You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a long shot, but could the Target class include - strand features? My pacbio_amplicon.gb includes a single barcode and two genes in reverse orientations. My work-around is to run the pipeline twice with each gene on the + strand, then merge outputs on the barcodes.
file: alignparse/targets.py
lines: 162-166
if bio_feature.location.strand != 1:
raise ValueError(
f"feature {feature_name} of {self.name} is - "
"strand, but only + strand features handled"
)
The text was updated successfully, but these errors were encountered:
Thanks Jesse! Feel free to close this issue, no need to turn it into a time suck. I'll follow-up with a pull request if I get something working. Cheers!
This is a long shot, but could the Target class include - strand features? My
pacbio_amplicon.gb
includes a single barcode and two genes in reverse orientations. My work-around is to run the pipeline twice with each gene on the + strand, then merge outputs on the barcodes.file: alignparse/targets.py
lines: 162-166
The text was updated successfully, but these errors were encountered: