Skip to content

Commit

Permalink
Fix maf in bed filter (#344)
Browse files Browse the repository at this point in the history
* Remove lines

* Update setup

* Don't reference alt

* Add note about release notes
  • Loading branch information
thomasyu888 authored Aug 5, 2020
1 parent 5a83a7c commit 5dfa14c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions analyses/genomicData/MAFinBED.R
Original file line number Diff line number Diff line change
Expand Up @@ -122,9 +122,9 @@ mafVR = VRanges(seqnames = Rle(paste0("chr",genieMutData$Chromosome)),
ranges = IRanges(start = genieMutData$Start_Position,
end = genieMutData$End_Position),
ref = genieMutData$Reference_Allele,
alt = genieMutData$Tumor_Seq_Allele2,
# alt = genieMutData$Tumor_Seq_Allele2,
altDepth = genieMutData$t_alt_count_num,
totalDepth = genieMutData$t_depth_new,
# totalDepth = genieMutData$t_depth_new,
sampleNames = genieMutData$Tumor_Sample_Barcode)
seqlevels(mafVR) = sort(seqlevels(mafVR))

Expand Down
2 changes: 1 addition & 1 deletion analyses/mergeFlag/mergecheck_functions.R
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ flag_variants_to_merge <- function(genieMutData, genieClinData, samplesToRun, up
ranges = IRanges(start = genieMutData$Start_Position,
end = genieMutData$End_Position),
ref = genieMutData$Reference_Allele,
alt = genieMutData$Tumor_Seq_Allele2,
# alt = genieMutData$Tumor_Seq_Allele2,
altDepth = genieMutData$t_alt_count_num,
totalDepth = genieMutData$t_depth,
sampleNames = genieMutData$Tumor_Sample_Barcode)
Expand Down
2 changes: 1 addition & 1 deletion genie/dashboardTemplate.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -578,7 +578,7 @@ kable(final_matrix,

### Panels Covering TP53

These are all the pipelines that cover TP53 that don't have TP53 as the top mutated genes. If your pipeline is shown in the table below, it is _possible_ that you have artifacts in your data. **Please review and reupload if your data is incorrect**
These are all the pipelines that cover TP53 that don't have TP53 as the top mutated genes. If your pipeline is shown in the table below, it is _possible_ that you have artifacts in your data. **Please review and reupload if your data is incorrect** The release notes will capture if sites have confirmed that the variants shown in this table has no artifacts.


```{r highlight_panels, echo=FALSE}
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
entry_points={'console_scripts': ['genie = genie.__main__:main']},
scripts=['bin/input_to_database.py',
'bin/database_to_staging.py'],
install_requires=['pandas>=0.23.0',
install_requires=['pandas>=0.23.0,<1.1',
'synapseclient>=1.9.4',
'httplib2>=0.11.3',
'pycrypto>=2.6.1',
Expand Down

0 comments on commit 5dfa14c

Please sign in to comment.