Skip to content

Commit

Permalink
use sample query for ci speed
Browse files Browse the repository at this point in the history
  • Loading branch information
sanjaynagi committed Aug 18, 2023
1 parent 5841b6e commit ba0b53a
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 6 deletions.
5 changes: 3 additions & 2 deletions notebooks/AgamPrimer-long.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,8 @@
"#@markdown primer_target should be a region string ('2L:28545767') for gDNA primers and probes, and an AGAP transcript identifier for cDNA primers.\n",
"\n",
"primer_target = 'AGAP006228-RA' #@param {type:\"string\"} \n",
"sample_sets = 'AG1000G-GH' #@param {type:\"string\"}"
"sample_sets = 'AG1000G-GH' #@param {type:\"string\"}\n",
"sample_query = None #'taxon == \"coluzzii\"' "
]
},
{
Expand Down Expand Up @@ -429,7 +430,7 @@
"outputs": [],
"source": [
"#sample_sets = None #'AG1000G-GH' # sample_set = '3.0' .you can also supply lists with multiple sample sets e.g ['AG1000G-GH', 'AG1000G-CI', 'AG1000G-BF-A']\n",
"sample_query = None #\"taxon == 'coluzzii'\" # here we can subset to specific values in the metadata e.g : \"taxon == 'gambiae'\" , or \"taxon == 'arabiensis'\" "
"#sample_query = None #\"taxon == 'coluzzii'\" # here we can subset to specific values in the metadata e.g : \"taxon == 'gambiae'\" , or \"taxon == 'arabiensis'\" "
]
},
{
Expand Down
3 changes: 2 additions & 1 deletion tests/cDNA_Params.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,6 @@
"max_amplicon_size": 120,
"n_primer_pairs":6,
"primer_target": "AGAP006228-RA",
"sample_sets": "AG1000G-GH"
"sample_sets": "AG1000G-GH",
"sample_query":"taxon == 'coluzzii"
}
3 changes: 2 additions & 1 deletion tests/cDNA_Params_2.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@
"n_primer_pairs":6,
"primer_target": "AGAP028081-RA",
"cDNA_exon_junction" : false,
"sample_sets": "AG1000G-GH"
"sample_sets": "AG1000G-GH",
"sample_query":"taxon == 'coluzzii"
}
3 changes: 2 additions & 1 deletion tests/gDNA_probe_Params.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,6 @@
"max_amplicon_size": 100,
"n_primer_pairs":4,
"primer_target": "2L:2422652",
"sample_sets": "AG1000G-GH"
"sample_sets": "AG1000G-GH",
"sample_query":"taxon == 'coluzzii"
}
3 changes: 2 additions & 1 deletion tests/probe_Params.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,6 @@
"max_amplicon_size": 240,
"n_primer_pairs":6,
"primer_target": "X:9500000",
"sample_sets": "AG1000G-GH"
"sample_sets": "AG1000G-GH",
"sample_query":"taxon == 'coluzzii"
}

0 comments on commit ba0b53a

Please sign in to comment.