Skip to content

Commit

Permalink
fix: move mapk1.gtf to large dir
Browse files Browse the repository at this point in the history
  • Loading branch information
sanashah007 committed Aug 22, 2024
1 parent 050dc49 commit ebaf095
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 78 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ private void updateGeneEnd(GencodeGtfFeature gtfFeature) {
// get the end value of the gene
int geneEnd = featureInfoMap.get(gtfFeature.getGeneId()).getEnd();

// if the transcript start is greater than the gene start
// if the transcript end is greater than the gene end
if (gtfFeature.getEnd() > geneEnd) {
// set the gene end to be the transcript end
geneEnd = gtfFeature.getEnd();
Expand All @@ -211,7 +211,6 @@ public Object onTraversalSuccess() {
// get dictionary
SAMSequenceDictionary sequenceDictionary = getBestAvailableSequenceDictionary();


// create linked hash map to store sorted values of idToInfo
LinkedHashMap<String, GtfInfo> karyotypeIdToInfo = getSortedMap(sequenceDictionary);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public static String getDecoySampleGtf(){
}

public static String getMapk1Gtf(){
return getTestDataDir()+"/mapk1.gtf";
return GATKBaseTest.largeFileTestDir + "/gtfToBed/mapk1.gtf";
}

public static String getManyTranscriptsGtf(){
Expand All @@ -24,10 +24,6 @@ public static String getReferenceDict(){
return getTestDataDir()+"/reference.dict";
}

// public static String getReferenceDict(){
// return GATKBaseTest.publicTestDir + "large/Homo_sapiens_assembly38.dict";
// }

public static String getDecoySamplesGeneBed(){
return getTestDataDir() + "/decoySampleGene.bed";
}
Expand Down
3 changes: 3 additions & 0 deletions src/test/resources/large/gtfToBed/mapk1.gtf
Git LFS file not shown
Loading

0 comments on commit ebaf095

Please sign in to comment.