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 33c3ff8 commit 8576e28Copy full SHA for 8576e28
src/tmle_inputs/from_actors.jl
@@ -49,7 +49,7 @@ all_variants(bqtls::DataFrame, transactors::Vector{DataFrame}) = Set(vcat(bqtls.
49
read_snps_from_csv(path::Nothing) = nothing
50
function read_snps_from_csv(path::String)
51
df = CSV.read(path, DataFrame)
52
- df = "TF" in names(df) ? unique(df[:, [:ID, :CHR, :TF]], [:ID, :TF]) : unique(df[:, [:ID, :CHR]], :ID)
+ df = "TF" in names(df) ? unique(df[:, [:ID, :TF]], [:ID, :TF]) : unique(df[:, [:ID]], :ID)
53
return(df)
54
end
55
0 commit comments