Karl Broman

Results 36 comments of Karl Broman

**Paper Number**: 14 **Reference**: Lamichhane G, Zignol M, Blades NJ, Geiman DE, Dougherty A, Broman KW, Bishai WR (2003) A post-genomic method for predicting essential genes at subsaturation levels of...

So far, the participants in the 10 year challenge are, um, not very diverse. I wonder if you might be able to improve the diversity of the workshop, for example...

Cool! It looks like there’s lots of new stuff:

Looks like we have - `world.getPlayerId( player_name) ` - `world.getPlayerName( player_id) ` - `world.getEntityTypes()` - `world.spawnEntity(x,y,z,type)` - `setDirection`, `setRotation`, `setPitch` - `setSign(x,y,z,block type id,data,line1,line2,line3,line4)`

I’ve got all of this working except `setSign`.

For `setSign()`, we can create a standing sign with: ``` mc_send(merge_data("world.setSign", 117, 3, 85, 63, 4, "Hello")) ``` It should be that you can create a "wall" sign with the...

Yes, I could send multiple lines. the `setSign()` function I added takes a `text` argument that is a vector of character strings, one per line. One complication is I can't...

Regarding the wall sign, I agree that it seems like you need a wall to place the sign onto, and that you need to get the orientation right. But I...

Thanks for your very clear bug report! I'll look into the details. I see that `arxiv_search(query="ti:Fourfolds", limit=100)` works but `arxiv_search(query="ti:Fourfolds", limit=101)` gives the error. I'll follow both of your suggestions:...

Okay, I get it. For this search, you get proper results if limit = 78, it returns NULL. If batchsize < limit and you're in this latter case, you get...