We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad0695a commit b56908fCopy full SHA for b56908f
docs/guide-bedtools.md
@@ -25,6 +25,9 @@ and turn them into bedframe by renaming the `seqname` column into `chrom`.
25
Any DataFrame object with `'chrom'`, `'start'`, and `'end'` columns will support
26
all the following operations TODO `API_fileops`
27
28
+You can write the output of your operations back to a bed file using `to_bed` which will
29
+generally be able to infer the bed format used.
30
+
31
## `bedtools intersect`
32
33
### Original unique entries from the first bed `-u`
@@ -133,4 +136,3 @@ bedtools intersect -wa -a A.bed -b B.bed -f 0.7 > out.bed
133
136
cov = bf.coverage(A, B)
134
137
out = A.loc[cov['coverage'] / (cov['end'] - cov['start']) ) >= 0.70]
135
138
```
-
0 commit comments